1a504a3e37d0404133618a3b41964f1dd57932d8
[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     TextSwitch {
64         text: qsTr("Show grid lines")
65
66         // We have to do it that way because QML complains about a binding
67         // loop for checked if we bind the checked property to the settings value.
68         Component.onCompleted: checked = settings.gridEnabled
69
70         onCheckedChanged: settings.gridEnabled = checked
71     }
72
73     SectionHeader {
74         text: qsTr("Creator name")
75         width: parent.width
76     }
77
78     CameraTextField {
79         placeholderText: qsTr("Name or copyright")
80         width: parent.width
81         text: settings.creatorName
82         onTextChanged: settings.creatorName = text
83     }
84
85     TextSwitch {
86         text: qsTr("Use zoom keys for capture")
87
88         // We have to do it that way because QML complains about a binding
89         // loop for checked if we bind the checked property to the settings value.
90         Component.onCompleted: checked = settings.zoomAsShutter
91         onCheckedChanged: settings.zoomAsShutter = checked
92     }
93
94     TextSwitch {
95         text: qsTr("Enable camera sounds")
96
97         // We have to do it that way because QML complains about a binding
98         // loop for checked if we bind the checked property to the settings value.
99         Component.onCompleted: checked = settings.soundEnabled
100         onCheckedChanged: settings.soundEnabled = checked
101     }
102
103     TextSwitch {
104         id: useGps
105         text: qsTr("Use GPS")
106
107         // We have to do it that way because QML complains about a binding
108         // loop for checked if we bind the checked property to the settings value.
109         Component.onCompleted: checked = settings.useGps
110         onCheckedChanged: settings.useGps = checked
111     }
112
113     TextSwitch {
114         // TODO: transition when hiding/showing and we should scroll a bit to show it
115         visible: useGps.checked
116
117         text: qsTr("Use geotags")
118
119         // We have to do it that way because QML complains about a binding
120         // loop for checked if we bind the checked property to the settings value.
121         Component.onCompleted: checked = settings.useGeotags
122         onCheckedChanged: settings.useGeotags = checked
123     }
124 }