create in game interface panels and renable about and options windows

This commit is contained in:
Eduardo Bart
2011-11-03 07:59:11 -02:00
parent b05bb7818d
commit b345a6d783
30 changed files with 400 additions and 70 deletions

View File

@@ -11,6 +11,7 @@ TopPanel
anchors.left: parent.left
margin.top: 3
margin.left: 6
onClick: Options.create()
UIWidget
size: 16 16
@@ -22,7 +23,12 @@ TopPanel
anchors.top: prev.top
anchors.left: prev.right
margin.left: 6
onClick: EnterGame.show()
onClick: |
if Game.isOnline() then
CharacterList.show()
else
EnterGame.show()
end
UIWidget
size: 16 16
@@ -46,4 +52,17 @@ TopPanel
size: 16 16
image: /core_styles/icons/logout.png
anchors.centerIn: parent
phantom: true
TopButton
anchors.top: parent.top
anchors.right: prev.left
margin.top: 3
margin.right: 6
onClick: About.create()
UIWidget
size: 16 16
image: /core_styles/icons/about.png
anchors.centerIn: parent
phantom: true