Initial ui reimplementation. Still in its early phase.
[harmattan/cameraplus] / qml / CameraPage.qml
1 // -*- qml -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 import QtQuick 1.1
24 import com.nokia.meego 1.1
25 import QtCamera 1.0
26 import CameraPlus 1.0
27
28 Page {
29         id: page
30
31         property int policyMode: CameraResources.None
32
33         property Camera cam: null
34         property Item dimmer: null
35         property ControlsActivationData activationData: ControlsActivationData {}
36         property bool controlsVisible: cam.running && !standby.visible
37         property bool focusReticleVisible: true
38         property bool enableViewfinder: true
39
40         property alias previewAnimationRunning: preview.animationRunning
41
42         signal batteryLow
43
44         function cameraError() {
45                 // Nothing
46         }
47
48         function policyLost() {
49                 // Nothing
50         }
51
52         onStatusChanged: {
53                 if (status == PageStatus.Activating && enableViewfinder) {
54                         cam.renderingEnabled = true;
55                 }
56                 else if (status == PageStatus.Active) {
57                         focusReticle.resetReticle();
58
59                         if (!enableViewfinder) {
60                                 cam.renderingEnabled = false;
61                         }
62                 }
63         }
64
65         function setPreview(image) {
66                 preview.setPreview(image);
67         }
68
69         ModeButton {
70                 anchors.bottom: parent.bottom
71                 anchors.right: parent.right
72                 anchors.rightMargin: 20
73                 anchors.bottomMargin: 20
74                 visible: controlsVisible && activationData.modeSelectorVisible
75         }
76
77         PreviewImage {
78                 id: preview
79         }
80
81         ZoomSlider {
82                 id: zoom
83                 camera: cam
84                 anchors.top: parent.top
85                 anchors.topMargin: 0
86                 anchors.horizontalCenter: parent.horizontalCenter
87                 visible: controlsVisible && activationData.zoomBarVisible
88         }
89
90         function checkDiskSpace() {
91                 return fileSystem.hasFreeSpace(fileNaming.path);
92         }
93 }