Reworked ModeButton to use a Switch
[harmattan/cameraplus] / qml / VideoSettingsPage.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 import QtCamera 1.0
26 import CameraPlus 1.0
27
28 import "data.js" as Data
29
30 CameraPage {
31         id: page
32         controlsVisible: false
33         policyMode: CameraResources.Video
34         needsPipeline: false
35         standbyVisible: !Qt.application.active
36
37         Rectangle {
38                 color: "black"
39                 anchors.fill: parent
40         }
41
42         Flickable {
43                 anchors.top: parent.top
44                 anchors.left: parent.left
45                 anchors.right: parent.right
46                 anchors.bottom: toolBar.top
47                 anchors.margins: 10
48                 contentHeight: col.height
49
50                 Column {
51                         id: col
52
53                         width: parent.width
54                         spacing: 10
55
56                         Label {
57                                 font.pixelSize: 36
58                                 text: qsTr("Video settings");
59                         }
60
61                         Row {
62                                 width: parent.width
63
64                                 ListItem {
65                                         id: wb
66                                         width: parent.width / 2
67                                         title: qsTr("White balance");
68                                         subtitle: Data.wbName(settings.videoWhiteBalance);
69                                         iconId: Data.wbSelectedIcon(settings.videoWhiteBalance);
70                                         onClicked: openFile("VideoWhiteBalancePage.qml");
71                                 }
72
73                                 ListItem {
74                                         id: cf
75                                         width: parent.width / 2
76                                         title: qsTr("Color filter");
77                                         subtitle: Data.cfName(settings.videoColorFilter);
78                                         iconId: Data.cfSelectedIcon(settings.videoColorFilter);
79                                         onClicked: openFile("VideoColorFilterPage.qml");
80                                 }
81                         }
82
83                         SectionHeader {
84                                 text: qsTr("Resolution");
85                         }
86
87                         ButtonRow {
88                                 anchors.horizontalCenter: parent.horizontalCenter
89                                 exclusive: false
90
91                                 Repeater {
92                                         id: resolutions
93
94                                         model: videoSettings.resolutions
95
96                                         function name(name, res) {
97                                                 return name.charAt(0).toUpperCase() + name.slice(1) + " " + res;
98                                         }
99
100                                         delegate: Button {
101                                                 text: resolutions.name(resolutionName, resolution);
102                                                 checked: settings.videoResolution == resolutionName;
103                                                 onClicked: {
104                                                         if (!cam.idle) {
105                                                                 showError(qsTr("Camera is busy saving."));
106                                                                 return;
107                                                         }
108
109                                                         settings.videoResolution = resolutionName;
110                                                 }
111                                         }
112                                 }
113                         }
114
115                         CameraSettings {
116                                 anchors.horizontalCenter: parent.horizontalCenter
117                         }
118                 }
119         }
120
121         ToolBar {
122                 id: toolBar
123                 anchors.bottom: parent.bottom
124                 tools: ToolBarLayout {
125                         id: layout
126                         ToolIcon { iconId: "icon-m-toolbar-back"; onClicked: pageStack.pop(); }
127                 }
128         }
129 }