X-Git-Url: http://cgit.sxemacs.org/?p=harmattan%2Fcameraplus;a=blobdiff_plain;f=qml%2Fmain.qml;h=d7c69e65fabc1b048cfb96ba9d03b0628a00b1e3;hp=46e349b83b7e1d196f2b863fcbea3c1735d99656;hb=3ca120397c9c85128c8385a67566a4c11158a447;hpb=8fda608e8809c2b5c1b0db2a10e6099b73759ce8 diff --git a/qml/main.qml b/qml/main.qml index 46e349b..d7c69e6 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -3,7 +3,7 @@ /*! * This file is part of CameraPlus. * - * Copyright (C) 2012 Mohammed Sameer + * Copyright (C) 2012-2013 Mohammed Sameer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,222 +20,12 @@ * 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 QtCamera 1.0 -import CameraPlus 1.0 -import QtMobility.systeminfo 1.2 -import QtMobility.location 1.2 +import QtQuick 2.0 -// TODO: resolutions and aspect ratios -// TODO: postcapture -// TODO: battery low state -// TODO: disk space -// TODO: flash not ready -// TODO: focus, caf, ... -// TODO: indicators -// TODO: portrait/landscape -// TODO: record video in a hidden directory and then copy the video to avoid tracker indexing it. -// TODO: stop viewfinder in settings pages ? -// TODO: prevent going to mass storage while recording and capturing -// TODO: sounds -// TODO: grid lines, face tracking, ambr -// TODO: complete settings pages -// TODO: stop camera properly when we get closed. -// 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). +CameraWindow { + id: rootWindow -PageStackWindow { - id: root - - property alias dimmer: camDimmer - - showStatusBar: false - - Component.onCompleted: { - theme.inverted = true; - if (settings.mode == 0) { - openFile("ImagePage.qml"); - } - else { - openFile("VideoPage.qml"); - } - } - - function showError(msg) { - error.text = msg; - error.show(); - } - - PositionSource { - 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 - onAcquiredChanged: { - if (resourcePolicy.acquired) { - // TODO: - } - else { - // TODO: We need a way to force a stop. - } - } - } - - DeviceInfo { - id: deviceInfo - } - - FSMonitor { - id: fileSystem - } - - InfoBanner { - id: error - } - - Settings { - id: settings - } - - FileNaming { - id: fileNaming - imageSuffix: cam.imageSuffix - videoSuffix: cam.videoSuffix - } - - function replacePage(file) { - pageStack.replace(Qt.resolvedUrl(file), {cam: cam}, true); - } - - function openFile(file) { - pageStack.push(Qt.resolvedUrl(file), {cam: cam}); - } - - platformStyle: PageStackWindowStyle { - // TODO: Hack - background: " " - } - - 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(); - } - - // TODO: hardcoding device id - Component.onCompleted: { cam.deviceId = 0; mode = settings.mode; } - - // TODO: Hack - z: -1 - - Rectangle { - id: camDimmer - z: 1 - anchors.fill: parent - opacity: 0 - color: "black" - } - } - - Scene { - id: sceneController - camera: cam - value: ready ? camera.mode == Camera.VideoMode ? settings.videoSceneMode : settings.imageSceneMode : 0 - } - - ColorTone { - id: colorToneController - camera: cam - value: ready ? camera.mode == Camera.VideoMode ? settings.videoColorFilter : settings.imageColorFilter : 0 - } - - WhiteBalance { - id: whiteBalanceController - camera: cam - value: ready ? camera.mode == Camera.VideoMode ? settings.videoWhiteBalance : settings.imageWhiteBalance : 0 - } - - ModeController { - id: cameraMode - cam: cam - dimmer: root.dimmer - } - - Iso { - id: iso - camera: cam - value: ready ? settings.imageIso : 0 - } - - Connections { - target: cam - onModeChanged: { - if (cam.mode == Camera.VideoMode) { - replacePage("VideoPage.qml"); - } - else { - replacePage("ImagePage.qml"); - } - } - } + initialPage: Component { + MainPage {} + } }