wizard v1.0

This commit is contained in:
marcin
2014-08-21 12:09:52 +02:00
parent 86e03f9eb0
commit 48add34d57
16 changed files with 730 additions and 7 deletions

View File

@@ -6,6 +6,9 @@ Item {
property string checkedIcon
property string uncheckedIcon
property bool checked: false
property alias background: backgroundRect.color
property int fontSize: 14
property alias fontColor: label.color
signal clicked()
height: 25
width: label.x + label.width
@@ -21,6 +24,7 @@ Item {
}
Rectangle {
id: backgroundRect
anchors.left: parent.left
height: parent.height - 1
width: 25
@@ -41,7 +45,7 @@ Item {
anchors.left: parent.left
anchors.leftMargin: 25 + 12
font.family: "Arial"
font.pixelSize: 14
font.pixelSize: checkBox.fontSize
font.letterSpacing: -1
color: "#525252"
}