2011-08-14 04:09:11 +02:00
|
|
|
Panel
|
2011-05-12 00:16:11 +02:00
|
|
|
skin: mainMenuBackground
|
2011-04-19 04:10:08 +02:00
|
|
|
anchors.left: parent.left
|
2011-04-22 15:49:46 +02:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.top: parent.top
|
2011-04-19 04:10:08 +02:00
|
|
|
anchors.bottom: parent.bottom
|
2011-05-01 20:47:35 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
Panel
|
|
|
|
id: mainMenu
|
2011-04-22 15:49:46 +02:00
|
|
|
skin: roundedGridPanel
|
2011-08-14 04:09:11 +02:00
|
|
|
size: 144 162
|
2011-04-22 15:49:46 +02:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
margin.left: 60
|
|
|
|
margin.bottom: 70
|
2011-05-01 20:47:35 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
Button
|
|
|
|
id: enterGameButton
|
2011-04-22 15:49:46 +02:00
|
|
|
text: Enter Game
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2011-07-27 01:13:27 +02:00
|
|
|
margin.top: 18
|
2011-08-14 04:09:11 +02:00
|
|
|
onClick: rootWidget:addChild(loadUI("entergamewindow"))
|
2011-04-19 04:10:08 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
Button
|
|
|
|
id: optionsButton
|
2011-04-22 15:49:46 +02:00
|
|
|
text: Options
|
2011-07-27 01:13:27 +02:00
|
|
|
anchors.top: prev.bottom
|
2011-04-22 15:49:46 +02:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2011-07-27 01:13:27 +02:00
|
|
|
margin.top: 10
|
2011-08-14 04:09:11 +02:00
|
|
|
onClick: rootWidget:addChild(loadUI("optionswindow"))
|
2011-04-19 04:10:08 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
Button
|
|
|
|
id: infoButton
|
2011-04-22 15:49:46 +02:00
|
|
|
text: Info
|
2011-07-27 01:13:27 +02:00
|
|
|
anchors.top: prev.bottom
|
2011-04-22 15:49:46 +02:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2011-07-27 01:13:27 +02:00
|
|
|
margin.top: 10
|
2011-08-14 04:09:11 +02:00
|
|
|
onClick: rootWidget:addChild(loadUI("infowindow"))
|
2011-04-19 04:10:08 +02:00
|
|
|
|
2011-08-14 04:09:11 +02:00
|
|
|
Button
|
|
|
|
id: exitGameButton
|
2011-04-22 15:49:46 +02:00
|
|
|
text: Exit
|
2011-07-27 01:13:27 +02:00
|
|
|
anchors.top: prev.bottom
|
2011-04-22 15:49:46 +02:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2011-07-27 01:13:27 +02:00
|
|
|
margin.top: 10
|
2011-08-14 04:09:11 +02:00
|
|
|
onClick: exit()
|