Fixed image preview
[harmattan/cameraplus] / qml / CameraSettings.qml
1 // -*- qml -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 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
26 Column {
27         id: col
28         spacing: 10
29         width: parent.width
30
31         Label {
32                 font.pixelSize: 36
33                 text: qsTr("Camera settings");
34                 width: parent.width
35         }
36
37         SectionHeader {
38                 text: qsTr("Creator name");
39                 width: parent.width
40         }
41
42         TextField {
43                 placeholderText: qsTr("Name or copyright");
44                 width: parent.width
45                 text: settings.creatorName
46                 onTextChanged: settings.creatorName = text;
47         }
48
49         Item {
50                 width: parent.width
51                 height: Math.max(enableCameraSoundsLabel.height, enableCameraSounds.height);
52
53                 Label {
54                         id: enableCameraSoundsLabel
55                         anchors.left: parent.left
56                         text: qsTr("Enable camera sounds");
57                 }
58
59                 Switch {
60                         id: enableCameraSounds
61                         anchors.right: parent.right
62                         // We have to do it that way because QML complains about a binding
63                         // loop for checked if we bind the checked property to the settings value.
64                         Component.onCompleted: checked = settings.soundEnabled;
65                         onCheckedChanged: settings.soundEnabled = checked;
66                 }
67         }
68
69         Item {
70                 width: parent.width
71                 height: Math.max(useGpsLabel.height, useGps.height);
72
73                 Label {
74                         id: useGpsLabel
75                         anchors.left: parent.left
76                         text: qsTr("Use GPS");
77                 }
78
79                 Switch {
80                         id: useGps
81                         anchors.right: parent.right
82                         // We have to do it that way because QML complains about a binding
83                         // loop for checked if we bind the checked property to the settings value.
84                         Component.onCompleted: checked = settings.useGps;
85                         onCheckedChanged: settings.useGps = checked;
86                 }
87         }
88
89         Item {
90                 width: parent.width
91                 height: Math.max(useGeotagsLabel.height, useGeotags.height);
92
93                 // TODO: transition when hiding/showing and we should scroll a bit to show it
94                 visible: useGps.checked
95
96                 Label {
97                         id: useGeotagsLabel
98                         anchors.left: parent.left
99                         text: qsTr("Use geotags");
100                 }
101
102                 Switch {
103                         id: useGeotags
104                         anchors.right: parent.right
105                         // We have to do it that way because QML complains about a binding
106                         // loop for checked if we bind the checked property to the settings value.
107                         Component.onCompleted: checked = settings.useGeotags;
108                         onCheckedChanged: settings.useGeotags = checked;
109                 }
110         }
111 }