X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=qml%2FMainPage.qml;h=58ef4f475aded098fce49a2cec3ea2f1f6f5044e;hb=4c3b8980bafd3d1607ebec45556ef3f49db955b5;hp=c1ca7bc579a4b20caeed9c6eb01bddead7e21789;hpb=5087a3c453295d8a54cfc98f352816c6a591cc4d;p=harmattan%2Fcameraplus diff --git a/qml/MainPage.qml b/qml/MainPage.qml index c1ca7bc..58ef4f4 100644 --- a/qml/MainPage.qml +++ b/qml/MainPage.qml @@ -25,10 +25,20 @@ import QtCamera 1.0 import CameraPlus 1.0 // TODO: flash not ready (battery low or flash not ready message) +// TODO: Sounds +// TODO: N950 conf CameraPage { id: root + property bool deviceChangeInProgress: false + property bool inCaptureMode: mainView.currentIndex == 1 + property Item dimmer: camDimmer + + CameraTheme { + id: cameraTheme + } + VisualItemModel { id: mainModel @@ -66,8 +76,7 @@ CameraPage { Component.onCompleted: { platformSettings.init() - // TODO: hardcoding device id - root.resetCamera(0, settings.mode) + root.resetCamera(settings.device, settings.mode) } PlatformSettings { @@ -76,6 +85,45 @@ CameraPage { Settings { id: settings + onDeviceAboutToChange: { + root.deviceChangeInProgress = true + } + + onDeviceChanged: { + viewfinder.cameraDeviceChanged() + + // Reset pipeline manager error + pipelineManager.error = false + + if (root.resetCamera(settings.device, settings.mode)) { + root.deviceChangeInProgress = false + pipelineManager.startCamera() + } + } + + onImageAspectRatioChanged: { + if (!root.deviceChangeInProgress) { + imageSettings.setImageResolution() + } + } + + onImageResolutionChanged: { + if (!root.deviceChangeInProgress) { + imageSettings.setImageResolution() + } + } + + onVideoResolutionChanged: { + if (!root.deviceChangeInProgress) { + videoSettings.setVideoResolution() + } + } + + onVideoAspectRatioChanged: { + if (!root.deviceChangeInProgress) { + videoSettings.setVideoResolution() + } + } } PipelineManager { @@ -87,7 +135,17 @@ CameraPage { function resetCamera(deviceId, mode) { if (!viewfinder.camera.reset(deviceId, mode)) { showError(qsTr("Failed to set camera device and mode. Please restart the application.")) + return false } + + if (mode == Camera.ImageMode) { + imageSettings.setImageResolution() + } + else if (mode == Camera.VideoMode) { + videoSettings.setVideoResolution() + } + + return true } function showError(msg) { @@ -95,13 +153,18 @@ CameraPage { error.show() } - property alias dimmer: camDimmer + PlatformQuirks { + id: platformQuirks + } + + DisplayState { + id: displayState + inhibitDim: mainView.currentItem != null ? mainView.currentItem.inhibitDim : false + } + CameraPositionSource { id: positionSource - active: settings.useGps - // TODO: we cannot bind to cam.running because camera will stop - // when the connection dialog pops up and we end up with an infinite loop - // active: cam.running && settings.useGps + active: (viewfinder.camera.running || platformQuirks.forceOn) && settings.useGps && displayState.isOn onPositionChanged: geocode.search(position.coordinate.longitude, position.coordinate.latitude) } @@ -140,7 +203,7 @@ CameraPage { ReverseGeocode { id: geocode - active: viewfinder.camera.running && settings.useGps && settings.useGeotags + active: (viewfinder.camera.running || platformQuirks.forceOn) && settings.useGps && settings.useGeotags && displayState.isOn } DeviceInfo { @@ -159,11 +222,14 @@ CameraPage { id: fileNaming imageSuffix: viewfinder.camera.imageSuffix videoSuffix: viewfinder.camera.videoSuffix + imagePath: platformSettings.imagePath + videoPath: platformSettings.videoPath + temporaryVideoPath: platformSettings.temporaryVideoPath + settings: settings } MountProtector { id: mountProtector - path: fileNaming.path } TrackerStore { @@ -173,10 +239,6 @@ CameraPage { model: deviceInfo.model } - function checkDiskSpace() { - return fileSystem.hasFreeSpace(fileNaming.path) - } - ImageSettings { id: imageSettings camera: viewfinder.camera @@ -186,12 +248,6 @@ CameraPage { showError(qsTr("Failed to set required resolution")) } } - - onReadyChanged: { - if (ready) { - imageSettings.setImageResolution() - } - } } VideoSettings { @@ -203,28 +259,6 @@ CameraPage { showError(qsTr("Failed to set required resolution")) } } - - onReadyChanged: { - if (ready) { - videoSettings.setVideoResolution() - } - } - } - - Connections { - target: settings - - onImageAspectRatioChanged: { - imageSettings.setImageResolution() - } - - onImageResolutionChanged: { - imageSettings.setImageResolution() - } - - onVideoResolutionChanged: { - videoSettings.setVideoResolution() - } } ModeController { @@ -247,13 +281,37 @@ CameraPage { DeviceKeys { id: keys - active: Qt.application.active && pipelineManager.scaleAcquired + active: Qt.application.active && pipelineManager.scaleAcquired && root.inCaptureMode && !mainView.moving repeat: !settings.zoomAsShutter } + Timer { + id: proximityTimer + running: proximitySensor.close + repeat: false + interval: 500 + onTriggered: { + if (proximitySensor.close) { + proximitySensor.sensorClosed = true + } + } + } + + CameraProximitySensor { + id: proximitySensor + property bool sensorClosed: false + + active: Qt.application.active && viewfinder.camera.running && settings.proximityAsShutter && root.inCaptureMode && !mainView.moving + onCloseChanged: { + if (!close) { + sensorClosed = false + } + } + } + Standby { policyLost: pipelineManager.state == "policyLost" show: !Qt.application.active || pipelineManager.showStandBy || - (mainView.currentIndex == 1 && !viewfinder.camera.running) + (inCaptureMode && !viewfinder.camera.running) } }