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

55 lines
1.2 KiB
Plaintext
Raw Normal View History

2011-07-13 23:12:36 +02:00
%window#enterGameWindow
2011-04-10 23:16:24 +02:00
title: Enter Game
size: [236, 160]
2011-04-10 23:16:24 +02:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
2011-05-01 20:47:35 +02:00
2011-07-13 23:12:36 +02:00
%label#accountNameLabel
skin: large
2011-04-10 23:16:24 +02:00
text: Account name
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 28
2011-05-01 20:47:35 +02:00
%textEdit#accountNameTextEdit
2011-08-01 06:28:41 +02:00
text: otclient0
2011-04-10 23:16:24 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
2011-04-10 23:16:24 +02:00
margin.left: 18
margin.right: 18
2011-05-01 20:47:35 +02:00
%label#passwordLabel
skin: large
text: Password
anchors.left: prev.left
anchors.top: prev.bottom
margin.top: 8
2011-04-10 23:16:24 +02:00
%textEdit#passwordTextEdit
2011-08-01 06:28:41 +02:00
text: 123456
2011-04-10 23:16:24 +02:00
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.left: 18
margin.right: 18
2011-04-10 23:16:24 +02:00
2011-07-13 23:12:36 +02:00
%button#okButton
2011-04-10 23:16:24 +02:00
text: Ok
width: 64
anchors.right: next.left
2011-04-10 23:16:24 +02:00
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
2011-07-17 08:56:57 +02:00
onClick: EnterGame_connectToLoginServer()
2011-04-10 23:16:24 +02:00
2011-07-13 23:12:36 +02:00
%button#cancelButton
2011-04-10 23:16:24 +02:00
text: Cancel
width: 64
2011-04-10 23:16:24 +02:00
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
onClick: function(self) rootUI:getChild("enterGameWindow"):destroy() end