2012-01-04 19:11:11 +01:00
|
|
|
MainWindow
|
|
|
|
size: 256 128
|
2012-04-26 21:54:16 +02:00
|
|
|
!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-05 19:31:52 +01:00
|
|
|
|
2012-01-04 19:11:11 +01:00
|
|
|
Label
|
2012-04-26 21:54:16 +02:00
|
|
|
!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
|
2012-01-05 19:31:52 +01:00
|
|
|
|
2012-03-31 15:43:01 +02:00
|
|
|
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-05 19:31:52 +01:00
|
|
|
|
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
|
2012-04-26 21:54:16 +02:00
|
|
|
!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
|
2012-04-26 21:54:16 +02:00
|
|
|
!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()
|