Added gallery integration
[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         enableViewfinder: 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                         SectionHeader {
62                                 text: qsTr("Resolution");
63                         }
64
65                         ButtonRow {
66                                 anchors.horizontalCenter: parent.horizontalCenter
67                                 exclusive: false
68
69                                 Repeater {
70                                         id: resolutions
71
72                                         model: videoSettings.resolutions
73
74                                         function name(name, res) {
75                                                 return name.charAt(0).toUpperCase() + name.slice(1) + " " + res;
76                                         }
77
78                                         delegate: Button {
79                                                 text: resolutions.name(resolutionName, resolution);
80                                                 checked: settings.videoResolution == resolutionName;
81                                                 onClicked: {
82                                                         if (!cam.idle) {
83                                                                 showError(qsTr("Camera is busy saving."));
84                                                                 return;
85                                                         }
86
87                                                         settings.videoResolution = resolutionName;
88                                                 }
89                                         }
90                                 }
91                         }
92
93                         CameraSettings {
94                                 anchors.horizontalCenter: parent.horizontalCenter
95                         }
96                 }
97         }
98
99         ToolBar {
100                 id: toolBar
101                 anchors.bottom: parent.bottom
102                 tools: ToolBarLayout {
103                         id: layout
104                         ToolIcon { iconId: "icon-m-toolbar-back-white"; onClicked: pageStack.pop(); }
105                 }
106         }
107 }