Bind checked property to the corresponding setting value for CameraTextSwitch
[harmattan/cameraplus] / qml / CameraSettings.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 Column {
27     property Camera camera: null
28
29     id: col
30     spacing: 10
31     width: parent.width
32
33     CameraLabel {
34         font.pixelSize: 36
35         text: qsTr("Camera settings")
36         width: parent.width
37     }
38
39     SectionHeader {
40         text: qsTr("Camera")
41         width: parent.width
42     }
43
44     CameraButtonRow {
45         anchors.horizontalCenter: parent.horizontalCenter
46         enabled: camera != null && camera.running && camera.idle
47
48         CameraButton {
49             text: qsTr("Back (Primary)");
50             checkable: true
51             checked: settings.device == 0
52             onClicked: settings.device = 0
53         }
54
55         CameraButton {
56             text: qsTr("Front (Secondary)");
57             checkable: true
58             checked: settings.device == 1
59             onClicked: settings.device = 1
60         }
61     }
62
63     CameraTextSwitch {
64         text: qsTr("Show grid lines")
65
66         checked: settings.gridEnabled
67         onCheckedChanged: settings.gridEnabled = checked
68     }
69
70     SectionHeader {
71         text: qsTr("Creator name")
72         width: parent.width
73     }
74
75     CameraTextField {
76         placeholderText: qsTr("Name or copyright")
77         width: parent.width
78         text: settings.creatorName
79         onTextChanged: settings.creatorName = text
80     }
81
82     CameraTextSwitch {
83         text: qsTr("Use zoom keys for capture")
84         checked: settings.zoomAsShutter
85         onCheckedChanged: settings.zoomAsShutter = checked
86     }
87
88     CameraTextSwitch {
89         text: qsTr("Use proximity sensor for capture")
90
91         checked: settings.proximityAsShutter
92         onCheckedChanged: settings.proximityAsShutter = checked
93     }
94
95     CameraTextSwitch {
96         text: qsTr("Enable camera sounds")
97
98         checked: settings.soundEnabled
99         onCheckedChanged: settings.soundEnabled = checked
100     }
101
102     CameraTextSwitch {
103         text: qsTr("Preview images and videos after capturing")
104         visible: false
105         checked: settings.enablePreview
106         onCheckedChanged: settings.enablePreview = checked
107     }
108
109     CameraTextSwitch {
110         id: useGps
111         text: qsTr("Use GPS")
112
113         checked: settings.useGps
114         onCheckedChanged: settings.useGps = checked
115     }
116
117     CameraTextSwitch {
118         // TODO: transition when hiding/showing and we should scroll a bit to show it
119         visible: useGps.checked
120
121         text: qsTr("Use geotags")
122         checked: settings.useGeotags
123         onCheckedChanged: settings.useGeotags = checked
124     }
125 }