Fixed VideoPlayerPage.qml failure to set cameraConfig
[harmattan/cameraplus] / qml / main.qml
index 67bc59c..748ff83 100644 (file)
@@ -3,7 +3,7 @@
 /*!
  * This file is part of CameraPlus.
  *
- * Copyright (C) 2012 Mohammed Sameer <msameer@foolab.org>
+ * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-import QtQuick 1.1
-import com.nokia.meego 1.1
-import com.nokia.extras 1.1
+import QtQuick 2.0
 import QtCamera 1.0
 import CameraPlus 1.0
-import QtMobility.systeminfo 1.2
 import QtMobility.location 1.2
 
-// TODO: postcapture
-// TODO: flash not ready
-// TODO: focus, caf, ...
-// TODO: portrait/landscape
-// TODO: stop viewfinder in settings pages ?
-// TODO: grid lines, face tracking, ambr
-// TODO: complete settings pages
-// TODO: select primary/secondary camera.
-// TODO: disable debug builds.
-// TODO: a way to get buffers to the application
-// TODO: fcam like functionality (precise control over capture parameters).
-// TODO: mute video sound
-
-PageStackWindow {
-        id: root
-
-        property alias dimmer: camDimmer
-
-        showStatusBar: false
-
-        Component.onCompleted: {
-                theme.inverted = true;
-                // TODO: hardcoding device id
-                root.resetCamera(0, settings.mode);
-        }
-
-        function showError(msg) {
-                error.text = msg;
-                error.show();
-        }
-
-        function resetCamera(deviceId, mode) {
-                if (!cam.reset(deviceId, mode)) {
-                        showError(qsTr("Failed to set camera device and mode. Please restart the application."));
-                }
-        }
-
-        PositionSource {
-                // NOTE: The source will not reset the position when we lose the signal.
-                // This shouldn't be a big problem as we are course enough.
-                // If we ever need street level updates then this will be an issue.
-                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
-                onPositionChanged: geocode.search(position.coordinate.longitude, position.coordinate.latitude);
-        }
-
-        MetaData {
-                id: metaData
-                camera: cam
-                manufacturer: deviceInfo.manufacturer
-                model: deviceInfo.model
-                country: geocode.country
-                city: geocode.city
-                suburb: geocode.suburb
-                longitude: positionSource.position.coordinate.longitude
-                longitudeValid: positionSource.position.longitudeValid && settings.useGps
-                latitude: positionSource.position.coordinate.latitude
-                latitudeValid: positionSource.position.latitudeValid && settings.useGps
-                elevation: positionSource.position.coordinate.altitude
-                elevationValid: positionSource.position.altitudeValid && settings.useGps
-                orientation: orientation.orientation
-                artist: settings.creatorName
-                captureDirection: compass.direction
-                captureDirectionValid: compass.directionValid
-                horizontalError: positionSource.position.horizontalAccuracy
-                horizontalErrorValid: positionSource.position.horizontalAccuracyValid && settings.useGps
-                dateTimeEnabled: true
-        }
-
-        Orientation {
-                id: orientation
-                active: cam.running
-        }
-
-        Compass {
-                id: compass
-                active: cam.running
-        }
-
-        ReverseGeocode {
-                id: geocode
-                active: cam.running && settings.useGps && settings.useGeotags
-        }
-
-        CameraResources {
-                id: resourcePolicy
-        }
-
-        DeviceInfo {
-                id: deviceInfo
-        }
-
-        FSMonitor {
-                id: fileSystem
-        }
-
-        InfoBanner {
-                id: error
-        }
-
-        Settings {
-                id: settings
-        }
-
-        FileNaming {
-                id: fileNaming
-                imageSuffix: cam.imageSuffix
-                videoSuffix: cam.videoSuffix
-        }
-
-        MountProtector {
-                id: mountProtector
-                path: fileNaming.path
-        }
-
-        function replacePage(file) {
-                pageStack.replace(Qt.resolvedUrl(file), {cam: cam}, true);
-        }
-
-        function openFile(file) {
-                pageStack.push(Qt.resolvedUrl(file), {cam: cam});
-        }
-
-        function openFileNow(file) {
-                pageStack.push(Qt.resolvedUrl(file), {cam: cam}, true);
-        }
-
-        platformStyle: PageStackWindowStyle {
-                // TODO: Hack
-                background: " "
-        }
-
-        ImageSettings {
-                id: imageSettings
-                camera: cam
-                function setImageResolution() {
-                        if (!imageSettings.setResolution(settings.imageAspectRatio, settings.imageResolution)) {
-                                showError(qsTr("Failed to set required resolution"));
-                        }
-                }
-
-                onReadyChanged: {
-                        if (ready) {
-                                imageSettings.setImageResolution();
-                        }
-                }
-        }
-
-        VideoSettings {
-                id: videoSettings
-                camera: cam
-
-                function setVideoResolution() {
-                        if (!videoSettings.setResolution(settings.videoAspectRatio, settings.videoResolution)) {
-                                showError(qsTr("Failed to set required resolution"));
-                        }
-                }
-
-                onReadyChanged: {
-                        if (ready) {
-                                videoSettings.setVideoResolution();
-                        }
-                }
-        }
-
-        Connections {
-                target: settings
-
-                onImageAspectRatioChanged: {
-                        imageSettings.setImageResolution();
-                }
-
-                onImageResolutionChanged: {
-                        imageSettings.setImageResolution();
-                }
-
-                onVideoResolutionChanged: {
-                        videoSettings.setVideoResolution();
-                }
-        }
-
-        Camera {
-/*
-                onDeviceIdChanged: {
-                        // TODO: is this needed ?
-                        if (platformWindow.active) {
-                                cam.start();
-                        }
-                }
-*/
-                id: cam
-                anchors.fill: parent
-
-                onError: {
-                        console.log("Camera error (" + code + "): " + message + " " + debug);
-                        showError(qsTr("Camera error. Please restart the application."));
-                        cam.stop();
-                        resourcePolicy.acquire(CameraResources.None);
-                        mountProtector.unlock();
-                }
-
-                onRunningChanged: {
-                        if (!cam.running) {
-                                mountProtector.unlock();
-                        }
-                }
-
-                Component.onDestruction: cam.stop();
-
-                // TODO: Hack
-                z: -1
-
-                Rectangle {
-                        id: camDimmer
-                        z: 1
-                        anchors.fill: parent
-                        opacity: 0
-                        color: "black"
-                }
-
-                notifications: Sounds {
-                        id: sounds
-                        mute: !settings.soundEnabled
-                }
-
-        }
-
-        Binding {
-                target: cam.flash
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageFlashMode
-        }
-
-        Binding {
-                target: settings
-                property: "imageFlashMode"
-                when: cam.mode == Camera.ImageMode
-                value: cam.flash.value
-        }
-
-        Binding {
-                target: cam.scene
-                property: "value"
-                when: cam.mode == Camera.VideoMode
-                value: settings.videoSceneMode
-        }
-
-        Binding {
-                target: cam.scene
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageSceneMode
-        }
+// TODO: flash not ready (battery low or flash not ready message)
+
+CameraWindow {
+    id: root
+
+    VisualItemModel {
+        id: mainModel
+
+        SettingsView {
+            camera: viewfinder.camera
+            width: mainView.width
+            height: mainView.height
+        }
+
+        CameraView {
+            id: viewfinder
+            width: mainView.width
+            height: mainView.height
+        }
+
+        PostCaptureView {
+            camera: viewfinder.camera
+            width: mainView.width
+            height: mainView.height
+        }
+    }
+
+    ListView {
+        id: mainView
+        LayoutMirroring.enabled: false
+        anchors.fill: parent
+        orientation: ListView.Horizontal
+        model: mainModel
+        snapMode: ListView.SnapOneItem
+        highlightRangeMode: ListView.StrictlyEnforceRange
+        boundsBehavior: Flickable.StopAtBounds
+        currentIndex: 1
+        interactive: !currentItem.pressed
+    }
+
+    Component.onCompleted: {
+        platformSettings.init()        
+        // TODO: hardcoding device id
+        root.resetCamera(0, settings.mode)
+    }
+
+    PlatformSettings {
+        id: platformSettings
+    }
+
+    Settings {
+        id: settings
+    }
+
+    PipelineManager {
+        id: pipelineManager
+        camera: viewfinder.camera
+        currentItem: mainView.currentItem
+    }
+
+    function resetCamera(deviceId, mode) {
+        if (!viewfinder.camera.reset(deviceId, mode)) {
+            showError(qsTr("Failed to set camera device and mode. Please restart the application."))
+        }
+    }
+
+    function showError(msg) {
+        error.text = msg
+        error.show()
+    }
+
+    property alias dimmer: camDimmer
+
+    PositionSource {
+        // NOTE: The source will not reset the position when we lose the signal.
+        // This shouldn't be a big problem as we are course enough.
+        // If we ever need street level updates then this will be an issue.
+        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
+        onPositionChanged: geocode.search(position.coordinate.longitude, position.coordinate.latitude)
+    }
+
+    MetaData {
+        id: metaData
+        camera: viewfinder.camera
+        manufacturer: deviceInfo.manufacturer
+        model: deviceInfo.model
+        country: geocode.country
+        city: geocode.city
+        suburb: geocode.suburb
+        longitude: positionSource.position.coordinate.longitude
+        longitudeValid: positionSource.position.longitudeValid && settings.useGps
+        latitude: positionSource.position.coordinate.latitude
+        latitudeValid: positionSource.position.latitudeValid && settings.useGps
+        elevation: positionSource.position.coordinate.altitude
+        elevationValid: positionSource.position.altitudeValid && settings.useGps
+        orientation: orientation.orientation
+        artist: settings.creatorName
+        captureDirection: compass.direction
+        captureDirectionValid: compass.directionValid
+        horizontalError: positionSource.position.horizontalAccuracy
+        horizontalErrorValid: positionSource.position.horizontalAccuracyValid && settings.useGps
+        dateTimeEnabled: true
+    }
+
+    Orientation {
+        id: orientation
+        active: viewfinder.camera.running || (mainView.currentIndex == 2 && Qt.application.active)
+    }
+
+    Compass {
+        id: compass
+        active: viewfinder.camera.running
+    }
+
+    ReverseGeocode {
+        id: geocode
+        active: viewfinder.camera.running && settings.useGps && settings.useGeotags
+    }
+
+    DeviceInfo {
+        id: deviceInfo
+    }
+
+    FSMonitor {
+        id: fileSystem
+    }
+
+    CameraInfoBanner {
+        id: error
+    }
+
+    FileNaming {
+        id: fileNaming
+        imageSuffix: viewfinder.camera.imageSuffix
+        videoSuffix: viewfinder.camera.videoSuffix
+    }
+
+    MountProtector {
+        id: mountProtector
+        path: fileNaming.path
+    }
+
+    TrackerStore {
+        id: trackerStore
+        active: viewfinder.camera.running
+        manufacturer: deviceInfo.manufacturer
+        model: deviceInfo.model
+    }
+
+    function checkDiskSpace() {
+        return fileSystem.hasFreeSpace(fileNaming.path)
+    }
+
+    ImageSettings {
+        id: imageSettings
+        camera: viewfinder.camera
+
+        function setImageResolution() {
+            if (!imageSettings.setResolution(settings.imageAspectRatio, settings.imageResolution)) {
+                showError(qsTr("Failed to set required resolution"))
+            }
+        }
+
+        onReadyChanged: {
+            if (ready) {
+                imageSettings.setImageResolution()
+            }
+        }
+    }
+
+    VideoSettings {
+        id: videoSettings
+        camera: viewfinder.camera
+
+        function setVideoResolution() {
+            if (!videoSettings.setResolution(settings.videoAspectRatio, settings.videoResolution)) {
+                showError(qsTr("Failed to set required resolution"))
+            }
+        }
+
+        onReadyChanged: {
+            if (ready) {
+                videoSettings.setVideoResolution()
+            }
+        }
+    }
+
+    Connections {
+        target: settings
+
+        onImageAspectRatioChanged: {
+            imageSettings.setImageResolution()
+        }
+
+        onImageResolutionChanged: {
+            imageSettings.setImageResolution()
+        }
+
+        onVideoResolutionChanged: {
+            videoSettings.setVideoResolution()
+        }
+    }
 
-        Binding {
-                target: cam.evComp
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageEvComp
-        }
-
-        Binding {
-                target: cam.evComp
-                property: "value"
-                when: cam.mode == Camera.VideoMode
-                value: settings.videoEvComp
-        }
-
-        Binding {
-                target: settings
-                property: "imageEvComp"
-                when: cam.mode == Camera.ImageMode
-                value: cam.evComp.value
-        }
+    ModeController {
+        id: cameraMode
+        cam: viewfinder.camera
+        dimmer: root.dimmer
+    }
 
-        Binding {
-                target: settings
-                property: "videoEvComp"
-                when: cam.mode == Camera.VideoMode
-                value: cam.evComp.value
+    Rectangle {
+        property bool dimmed: false
+        id: camDimmer
+        z: 1
+        anchors.fill: parent
+        opacity: dimmed ? 1.0 : 0.0
+        color: "black"
+        Behavior on opacity {
+            PropertyAnimation { duration: 150 }
         }
+    }
 
-        Binding {
-                target: cam.whiteBalance
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageWhiteBalance
-        }
-
-        Binding {
-                target: cam.whiteBalance
-                property: "value"
-                when: cam.mode == Camera.VideoMode
-                value: settings.videoWhiteBalance
-        }
-
-        Binding {
-                target: cam.colorTone
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageColorFilter
-        }
+    DeviceKeys {
+        id: keys
+        active: Qt.application.active && pipelineManager.scaleAcquired
+        repeat: !settings.zoomAsShutter
+    }
 
-        Binding {
-                target: cam.colorTone
-                property: "value"
-                when: cam.mode == Camera.VideoMode
-                value: settings.videoColorFilter
-        }
-
-        Binding {
-                target: cam.iso
-                property: "value"
-                when: cam.mode == Camera.ImageMode
-                value: settings.imageIso
-        }
-
-        Binding {
-                target: settings
-                property: "imageIso"
-                when: cam.mode == Camera.ImageMode
-                value: cam.iso.value
-        }
-
-        ModeController {
-                id: cameraMode
-                cam: cam
-                dimmer: root.dimmer
-        }
-
-        Connections {
-                target: cam
-                onModeChanged: {
-                        if (cam.mode == Camera.VideoMode) {
-                                replacePage("VideoPage.qml");
-                        }
-                        else {
-                                replacePage("ImagePage.qml");
-                        }
-                }
-        }
+    Standby {
+        policyLost: pipelineManager.state == "policyLost"
+        show: !Qt.application.active || pipelineManager.showStandBy ||
+            (mainView.currentIndex == 1 && !viewfinder.camera.running)
+    }
 }