summaryrefslogtreecommitdiffstats
path: root/qml/Live.qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2020-06-21 22:42:18 +0200
committerPapoteur <papoteur@mageia.org>2020-06-21 22:42:18 +0200
commite0f03586b4b3c7a89abdd43a94276e9cdb83d415 (patch)
tree22e564b318109d55bbda3099d3602ba50685e9b1 /qml/Live.qml
parent05a4b221a461de945b303c0c685a5f3a9071b9f7 (diff)
downloadmageiawelcome-e0f03586b4b3c7a89abdd43a94276e9cdb83d415.tar
mageiawelcome-e0f03586b4b3c7a89abdd43a94276e9cdb83d415.tar.gz
mageiawelcome-e0f03586b4b3c7a89abdd43a94276e9cdb83d415.tar.bz2
mageiawelcome-e0f03586b4b3c7a89abdd43a94276e9cdb83d415.tar.xz
mageiawelcome-e0f03586b4b3c7a89abdd43a94276e9cdb83d415.zip
New screens for live mode.
Diffstat (limited to 'qml/Live.qml')
-rw-r--r--qml/Live.qml46
1 files changed, 46 insertions, 0 deletions
diff --git a/qml/Live.qml b/qml/Live.qml
new file mode 100644
index 0000000..30355c8
--- /dev/null
+++ b/qml/Live.qml
@@ -0,0 +1,46 @@
+import QtQuick 2
+import QtQuick.Controls 1
+
+Rectangle {
+ property var title: qsTr("Live mode")
+ width: view.width; height: view.height
+ Loader { sourceComponent: slidebackground ;
+ anchors.fill: parent
+ }
+ Column {
+ anchors.centerIn: parent
+ spacing: 10
+
+ Label {
+ anchors.horizontalCenter: parent.horizontalCenter
+ horizontalAlignment: TextInput.AlignHCenter
+ text: qsTr("Live mode")
+ font.weight: Font.DemiBold
+ font.pixelSize: Qt.application.font.pixelSize * 1.5
+ color: "white"
+ }
+ Label {
+ anchors.horizontalCenter: parent.horizontalCenter
+ horizontalAlignment: TextInput.AlignHCenter
+ width: slideshow.width
+ text:qsTr('This support allows you to try out Mageia without having to actually install it, or make any changes to your computer. However, the Live media also includes an Installer, which can be started when booting the media, or after booting like now.')
+ wrapMode: Text.WordWrap;textFormat: Text.RichText
+ color: "white"
+ }
+ Label {
+ anchors.horizontalCenter: parent.horizontalCenter
+ horizontalAlignment: TextInput.AlignHCenter
+ width: slideshow.width
+ text:qsTr("Any customization or installed software will be kept when installing just after. But they won't survive to a reboot, except on a memory support and if you have added a persistent partition.")
+ wrapMode: Text.WordWrap;textFormat: Text.RichText
+ color: "white"
+ }
+ MButton {
+ anchors.horizontalCenter: parent.horizontalCenter
+ objectName: "link"
+ //: the link to the local file can be adapted to your language if the documentation is translated
+ onMbuttonClicked: { link.weblink(qsTr("file:///usr/share/doc/mageia-doc/draklive/en/index.html"))}
+ buttonText: qsTr("Documentation of installer")
+ }
+ }
+}