Fixed image preview
[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                 id: flickable
44                 anchors.top: parent.top
45                 anchors.left: parent.left
46                 anchors.right: parent.right
47                 anchors.bottom: toolBar.top
48                 anchors.margins: 10
49                 contentHeight: col.height
50
51                 Column {
52                         id: col
53
54                         width: parent.width
55                         spacing: 10
56
57                         Label {
58                                 font.pixelSize: 36
59                                 text: qsTr("Video settings");
60                         }
61
62                         SectionHeader {
63                                 text: qsTr("Resolution");
64                         }
65
66                         ButtonRow {
67                                 anchors.horizontalCenter: parent.horizontalCenter
68                                 exclusive: false
69
70                                 Repeater {
71                                         id: resolutions
72
73                                         model: videoSettings.resolutions
74
75                                         function name(name, res) {
76                                                 return name.charAt(0).toUpperCase() + name.slice(1) + " " + res;
77                                         }
78
79                                         delegate: Button {
80                                                 text: resolutions.name(resolutionName, resolution);
81                                                 checked: settings.videoResolution == resolutionName;
82                                                 onClicked: {
83                                                         if (!cam.idle) {
84                                                                 showError(qsTr("Camera is busy saving."));
85                                                                 return;
86                                                         }
87
88                                                         settings.videoResolution = resolutionName;
89                                                 }
90                                         }
91                                 }
92                         }
93
94                         CameraSettings {
95                                 anchors.horizontalCenter: parent.horizontalCenter
96                         }
97                 }
98         }
99
100         ToolBar {
101                 id: toolBar
102                 anchors.bottom: parent.bottom
103                 tools: ToolBarLayout {
104                         id: layout
105                         ToolIcon { iconId: "icon-m-toolbar-back-white"; onClicked: pageStack.pop(); }
106                 }
107         }
108 }