tibia-client/modules/client_options/options.otui

45 lines
973 B
Plaintext
Raw Normal View History

2012-01-06 10:10:55 +01:00
OptionCheckBox < CheckBox
@onCheckChange: Options.setOption(self:getId(), self:isChecked())
@onSetup: self:setChecked(Options.getOption(self:getId()))
2012-03-28 18:20:07 +02:00
height: 16
2012-01-06 10:10:55 +01:00
$first:
anchors.left: parent.left
2011-11-17 01:12:11 +01:00
anchors.right: parent.right
anchors.top: parent.top
2012-03-28 18:20:07 +02:00
$!first:
anchors.left: parent.left
anchors.right: parent.right
2011-11-17 01:12:11 +01:00
anchors.top: prev.bottom
2012-01-11 13:06:50 +01:00
margin-top: 2
2012-01-06 10:10:55 +01:00
MainWindow
id: optionsWindow
!text: tr('Options')
2012-06-21 21:31:22 +02:00
size: 350 280
2012-01-11 13:06:50 +01:00
2012-01-07 21:00:07 +01:00
@onEnter: Options.hide()
@onEscape: Options.hide()
2012-01-06 10:10:55 +01:00
TabBarRounded
id: optionsTabBar
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
2012-01-11 13:06:50 +01:00
Panel
id: optionsTabContent
anchors.top: optionsTabBar.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
margin-top: 10
Button
!text: tr('Ok')
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
@onClick: Options.hide()