7b2763e0ae517b1ce5d205e4fba95c7c894c0c40
[harmattan/cameraplus] / qml / ZoomCaptureButton.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 CameraPlus 1.0
26
27 Item {
28     id: zoomHandler
29     property bool zoomPressed: false
30
31     signal pressed()
32     signal released()
33
34     property bool active: settings.zoomAsShutter && Qt.application.active
35
36     function handlePress() {
37         if (!zoomHandler.active || zoomHandler.zoomPressed) {
38             return
39         }
40
41         zoomHandler.zoomPressed = true
42         zoomHandler.pressed()
43     }
44
45     function handleRelease() {
46         if (!zoomHandler.active || !zoomHandler.zoomPressed) {
47             return
48         }
49
50         zoomHandler.zoomPressed = false
51
52         zoomHandler.released()
53     }
54
55     Connections {
56         id: zoomConnection
57         target: keys
58
59         onActiveChanged: {
60             if (!zoomConnection.active) {
61                 zoomHandler.zoomPressed = false
62             }
63         }
64
65         onVolumeUpPressed: zoomHandler.handlePress()
66         onVolumeDownPressed: zoomHandler.handlePress()
67         onVolumeUpReleased: zoomHandler.handleRelease()
68         onVolumeDownReleased: zoomHandler.handleRelease()
69     }
70
71     Connections {
72         target: Qt.application
73         onActiveChanged: {
74             if (!Qt.application.active) {
75                 zoomHandler.zoomPressed = false
76             }
77         }
78     }
79 }