tibia-client/data/modules/mainmenu/ui/optionswindow.otml

114 lines
2.4 KiB
Plaintext
Raw Normal View History

2011-07-13 23:12:36 +02:00
%window#optionsWindow
2011-05-12 00:16:11 +02:00
title: Options
2011-04-17 23:15:24 +02:00
size: [286, 262]
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
onLoad: function(self) self:setLocked(true) end
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# general
2011-07-13 23:12:36 +02:00
%button#generalButton
2011-04-17 23:15:24 +02:00
text: General
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 32
2011-07-13 23:12:36 +02:00
%label#generalLabel
2011-04-17 23:15:24 +02:00
text: |-
2011-05-21 20:40:06 +02:00
Change general
game options
anchors.left: prev.right
anchors.top: prev.top
margin.left: 10
margin.top: -2
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# graphics
2011-07-13 23:12:36 +02:00
%button#graphicsButton
2011-04-17 23:15:24 +02:00
text: Graphics
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 65
2011-07-13 23:12:36 +02:00
%label#graphicsLabel
2011-04-17 23:15:24 +02:00
text: |-
2011-05-21 20:40:06 +02:00
Change graphics and
performance settings
anchors.left: prev.right
anchors.top: prev.top
margin.left: 10
margin.top: -2
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# console
2011-07-13 23:12:36 +02:00
%button#consoleButton
2011-04-17 23:15:24 +02:00
text: Console
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 98
2011-07-13 23:12:36 +02:00
%label#consoleLabel
2011-04-17 23:15:24 +02:00
text: Customise the console
anchors.left: prev.right
anchors.top: prev.top
margin.left: 10
margin.top: -2
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# hotkeys
2011-07-13 23:12:36 +02:00
%button#hotkeysButton
2011-04-17 23:15:24 +02:00
text: Hotkeys
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 131
2011-07-13 23:12:36 +02:00
%label#hotkeysLabel
2011-04-17 23:15:24 +02:00
text: Edit your hotkey texts
anchors.left: prev.right
anchors.top: prev.top
margin.left: 10
margin.top: -2
2011-05-01 20:47:35 +02:00
2011-07-13 23:12:36 +02:00
%lineDecoration#middleSeparator
2011-04-17 23:15:24 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 97
margin.left: 18
margin.right: 18
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# motd
2011-07-13 23:12:36 +02:00
%button#motdButton
2011-04-17 23:15:24 +02:00
text: Motd
anchors.left: parent.left
anchors.bottom: parent.bottom
margin.left: 18
margin.bottom: 60
2011-07-13 23:12:36 +02:00
%label#motdLabel
2011-05-22 00:24:10 +02:00
text: |
2011-05-21 20:40:06 +02:00
Show the most recent
Message of the Day
anchors.left: prev.right
anchors.top: prev.top
margin.left: 10
margin.top: -2
2011-05-01 20:47:35 +02:00
2011-07-13 23:12:36 +02:00
%lineDecoration#bottomSeparator
2011-04-17 23:15:24 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 40
margin.left: 13
margin.right: 13
2011-05-01 20:47:35 +02:00
2011-04-17 23:15:24 +02:00
# ok button
2011-07-13 23:12:36 +02:00
%button#okButton
2011-04-17 23:15:24 +02:00
text: Ok
size: [43, 20]
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.right: 10
2011-04-22 00:44:30 +02:00
margin.bottom: 13
onClick: function(self) self.parent:destroy() end