author | unc0rr |
Wed, 29 Apr 2015 23:52:18 +0300 | |
branch | qmlfrontend |
changeset 10906 | 13fde38281fc |
parent 10896 | 5a74923120d5 |
permissions | -rw-r--r-- |
10422 | 1 |
import QtQuick 2.0 |
2 |
||
3 |
Rectangle { |
|
4 |
HWButton { |
|
5 |
id: btnLocalGame |
|
6 |
x: 8 |
|
7 |
y: 80 |
|
8 |
width: 166 |
|
9 |
height: 166 |
|
10 |
||
11 |
onClicked: pages.currentPage = "LocalGame" |
|
12 |
} |
|
13 |
||
14 |
HWButton { |
|
15 |
id: btnNetwork |
|
16 |
x: 192 |
|
17 |
y: 80 |
|
18 |
width: 166 |
|
19 |
height: 166 |
|
10896
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
10422
diff
changeset
|
20 |
|
5a74923120d5
Start network support: only setting up a connection for now
unc0rr
parents:
10422
diff
changeset
|
21 |
onClicked: pages.currentPage = "Connect" |
10422 | 22 |
} |
23 |
||
24 |
HWButton { |
|
25 |
id: btnAbout |
|
26 |
x: 100 |
|
27 |
y: 16 |
|
28 |
width: 200 |
|
29 |
height: 50 |
|
30 |
} |
|
31 |
} |