43da9c45bcf54d6f788c97c37f69e91452d0518b
[harmattan/cameraplus] / qml / CameraPage.qml
1 // -*- qml -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 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
36         property bool controlsVisible: cam.running && !standby.visible
37         property bool zoomVisible: true
38         property bool modesVisible: true
39         property bool standbyVisible: true
40         property bool focusReticleVisible: true
41         property bool enableViewfinder: true
42
43         property alias previewAnimationRunning: preview.animationRunning
44
45         signal batteryLow
46
47         function cameraError() {
48                 // Nothing
49         }
50
51         function policyLost() {
52                 // Nothing
53         }
54
55         onStatusChanged: {
56                 if (status == PageStatus.Activating && enableViewfinder) {
57                         cam.renderingEnabled = true;
58                 }
59                 else if (status == PageStatus.Active) {
60                         focusReticle.resetReticle();
61
62                         if (!enableViewfinder) {
63                                 cam.renderingEnabled = false;
64                         }
65                 }
66         }
67
68         function setPreview(image) {
69                 preview.setPreview(image);
70         }
71
72         ModeButton {
73                 anchors.bottom: parent.bottom
74                 anchors.right: parent.right
75                 anchors.rightMargin: 20
76                 anchors.bottomMargin: 20
77                 visible: controlsVisible && modesVisible
78         }
79
80         PreviewImage {
81                 id: preview
82         }
83
84         ZoomSlider {
85                 id: zoom
86                 camera: cam
87                 anchors.top: parent.top
88                 anchors.topMargin: 0
89                 anchors.horizontalCenter: parent.horizontalCenter
90                 visible: controlsVisible && zoomVisible
91         }
92
93         function checkDiskSpace() {
94                 return fileSystem.hasFreeSpace(fileNaming.path);
95         }
96 }