Cleaned up Harmattan AboutPage
[quandoparte] / application / resources / harmattan / qml / InfoBar.qml
1 import QtQuick 1.1
2 import com.nokia.meego 1.1
3 import "uiconstants.js" as UiConstants
4
5 BorderImage {
6     property alias text: label.text
7     width: parent.width
8     border.left: 10
9     border.right: 10
10     border.top: 10
11     border.bottom: 10
12     height: UiConstants.SearchBarDefaultHeight
13     source: style.background
14
15     ToolBarStyle {
16         id: style
17     }
18     Item {
19         id: spacerTop
20         width: parent.width
21         height: UiConstants.DefaultMargin
22     }
23     Item {
24         id: spacerLeft
25         anchors.left: parent.left
26         width: UiConstants.DefaultMargin
27         height: searchField.height
28     }
29     Item {
30         id: spacerRight
31         anchors.right: parent.right
32         width: UiConstants.DefaultMargin
33         height: searchField.height
34     }
35     Label {
36         id: label
37         anchors.verticalCenter: parent.verticalCenter
38         anchors.left: spacerLeft.right
39         anchors.right: spacerRight.left
40         text: "Lorem Ipsum"
41         font {
42             pixelSize: UiConstants.HeaderFontPixelSize
43         }
44     }
45 }