tibia-client/modules/game_viplist/addvip.otui

40 lines
910 B
Plaintext
Raw Normal View History

2012-01-04 19:11:11 +01:00
MainWindow
size: 256 128
!text: tr('Add to VIP list')
2012-07-27 00:13:47 +02:00
@onEnter: modules.game_viplist.addVip()
@onEscape: modules.game_viplist.destroyAddWindow()
2012-01-04 19:11:11 +01:00
Label
!text: tr('Please enter a character name:')
2012-01-04 19:11:11 +01:00
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
TextEdit
2012-01-04 19:11:11 +01:00
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: tr('Ok')
2012-01-04 19:11:11 +01:00
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
2012-01-11 13:06:50 +01:00
margin-right: 10
2012-07-27 00:13:47 +02:00
@onClick: modules.game_viplist.addVip()
2012-01-04 19:11:11 +01:00
Button
!text: tr('Cancel')
2012-01-04 19:11:11 +01:00
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
2012-07-27 00:13:47 +02:00
@onClick: modules.game_viplist.destroyAddWindow()