tibia-client/modules/entergame/entergame.otui

79 lines
1.6 KiB
Plaintext
Raw Normal View History

2011-08-14 04:09:11 +02:00
MainWindow
2011-11-02 04:02:56 +01:00
id: enterGame
2011-04-10 23:16:24 +02:00
title: Enter Game
2011-11-16 00:47:32 +01:00
size: 236 200
onEnter: EnterGame.doLogin()
2011-11-02 04:02:56 +01:00
onEscape: EnterGame.hide()
2011-05-01 20:47:35 +02:00
2011-08-14 04:09:11 +02:00
LargerLabel
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
2011-08-14 04:09:11 +02:00
LineEdit
id: accountNameLineEdit
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-11-01 03:35:50 +01:00
margin.top: 2
2011-04-10 23:16:24 +02:00
margin.left: 18
margin.right: 18
2011-05-01 20:47:35 +02:00
2011-08-14 04:09:11 +02:00
LargerLabel
text: Password
anchors.left: prev.left
anchors.top: prev.bottom
margin.top: 8
2011-04-10 23:16:24 +02:00
2011-08-30 16:25:08 +02:00
PasswordLineEdit
2011-08-14 04:09:11 +02:00
id: accountPasswordLineEdit
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
2011-11-01 03:35:50 +01:00
margin.top: 2
margin.left: 18
margin.right: 18
2011-04-10 23:16:24 +02:00
2011-11-16 00:47:32 +01:00
CheckBox
id: rememberPasswordBox
text: Remember password
2011-11-16 01:02:15 +01:00
checked: true
2011-11-16 00:47:32 +01:00
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.top: 10
margin.left: 18
margin.right: 18
CheckBox
id: autoLoginBox
text: Auto login
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.top: 8
margin.left: 18
margin.right: 18
2011-08-14 04:09:11 +02:00
Button
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-11-16 00:47:32 +01:00
@onClick: EnterGame.doLogin()
2011-04-10 23:16:24 +02:00
2011-08-14 04:09:11 +02:00
Button
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
2011-11-16 00:47:32 +01:00
@onClick: EnterGame.hide()