Kevin Kofler 8d5419f
/* === This file is part of Calamares - <http://github.com/calamares> ===
Kevin Kofler 8d5419f
 *
Kevin Kofler 8d5419f
 *   Copyright 2015, Teo Mrnjavac <teo@kde.org>
Kevin Kofler 8d5419f
 *   Copyright 2015, Kevin Kofler <kevin.kofler@chello.at>
Kevin Kofler 8d5419f
 *
Kevin Kofler 8d5419f
 *   Calamares is free software: you can redistribute it and/or modify
Kevin Kofler 8d5419f
 *   it under the terms of the GNU General Public License as published by
Kevin Kofler 8d5419f
 *   the Free Software Foundation, either version 3 of the License, or
Kevin Kofler 8d5419f
 *   (at your option) any later version.
Kevin Kofler 8d5419f
 *
Kevin Kofler 8d5419f
 *   Calamares is distributed in the hope that it will be useful,
Kevin Kofler 8d5419f
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Kevin Kofler 8d5419f
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Kevin Kofler 8d5419f
 *   GNU General Public License for more details.
Kevin Kofler 8d5419f
 *
Kevin Kofler 8d5419f
 *   You should have received a copy of the GNU General Public License
Kevin Kofler 8d5419f
 *   along with Calamares. If not, see <http://www.gnu.org/licenses/>.
Kevin Kofler 8d5419f
 */
Kevin Kofler 8d5419f
Kevin Kofler 8d5419f
import QtQuick 2.0;
Kevin Kofler 8d5419f
import calamares.slideshow 1.0;
Kevin Kofler 8d5419f
Kevin Kofler 8d5419f
Presentation
Kevin Kofler 8d5419f
{
Kevin Kofler 8d5419f
    Slide {
Kevin Kofler 8d5419f
        Image {
Kevin Kofler 8d5419f
            id: background
Kevin Kofler 8d5419f
            source: "/usr/share/calamares/branding/default/squid.png"
Kevin Kofler 8d5419f
            width: 200; height: 200
Kevin Kofler 8d5419f
            fillMode: Image.PreserveAspectFit
Kevin Kofler 8d5419f
            anchors.centerIn: parent
Kevin Kofler 8d5419f
        }
Kevin Kofler 8d5419f
Kevin Kofler 8d5419f
        Text {
Kevin Kofler 8d5419f
            anchors.horizontalCenter: background.horizontalCenter
Kevin Kofler 8d5419f
            anchors.top: background.bottom
Kevin Kofler 5e9b006
            text: qsTr("This installer is powered by Calamares, the cross-distribution installer framework.") +
Kevin Kofler e9a81a6
                  "
https://calamares.io/"
Kevin Kofler 8d5419f
            wrapMode: Text.WordWrap
Kevin Kofler 8d5419f
            width: root.width
Kevin Kofler 8d5419f
            horizontalAlignment: Text.Center
Kevin Kofler c00b6e8
            onLinkActivated: Qt.openUrlExternally(link)
Kevin Kofler 8d5419f
        }
Kevin Kofler 8d5419f
    }
Kevin Kofler 8d5419f
}