tibia-client/modules/outfit/outfit.otui

93 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-11-14 23:32:55 +01:00
Window
title: Select Outfit
2011-11-16 03:51:14 +01:00
size: 256 320
2011-11-14 23:32:55 +01:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
2011-11-16 03:51:14 +01:00
onEnter: Outfit.accept()
onEscape: Outfit.destroy()
Label
id: name
text: Outfit Name
width: 100
2011-11-14 23:32:55 +01:00
anchors.top: parent.top
anchors.left: parent.left
2011-11-16 03:51:14 +01:00
margin.top: 34
2011-11-14 23:32:55 +01:00
margin.left: 20
2011-11-16 03:51:14 +01:00
Creature
id: creature
anchors.top: name.bottom
anchors.left: name.left
margin.top: 5
2011-11-15 03:04:07 +01:00
Button
2011-11-16 03:51:14 +01:00
@onClick: Outfit.nextType()
text: >>
2011-11-15 03:04:07 +01:00
width: 32
margin.top: 3
anchors.top: creature.bottom
2011-11-16 03:51:14 +01:00
anchors.right: creature.right
2011-11-15 03:04:07 +01:00
Button
2011-11-16 03:51:14 +01:00
@onClick: Outfit.previousType()
text: <<
2011-11-15 03:04:07 +01:00
width: 32
margin.top: 3
anchors.top: creature.bottom
2011-11-16 03:51:14 +01:00
anchors.left: creature.left
CheckBox
text: Addon 1
enabled: false
margin.top: 10
width: 100
anchors.top: prev.bottom
anchors.left: prev.left
CheckBox
text: Addon 2
enabled: false
margin.top: 10
width: 100
anchors.top: prev.bottom
anchors.left: prev.left
CheckBox
text: Addon 3
enabled: false
margin.top: 10
width: 100
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-14 23:32:55 +01:00
HorizontalSeparator
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: next.top
margin.left: 16
margin.right: 16
margin.bottom: 10
Button
id: buttonOk
text: Ok
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
2011-11-16 00:47:32 +01:00
@onClick: Outfit.accept()
2011-11-14 23:32:55 +01:00
Button
id: buttonCancel
text: Cancel
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
2011-11-16 00:47:32 +01:00
@onClick: Outfit.destroy()