tibia-client/modules/game_outfit/outfit.otui

129 lines
2.3 KiB
Plaintext
Raw Normal View History

Color < ColorBox
2011-11-16 19:52:41 +01:00
anchors.top: head.top
anchors.left: head.right
2011-11-14 23:32:55 +01:00
Window
2012-01-11 00:13:38 +01:00
text: Select Outfit
2011-11-16 19:52:41 +01:00
size: 550 280
2012-02-08 02:33:08 +01:00
padding: 0 0 0 0
2011-11-14 23:32:55 +01:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
2011-11-17 22:41:02 +01:00
@onEnter: Outfit.accept()
@onEscape: Outfit.destroy()
2011-11-16 03:51:14 +01:00
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-17 22:41:02 +01:00
margin-top: 34
margin-left: 20
2011-11-16 03:51:14 +01:00
Creature
id: creature
anchors.top: name.bottom
anchors.left: name.left
2011-11-17 22:41:02 +01:00
margin-top: 5
2012-02-08 02:33:08 +01:00
padding: 16 4 4 16
fixed-creature-size: true
2011-11-17 22:41:02 +01:00
ButtonBox
2011-11-16 19:52:41 +01:00
id: head
text: Head
anchors.top: creature.top
anchors.left: creature.right
2011-11-17 22:41:02 +01:00
margin-left: 10
checked: true
2011-11-17 22:41:02 +01:00
ButtonBox
2011-11-16 19:52:41 +01:00
id: primary
text: Primary
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-17 22:41:02 +01:00
ButtonBox
2011-11-16 19:52:41 +01:00
id: secondary
text: Secondary
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-17 22:41:02 +01:00
ButtonBox
2011-11-16 19:52:41 +01:00
id: detail
text: Detail
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-16 03:51:14 +01:00
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
2011-11-17 22:41:02 +01:00
margin-top: 4
2011-11-15 03:04:07 +01:00
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
2011-11-17 22:41:02 +01:00
margin-top: 4
2011-11-15 03:04:07 +01:00
anchors.top: creature.bottom
2011-11-16 03:51:14 +01:00
anchors.left: creature.left
2011-11-16 03:51:14 +01:00
CheckBox
2011-11-16 08:20:14 +01:00
id: addon1
2011-11-16 03:51:14 +01:00
text: Addon 1
enabled: false
2011-11-17 22:41:02 +01:00
margin-top: 10
2011-11-16 03:51:14 +01:00
width: 100
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-16 03:51:14 +01:00
CheckBox
2011-11-16 08:20:14 +01:00
id: addon2
2011-11-16 03:51:14 +01:00
text: Addon 2
enabled: false
2011-11-17 22:41:02 +01:00
margin-top: 10
2011-11-16 03:51:14 +01:00
width: 100
anchors.top: prev.bottom
anchors.left: prev.left
2011-11-16 03:51:14 +01:00
CheckBox
2011-11-16 08:20:14 +01:00
id: addon3
2011-11-16 03:51:14 +01:00
text: Addon 3
enabled: false
2011-11-17 22:41:02 +01:00
margin-top: 10
2011-11-16 03:51:14 +01:00
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
2011-11-17 22:41:02 +01:00
margin-left: 16
margin-right: 16
margin-bottom: 10
2011-11-14 23:32:55 +01:00
Button
id: buttonOk
text: Ok
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
2011-11-17 22:41:02 +01:00
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
2011-11-17 22:41:02 +01:00
margin-bottom: 16
margin-right: 16
2011-11-16 00:47:32 +01:00
@onClick: Outfit.destroy()