2012-03-18 14:34:39 +01:00
|
|
|
CountWindow < MainWindow
|
|
|
|
id: countWindow
|
2012-04-07 00:31:45 +02:00
|
|
|
text: Move Stackable Item
|
2012-01-26 02:11:05 +01:00
|
|
|
size: 196 112
|
2012-01-28 19:33:12 +01:00
|
|
|
@onEscape: self:destroy()
|
|
|
|
|
2012-01-26 02:11:05 +01:00
|
|
|
Label
|
|
|
|
text: Amount:
|
|
|
|
width: 64
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.top: parent.top
|
|
|
|
margin-top: 2
|
2012-01-28 19:33:12 +01:00
|
|
|
|
2012-01-26 02:11:05 +01:00
|
|
|
SpinBox
|
2012-03-29 15:45:40 +02:00
|
|
|
id: countSpinBox
|
2012-01-26 02:11:05 +01:00
|
|
|
anchors.left: prev.right
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
2012-01-28 19:33:12 +01:00
|
|
|
|
2012-03-29 15:45:40 +02:00
|
|
|
HorizontalScrollBar
|
|
|
|
id: countScrollBar
|
2012-01-26 02:11:05 +01:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2012-03-29 15:45:40 +02:00
|
|
|
anchors.top: prev.bottom
|
|
|
|
margin-top: 8
|
2012-01-26 02:11:05 +01:00
|
|
|
|
|
|
|
Button
|
|
|
|
id: buttonOk
|
|
|
|
text: Ok
|
|
|
|
width: 64
|
|
|
|
anchors.right: next.left
|
|
|
|
anchors.bottom: parent.bottom
|
2012-03-29 15:45:40 +02:00
|
|
|
margin-right: 5
|
2012-01-26 02:11:05 +01:00
|
|
|
|
|
|
|
Button
|
|
|
|
id: buttonCancel
|
|
|
|
text: Cancel
|
|
|
|
width: 64
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
@onClick: self:getParent():destroy()
|