tibia-client/modules/game_viplist/addvip.otui

40 lines
830 B
Plaintext
Raw Normal View History

2012-01-04 19:11:11 +01:00
MainWindow
size: 256 128
2012-01-11 00:13:38 +01:00
text: Add to VIP list
@onEnter: VipList.addVip()
@onEscape: VipList.destroyAddWindow()
2012-01-04 19:11:11 +01:00
Label
text: Please enter a character name:
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
2012-01-04 19:11:11 +01:00
LineEdit
id: name
anchors.top: prev.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-top: 4
2012-01-04 19:11:11 +01:00
HorizontalSeparator
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: next.top
margin-bottom: 10
Button
text: Ok
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
2012-01-11 13:06:50 +01:00
margin-right: 10
2012-01-04 19:11:11 +01:00
@onClick: VipList.addVip()
Button
text: Cancel
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
@onClick: VipList.destroyAddWindow()