12859
|
1 |
import QtQuick 2.7
|
|
2 |
import QtQuick.Controls 2.0
|
|
3 |
import QtQuick.Layouts 1.3
|
|
4 |
|
|
5 |
Item {
|
12866
|
6 |
property alias button1: button1
|
|
7 |
property alias previewImage: previewImage
|
12868
|
8 |
property alias gameButton: gameButton
|
12859
|
9 |
|
|
10 |
RowLayout {
|
|
11 |
anchors.horizontalCenter: parent.horizontalCenter
|
|
12 |
anchors.topMargin: 20
|
|
13 |
anchors.top: parent.top
|
|
14 |
|
|
15 |
Button {
|
12868
|
16 |
id: button1
|
|
17 |
text: qsTr("Preview")
|
|
18 |
}
|
|
19 |
|
|
20 |
Button {
|
|
21 |
id: gameButton
|
|
22 |
text: qsTr("Game")
|
12859
|
23 |
}
|
|
24 |
}
|
12866
|
25 |
|
|
26 |
Image {
|
|
27 |
id: previewImage
|
|
28 |
x: 188
|
|
29 |
y: 176
|
|
30 |
width: 256
|
|
31 |
height: 128
|
|
32 |
source: "qrc:/res/iconTime.png"
|
|
33 |
cache: false
|
|
34 |
}
|
12859
|
35 |
}
|