summaryrefslogtreecommitdiff
path: root/metawatch/qml/com/javispedro/sowatch/metawatch/MWTitle.qml
blob: b87d535c5b0dcc5fa8fadbe9889486575835f201 (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
import Qt 4.7

Rectangle {
	width: 96
	height: 16

	property alias text: label.text
	property alias font: label.font
	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.pointSize: 12
	}
}