outfit crash

This commit is contained in:
Henrique 2011-11-16 00:51:14 -02:00
parent 5e6fcd8217
commit 7ab67c012f
1 changed files with 46 additions and 10 deletions

View File

@ -1,15 +1,35 @@
Window Window
title: Select Outfit title: Select Outfit
size: 256 320
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
Creature onEnter: Outfit.accept()
id: creature onEscape: Outfit.destroy()
Label
id: name
text: Outfit Name
width: 100
anchors.top: parent.top anchors.top: parent.top
anchors.left: parent.left anchors.left: parent.left
margin.top: 30 margin.top: 34
margin.left: 20 margin.left: 20
Creature
id: creature
anchors.top: name.bottom
anchors.left: name.left
margin.top: 5
Button
@onClick: Outfit.nextType()
text: >>
width: 32
margin.top: 3
anchors.top: creature.bottom
anchors.right: creature.right
Button Button
@onClick: Outfit.previousType() @onClick: Outfit.previousType()
@ -19,13 +39,29 @@ Window
anchors.top: creature.bottom anchors.top: creature.bottom
anchors.left: creature.left anchors.left: creature.left
Button CheckBox
@onClick: Outfit.nextType() text: Addon 1
text: >> enabled: false
width: 32 margin.top: 10
margin.top: 3 width: 100
anchors.top: creature.bottom anchors.top: prev.bottom
anchors.right: creature.right 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
HorizontalSeparator HorizontalSeparator
anchors.left: parent.left anchors.left: parent.left