blob: f7157627ac2662cc3891f732da600da8f2c81394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import QtQuick 2
import QtQuick.Controls 1
Rectangle {
//: the button in buttons bar
property var title: qsTr("Install")
width: view.width; height: view.height
Loader { sourceComponent: slidebackground ;
anchors.fill: parent}
Column {
spacing: 10
anchors.centerIn: parent
anchors.verticalCenter: parent.verticalCenter
Label {
horizontalAlignment: TextInput.AlignHCenter
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Are you ready for Installation?");
textFormat: Text.RichText
color: "white"
}
Image {
anchors.horizontalCenter: parent.horizontalCenter
source: "file:/usr/share/icons/draklive-install.png"
}
MButton {
anchors.horizontalCenter: parent.horizontalCenter
objectName: "launch"
onMbuttonClicked: { launch.command(["draklive-install",])}
buttonText: qsTr("Launch installation")
}
}
}
|