improved desktop UI
[mardrone] / mardrone / imports / com / nokia / meego / PageStackWindow.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the Qt Components project.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 1.0
42 import "." 1.0
43
44 Window {
45     id: window
46
47     property bool showStatusBar: true
48     property bool showToolBar: true
49     property bool toolBarOnTop: false
50     property variant initialPage
51     property alias pageStack: stack
52     property Style platformStyle: PageStackWindowStyle{}
53
54     //Deprecated, TODO Remove this on w13
55     property alias style: window.platformStyle
56
57     //private api
58     property int __statusBarHeight: showStatusBar ? statusBar.height : 0
59
60     objectName: "pageStackWindow"
61
62     StatusBar {
63         id: statusBar
64         anchors.top: parent.top
65         width: parent.width
66         showStatusBar: window.showStatusBar
67     }
68
69     onOrientationChangeStarted: {
70         statusBar.orientation = screen.currentOrientation
71     }
72
73     Rectangle {
74         id: background
75         visible: platformStyle.background == ""
76         color: platformStyle.backgroundColor
77         width: window.inPortrait ? screen.displayHeight : screen.displayWidth
78         height: window.inPortrait ? screen.displayWidth : screen.displayHeight
79         anchors { top: statusBar.bottom; left: parent.left; }
80     }
81
82     Image {
83         id: backgroundImage
84         visible: platformStyle.background != ""
85         source: window.inPortrait ? platformStyle.portraitBackground : platformStyle.landscapeBackground
86         fillMode: platformStyle.backgroundFillMode
87         width: window.inPortrait ? screen.displayHeight : screen.displayWidth
88         height: window.inPortrait ? screen.displayWidth : screen.displayHeight
89         anchors { top: statusBar.bottom; left: parent.left; }
90     }
91
92     Item {
93         objectName: "appWindowContent"
94         width: parent.width
95         anchors.top: statusBar.bottom
96         anchors.bottom: parent.bottom
97
98         // content area
99         Item {
100             id: contentArea
101             anchors { top: parent.top; left: parent.left; right: parent.right; bottom: parent.bottom; }
102             anchors.bottomMargin: !toolBarOnTop && (toolBar.visible || (toolBar.opacity==1))? toolBar.height : 0
103             anchors.topMargin: toolBarOnTop && (toolBar.visible || (toolBar.opacity==1))? toolBar.height : 0
104             PageStack {
105                 id: stack
106                 anchors.fill: parent
107                 toolBar: toolBar
108             }
109         }
110
111         Item {
112             id: roundedCorners
113             visible: platformStyle.cornersVisible
114             anchors.fill: parent
115             z: 10001
116
117             Image {
118                 anchors.top : parent.top
119                 anchors.left: parent.left
120                 source: "image://theme/meegotouch-applicationwindow-corner-top-left"
121             }
122             Image {
123                 anchors.top: parent.top
124                 anchors.right: parent.right
125                 source: "image://theme/meegotouch-applicationwindow-corner-top-right"
126             }
127             Image {
128                 anchors.bottom : parent.bottom
129                 anchors.left: parent.left
130                 source: "image://theme/meegotouch-applicationwindow-corner-bottom-left"
131             }
132             Image {
133                 anchors.bottom : parent.bottom
134                 anchors.right: parent.right
135                 source: "image://theme/meegotouch-applicationwindow-corner-bottom-right"
136             }
137         }
138
139         ToolBar {
140             id: toolBar
141             anchors.top: toolBarOnTop ? parent.top: undefined
142             anchors.bottom: !toolBarOnTop ? parent.bottom: undefined
143             privateVisibility: (inputContext.softwareInputPanelVisible==true || inputContext.customSoftwareInputPanelVisible == true)
144             ? ToolBarVisibility.HiddenImmediately : (window.showToolBar ? ToolBarVisibility.Visible : ToolBarVisibility.Hidden)
145         }
146     }
147
148     // event preventer when page transition is active
149     MouseArea {
150         anchors.fill: parent
151         enabled: pageStack.busy
152     }
153
154     Component.onCompleted: {
155         if (initialPage) pageStack.push(initialPage);
156     }
157
158 }