marcin
2014-07-16 16:48:17 +02:00
parent 4cbd5f57be
commit e87418f36c
9 changed files with 197 additions and 122 deletions

View File

@@ -8,7 +8,9 @@ Rectangle {
id: amountLabel
anchors.left: parent.left
anchors.top: parent.top
anchors.margins: 17
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 17
text: qsTr("Amount")
fontSize: 14
}
@@ -129,13 +131,37 @@ Rectangle {
anchors.topMargin: 5
}
Row {
Label {
id: descriptionLabel
anchors.left: parent.left
anchors.right: parent.right
anchors.top: paymentLine.bottom
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 17
fontSize: 14
text: qsTr("Description <font size='2'>( Local database )</font>")
visible: checkBox.checked
}
LineEdit {
id: descriptionLine
anchors.left: parent.left
anchors.right: parent.right
anchors.top: descriptionLabel.bottom
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 5
visible: checkBox.checked
}
Row {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: checkBox.checked ? descriptionLine.bottom : paymentLine.bottom
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 17
spacing: 17
StandardButton {