summaryrefslogtreecommitdiff
path: root/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml
blob: c2cccab70b836f215263222bb88dd48a33c4a759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Qt 4.7

Rectangle {
	width: 96
	height: 16

	property alias text: label.text
	property alias icon: image

	Image {
		id: image
		anchors.left: parent.left
		anchors.top: parent.top
	}

	MWLabel {
		id: label
		anchors.left: image.right
		anchors.leftMargin: 2
		anchors.verticalCenter: parent.verticalCenter
		font.bold: true
	}
}