Added a TODO file and moved the big features there
[harmattan/cameraplus] / qml / ImageSettingsPage.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.Image
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("Image settings");
60                         }
61
62                         SectionHeader {
63                                 text: qsTr("Aspect ratio");
64                         }
65
66                         ButtonRow {
67                                 anchors.horizontalCenter: parent.horizontalCenter
68                                 exclusive: false
69                                 onCheckedButtonChanged: {
70                                         // This is needed to initially setup the
71                                         // resolutions buttons
72                                         imageSettings.resolutions.aspectRatio = checkedButton.aspect;
73                                         settings.imageAspectRatio = imageSettings.resolutions.aspectRatio;
74                                 }
75
76                                 Repeater {
77                                         model: imageSettings.aspectRatios
78                                         delegate: Button {
79                                                 property string aspect: modelData;
80                                                 text: qsTr(modelData);
81                                                 checked: settings.imageAspectRatio == modelData;
82                                                 onClicked: {
83                                                         if (!cam.idle) {
84                                                                 showError(qsTr("Camera is busy saving."));
85                                                                 return;
86                                                         }
87
88                                                         settings.imageAspectRatio = modelData;
89                                                         imageSettings.resolutions.aspectRatio = modelData;
90                                                 }
91                                         }
92                                 }
93                         }
94
95                         SectionHeader {
96                                 text: qsTr("Resolution");
97                         }
98
99                         ButtonRow {
100                                 id: resolutionsRow
101                                 anchors.horizontalCenter: parent.horizontalCenter
102                                 exclusive: false
103
104                                 Repeater {
105                                         id: resolutions
106                                         model: imageSettings.resolutions
107
108                                         // http://stackoverflow.com/questions/1026069/capitalize-the-first-letter-of-string-in-javascript
109                                         function name(name, mp) {
110                                                 return name.charAt(0).toUpperCase() + name.slice(1) + " " + mp + " Mpx";
111                                         }
112
113                                         delegate: Button {
114                                                 property string resolution: resolutionName
115                                                 property string aspectRatio: resolutionAspectRatio
116                                                 text: resolutions.name(resolutionName, megaPixels);
117                                                 checked: settings.imageResolution == resolutionName
118                                                 onClicked: {
119                                                         if (!cam.idle) {
120                                                                 showError(qsTr("Camera is busy saving."));
121                                                                 return;
122                                                         }
123
124                                                         settings.imageResolution = resolutionName;
125                                                 }
126                                         }
127                                 }
128                         }
129
130                         CameraSettings {
131                                 anchors.horizontalCenter: parent.horizontalCenter
132                         }
133                 }
134         }
135
136         ToolBar {
137                 id: toolBar
138                 anchors.bottom: parent.bottom
139                 tools: ToolBarLayout {
140                         id: layout
141                         ToolIcon { iconId: "icon-m-toolbar-back-white"; onClicked: pageStack.pop(); }
142                 }
143         }
144 }