silence dbus-send output
[harmattan/cameraplus] / qml / ZoomSlider.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 2.0
24 import QtCamera 1.0
25
26 CameraSlider {
27     id: slider
28     property Camera camera
29
30     handleBackground: ""
31     handleBackgroundPressed: ""
32
33     Binding {
34         target: camera ? camera.zoom : null
35         property: "value"
36         value: slider.value
37     }
38
39     Connections {
40         target: camera
41         onModeChanged: slider.value = camera.zoom.minimum;
42     }
43
44     Connections {
45         target: keys
46
47         onVolumeUpPressed: {
48             if (settings.zoomAsShutter) {
49                 return;
50             }
51
52             slider.value = Math.min(slider.value + slider.stepSize, slider.maximumValue)
53             hackTimer.running = true
54         }
55
56         onVolumeDownPressed: {
57             if (settings.zoomAsShutter) {
58                 return;
59             }
60
61             slider.value = Math.max(slider.value - slider.stepSize, slider.minimumValue)
62             hackTimer.running = true
63         }
64     }
65
66     width: 500
67     height: 50
68     stepSize:0.1
69     value: camera ? camera.zoom.value : 0
70     minimumValue: camera ? camera.zoom.minimum : 0
71     maximumValue: camera ? camera.zoom.maximum : 0
72
73     state: "hidden"
74     states: [
75         State {
76             name: "visible"
77             when: slider.pressed || hackTimer.running
78             PropertyChanges { target: slider; opacity: 1.0 }
79         },
80         State {
81             name: "hidden"
82             when: !slider.pressed
83             PropertyChanges { target: slider; opacity: 0.2 }
84         }
85     ]
86
87     transitions: Transition {
88         to: "hidden"
89             SequentialAnimation {
90                 PauseAnimation { duration: 2000 }
91                 NumberAnimation { target: slider; property: "opacity"; duration: 250 }
92             }
93     }
94
95     Timer {
96         id: hackTimer
97         interval: 1
98     }
99 }