Home
last modified time | relevance | path

Searched refs:bottomBarSpec (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/apps/Camera2/src/com/android/camera/captureintent/state/
H A DStateOpeningCamera.java257 bottomBarSpec.enableCamera = true;
265 bottomBarSpec.enableGridLines = true;
267 bottomBarSpec.enableHdr = false;
268 bottomBarSpec.hideHdr = true;
269 bottomBarSpec.hdrCallback = null;
272 bottomBarSpec.showSelfTimer = true;
279 bottomBarSpec.enableExposureCompensation = bottomBarSpec.isExposureCompensationSupported;
296 bottomBarSpec.showCancel = true;
303 bottomBarSpec.showDone = true;
310 bottomBarSpec.showRetake = true;
[all …]
/aosp12/packages/apps/Camera2/src/com/android/camera/app/
H A DCameraAppUI.java2023 BottomBarUISpec bottomBarSpec) {
2072 if (bottomBarSpec.hideFlash
2149 if (bottomBarSpec.hideGridLines) {
2165 if (bottomBarSpec.enableSelfTimer) {
2168 if (bottomBarSpec.showSelfTimer) {
2175 if (bottomBarSpec.enablePanoOrientation
2189 … && !(bottomBarSpec.minExposureCompensation == 0 && bottomBarSpec.maxExposureCompensation == 0)
2217 if (bottomBarSpec.showCancel) {
2221 if (bottomBarSpec.showDone) {
2225 if (bottomBarSpec.showRetake) {
[all …]
/aosp12/packages/apps/Camera2/src/com/android/camera/
H A DCaptureModule.java807 bottomBarSpec.enableGridLines = true;
808 bottomBarSpec.enableCamera = true;
810 bottomBarSpec.enableHdr =
813 bottomBarSpec.enableSelfTimer = true;
814 bottomBarSpec.showSelfTimer = true;
817 bottomBarSpec.enableExposureCompensation = bottomBarSpec.isExposureCompensationSupported;
829 bottomBarSpec.enableFlash = false;
839 bottomBarSpec.minExposureCompensation =
841 bottomBarSpec.maxExposureCompensation =
843 bottomBarSpec.exposureCompensationStep =
[all …]
H A DPhotoModule.java629 bottomBarSpec.enableCamera = true; in getBottomBarSpec()
633 bottomBarSpec.enableHdr = true; in getBottomBarSpec()
635 bottomBarSpec.enableGridLines = true; in getBottomBarSpec()
645 bottomBarSpec.minExposureCompensation = in getBottomBarSpec()
647 bottomBarSpec.maxExposureCompensation = in getBottomBarSpec()
653 bottomBarSpec.enableSelfTimer = true; in getBottomBarSpec()
654 bottomBarSpec.showSelfTimer = true; in getBottomBarSpec()
657 bottomBarSpec.showCancel = true; in getBottomBarSpec()
659 bottomBarSpec.showDone = true; in getBottomBarSpec()
661 bottomBarSpec.showRetake = true; in getBottomBarSpec()
[all …]
H A DVideoModule.java558 bottomBarSpec.enableCamera = true; in getBottomBarSpec()
559 bottomBarSpec.cameraCallback = mCameraCallback; in getBottomBarSpec()
560 bottomBarSpec.enableTorchFlash = true; in getBottomBarSpec()
561 bottomBarSpec.flashCallback = mFlashCallback; in getBottomBarSpec()
562 bottomBarSpec.hideHdr = true; in getBottomBarSpec()
563 bottomBarSpec.enableGridLines = true; in getBottomBarSpec()
568 bottomBarSpec.showCancel = true; in getBottomBarSpec()
570 bottomBarSpec.showDone = true; in getBottomBarSpec()
571 bottomBarSpec.doneCallback = mDoneCallback; in getBottomBarSpec()
572 bottomBarSpec.showReview = true; in getBottomBarSpec()
[all …]
/aosp12/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DCaptureIntentModuleUI.java130 CameraAppUI.BottomBarUISpec bottomBarSpec) { in applyModuleSpecs() argument
132 mAppUI.applyModuleSpecs(hardwareSpec, bottomBarSpec); in applyModuleSpecs()