blob: 0350ee0f22b21267148fce6c62b99f88acb975c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import QtQuick 1.1
import com.nokia.meego 1.1
Item {
id: header
height: 40
property alias text: headerLabel.text
Text {
id: headerLabel
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.rightMargin: 8
anchors.bottomMargin: 2
font: UiConstants.GroupHeaderFont
color: theme.inverted ? "#4D4D4D" : "#3C3C3C";
}
Image {
anchors.right: headerLabel.left
anchors.left: parent.left
anchors.verticalCenter: headerLabel.verticalCenter
anchors.rightMargin: 24
source: "image://theme/meegotouch-groupheader" + (theme.inverted ? "-inverted" : "") + "-background"
}
}
|