lock the UI when user starts to drag the reticle.
[harmattan/cameraplus] / qml / CameraOverlay.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 Item {
29     anchors.fill: parent
30     id: page
31
32     property int policyMode: CameraResources.None
33
34     property Camera cam: null
35     property Item dimmer: null
36     property ControlsActivationData activationData: ControlsActivationData {}
37     property bool controlsVisible: cam.running && !standby.visible
38     property bool focusReticleVisible: true
39     property bool enableViewfinder: true
40
41     property alias previewAnimationRunning: preview.animationRunning
42
43     signal batteryLow
44
45     function cameraError() {
46         // Nothing
47     }
48
49     function policyLost() {
50         // Nothing
51     }
52
53     onStatusChanged: {
54 // TODO:
55         if (status == PageStatus.Activating && enableViewfinder) {
56             cam.renderingEnabled = true
57         }
58         else if (status == PageStatus.Active) {
59             focusReticle.resetReticle()
60
61             if (!enableViewfinder) {
62                 cam.renderingEnabled = false
63             }
64         }
65     }
66
67     ModeButton {
68         anchors.bottom: parent.bottom
69         anchors.right: parent.right
70         anchors.rightMargin: 20
71         anchors.bottomMargin: 20
72         visible: controlsVisible && activationData.modeSelectorVisible
73     }
74
75 }