You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
842 B

CountWindow < MainWindow
id: countWindow
!text: tr('Move Stackable Item')
12 years ago
size: 196 112
@onEscape: self:destroy()
12 years ago
Label
!text: tr('Amount:')
12 years ago
width: 64
anchors.left: parent.left
anchors.top: parent.top
margin-top: 2
12 years ago
SpinBox
id: countSpinBox
12 years ago
anchors.left: prev.right
anchors.right: parent.right
anchors.top: parent.top
HorizontalScrollBar
id: countScrollBar
12 years ago
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin-top: 8
12 years ago
Button
id: buttonOk
!text: tr('Ok')
12 years ago
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
margin-right: 5
12 years ago
Button
id: buttonCancel
!text: tr('Cancel')
12 years ago
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
@onClick: self:getParent():destroy()