Bind checked property to the corresponding setting value for CameraTextSwitch
[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     orientation: Qt.Horizontal
67     width: 500
68     height: 50
69     stepSize:0.1
70     value: camera ? camera.zoom.value : 0
71     minimumValue: camera ? camera.zoom.minimum : 0
72     maximumValue: camera ? camera.zoom.maximum : 0
73
74     state: "hidden"
75     states: [
76         State {
77             name: "visible"
78             when: slider.pressed || hackTimer.running
79             PropertyChanges { target: slider; opacity: 1.0 }
80         },
81         State {
82             name: "hidden"
83             when: !slider.pressed
84             PropertyChanges { target: slider; opacity: 0.2 }
85         }
86     ]
87
88     transitions: Transition {
89         to: "hidden"
90             SequentialAnimation {
91                 PauseAnimation { duration: 2000 }
92                 NumberAnimation { target: slider; property: "opacity"; duration: 250 }
93             }
94     }
95
96     Timer {
97         id: hackTimer
98         interval: 1
99     }
100 }