author | unc0rr |
Tue, 26 Dec 2017 01:36:58 +0100 | |
branch | qmlfrontend |
changeset 12861 | 488782d9aba9 |
parent 12858 | 0c6fb706f747 |
child 12863 | fe16fa088b69 |
permissions | -rw-r--r-- |
12854 | 1 |
import QtQuick 2.7 |
2 |
import QtQuick.Controls 2.0 |
|
3 |
import QtQuick.Layouts 1.3 |
|
4 |
||
5 |
Item { |
|
12861 | 6 |
property alias button1: button1 |
7 |
property alias previewImage: previewImage |
|
12854 | 8 |
|
9 |
RowLayout { |
|
10 |
anchors.horizontalCenter: parent.horizontalCenter |
|
11 |
anchors.topMargin: 20 |
|
12 |
anchors.top: parent.top |
|
13 |
||
14 |
Button { |
|
15 |
id: button1 |
|
12858
0c6fb706f747
More refactoring in attempt to move away from frontlib
unc0rr
parents:
12854
diff
changeset
|
16 |
text: qsTr("Run") |
12854 | 17 |
} |
18 |
} |
|
12861 | 19 |
|
20 |
Image { |
|
21 |
id: previewImage |
|
22 |
x: 188 |
|
23 |
y: 176 |
|
24 |
width: 256 |
|
25 |
height: 128 |
|
26 |
source: "qrc:/res/iconTime.png" |
|
27 |
cache: false |
|
28 |
} |
|
12854 | 29 |
} |