2011-11-14 23:32:55 +01:00
|
|
|
Window
|
|
|
|
title: Select Outfit
|
|
|
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
|
|
|
Creature
|
|
|
|
id: creature
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
margin.top: 30
|
|
|
|
margin.left: 20
|
2011-11-15 03:04:07 +01:00
|
|
|
|
|
|
|
Button
|
2011-11-16 00:47:32 +01:00
|
|
|
@onClick: Outfit.previousType()
|
2011-11-15 03:04:07 +01:00
|
|
|
text: <<
|
|
|
|
width: 32
|
|
|
|
margin.top: 3
|
|
|
|
anchors.top: creature.bottom
|
|
|
|
anchors.left: creature.left
|
|
|
|
|
|
|
|
Button
|
2011-11-16 00:47:32 +01:00
|
|
|
@onClick: Outfit.nextType()
|
2011-11-15 03:04:07 +01:00
|
|
|
text: >>
|
|
|
|
width: 32
|
|
|
|
margin.top: 3
|
|
|
|
anchors.top: creature.bottom
|
|
|
|
anchors.right: creature.right
|
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()
|