tibia-client/modules/entergame/characterlist.otui

68 lines
1.4 KiB
Plaintext
Raw Normal View History

CharacterListLabel < Label
2011-11-02 04:02:56 +01:00
image: /core_styles/images/empty_rect.png
2011-11-01 03:35:50 +01:00
font: verdana-11px-monochrome
2011-08-26 20:00:22 +02:00
background-color: #00000000
2011-08-26 20:44:18 +02:00
offset: 2 0
2011-08-26 20:00:22 +02:00
focusable: true
margin.left: 1
margin.right: 1
margin.top: 1
state.focus:
background-color: #ffffff22
color: #ffffff
MainWindow
id: charactersWindow
2011-11-02 04:02:56 +01:00
title: Character List
2011-08-26 20:44:18 +02:00
size: 250 250
onEnter: CharacterList.doLogin()
2011-11-02 04:02:56 +01:00
onEscape: CharacterList.destroy()
TextList
id: characterList
anchors.fill: parent
2011-08-26 20:44:18 +02:00
anchors.bottom: next.top
margin.top: 30
2011-08-26 20:44:18 +02:00
margin.bottom: 5
margin.left: 16
margin.right: 16
2011-08-26 20:44:18 +02:00
Label
id: accountStatusLabel
2011-08-26 20:44:18 +02:00
text: |-
Account Status:
Free Account
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: next.top
margin.left: 16
margin.bottom: 5
HorizontalSeparator
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: next.top
margin.left: 16
margin.right: 16
margin.bottom: 10
Button
id: buttonOk
text: Ok
width: 64
anchors.right: next.left
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
onClick: CharacterList.doLogin()
Button
id: buttonCancel
text: Cancel
width: 64
anchors.right: parent.right
anchors.bottom: parent.bottom
margin.bottom: 16
margin.right: 16
2011-11-02 04:02:56 +01:00
onClick: CharacterList.destroy()