More widgets added to the image settings page and added CameraSettings.qml but nothin...
[harmattan/cameraplus] / qml / CameraSettings.qml
1 // -*- qml -*-
2 import QtQuick 1.1
3 import com.nokia.meego 1.1
4
5 Column {
6         id: col
7         spacing: 10
8
9         Label {
10                 // TODO:
11                 text: qsTr("Camera settings");
12         }
13
14         SectionHeader {
15                 text: qsTr("Show captured content");
16         }
17
18         ButtonRow {
19                 anchors.horizontalCenter: parent.horizontalCenter
20                 Button { text: qsTr("Disabled"); }
21                 Button { text: qsTr("2 seconds"); }
22                 Button { text: qsTr("5 seconds"); }
23                 Button { text: qsTr("No timeout"); }
24         }
25
26         SectionHeader {
27                 text: qsTr("Creator name");
28         }
29
30         TextField {
31                 placeholderText: qsTr("Name or copyright");
32                 width: parent.width
33         }
34
35         Item {
36                 width: parent.width
37                 height: 40 // TODO: hardcoded
38
39                 Label {
40                         id: gpsLabel
41                         anchors.left: parent.left
42                         text: qsTr("Use GPS");
43                 }
44
45                 Switch {
46                         anchors.right: parent.right
47                 }
48         }
49
50         Item {
51                 width: parent.width
52                 height: 40 // TODO: hardcoded
53
54                 Label {
55                         id: geotagsLabel
56                         anchors.left: parent.left
57                         text: qsTr("Use geotags");
58                 }
59
60                 Switch {
61                         anchors.right: parent.right
62                 }
63         }
64 }