0392a81920d0784446df561e5499ce14673cd473
[harmattan/cameraplus] / qml / ImageSettingsPage.qml
1 // -*- qml -*-
2 import QtQuick 1.1
3 import com.nokia.meego 1.1
4 import QtCamera 1.0
5
6 Page {
7         id: page
8
9         // TODO:
10
11         Flickable {
12                 id: flick
13                 anchors.top: parent.top
14                 anchors.left: parent.left
15                 anchors.right: parent.right
16                 anchors.bottom: toolBar.top
17
18                 WhiteBalanceButton {
19                         id: wb
20                         anchors.top: parent.top
21                         anchors.left: parent.left
22                         anchors.topMargin: 20
23                         anchors.leftMargin: 20
24                 }
25
26                 ColorToneButton {
27                         id: ct
28                         anchors.top: wb.bottom
29                         anchors.left: parent.left
30                         anchors.topMargin: 20
31                         anchors.leftMargin: 20
32                 }
33         }
34
35         ToolBar {
36                 id: toolBar
37                 anchors.bottom: parent.bottom
38                 // TODO: transparent ?
39 //                height: layout.height
40 //                platformStyle: ToolBarStyle {
41 //                        background: ""
42 //                }
43
44                 tools: ToolBarLayout {
45                         id: layout
46                         ToolIcon { iconId: "icon-m-toolbar-back"; onClicked: pageStack.pop(); }
47                 }
48         }
49 }