WWW update
[ubi] / qml / ubi / Page.qml
1 import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
2 import "UIConstants.js" as Const
3 import "components"
4
5 Item {
6     id: root
7     property string title: ""
8     property string orientation: Const.DEFAULT_ORIENTATION
9     property variant menu
10     property alias mask: _mask
11
12     anchors.fill: parent
13
14     Rectangle {
15         anchors.right: parent.right
16         anchors.left: parent.left
17         height: parent.height
18         y: Const.SYSTEM_BAR_HEIGHT
19         color: Const.DEFAULT_BACKGROUND_COLOR
20     }
21
22     Mask {
23         id: _mask
24         z: 100
25         anchors.fill: parent
26         onClicked: taskBar.close()
27     }
28
29     /*Component.onCompleted: {
30         //Utils.setOrientation(orientation);
31     }*/
32 }