You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.6 KiB

MainWindow
id: enterGame
13 years ago
title: Enter Game
size: 236 200
onEnter: EnterGame.doLogin()
onEscape: EnterGame.hide()
LargerLabel
13 years ago
text: Account name
anchors.left: parent.left
anchors.top: parent.top
margin.left: 18
margin.top: 28
LineEdit
id: accountNameLineEdit
13 years ago
text: otclient0
13 years ago
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.top: 2
13 years ago
margin.left: 18
margin.right: 18
LargerLabel
text: Password
anchors.left: prev.left
anchors.top: prev.bottom
margin.top: 8
13 years ago
PasswordLineEdit
id: accountPasswordLineEdit
13 years ago
text: 123456
13 years ago
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.top: 2
margin.left: 18
margin.right: 18
13 years ago
CheckBox
id: rememberPasswordBox
text: Remember password
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
checked: true
anchors.left: parent.left
anchors.right: parent.right
anchors.top: prev.bottom
margin.top: 8
margin.left: 18
margin.right: 18
Button
13 years ago
text: Ok
width: 64
anchors.right: next.left
13 years ago
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
@onClick: EnterGame.doLogin()
13 years ago
Button
13 years ago
text: Cancel
width: 64
13 years ago
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
@onClick: EnterGame.hide()