calamares-settings/calamares/branding/manjaro/show.qml

79 lines
2.0 KiB
QML
Raw Normal View History

2019-10-28 13:48:02 +00:00
/* === This file is part of Calamares - <http://github.com/calamares> ===
*
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
*
* Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Calamares is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Slides images dimensions are 800x440px.
*/
import QtQuick 2.0;
import calamares.slideshow 1.0;
Presentation
{
id: presentation
Timer {
2019-11-05 23:49:19 +00:00
interval: 30000
2019-10-28 13:48:02 +00:00
running: true
repeat: true
onTriggered: presentation.goToNextSlide()
}
Slide {
2021-01-05 22:51:20 +00:00
anchors.fill: parent
2019-10-28 13:48:02 +00:00
Image {
2019-11-05 16:24:18 +00:00
id: background
2019-10-28 13:48:02 +00:00
source: "slide1.png"
2021-01-05 02:00:37 +00:00
width: 924; height: 496
2019-11-05 16:24:18 +00:00
2021-01-05 22:51:20 +00:00
anchors.fill: parent
2019-10-28 13:48:02 +00:00
}
Text {
anchors.horizontalCenter: background1.horizontalCenter
anchors.top: background1.bottom
text: ""
wrapMode: Text.WordWrap
width: 800
horizontalAlignment: Text.Center
}
}
2019-11-05 16:24:18 +00:00
Slide {
2021-01-05 22:51:20 +00:00
anchors.fill: parent
2019-11-05 16:24:18 +00:00
2019-10-28 13:48:02 +00:00
Image {
2019-11-05 16:24:18 +00:00
id: background1
2021-10-09 20:26:21 +00:00
source: "slide10.png"
2021-01-05 02:00:37 +00:00
width: 924; height: 496
2019-11-05 16:24:18 +00:00
2021-01-05 22:51:20 +00:00
anchors.fill: parent
2019-11-05 16:24:18 +00:00
}
Text {
anchors.horizontalCenter: background1.horizontalCenter
anchors.top: background1.bottom
text: ""
wrapMode: Text.WordWrap
width: 800
horizontalAlignment: Text.Center
}
}
2019-10-28 13:48:02 +00:00
}