import QtQuick 1.1
import Qt.labs.folderlistmodel 1.0
Rectangle {
id: root
width: 1200; height: 700
color: "#eff0f1"
FolderListModel {
id: folderModel
folder: "data"
sortField: "Time"
nameFilters: ["*.jpg", "*.png", "*.jpeg", "*.gif", "*.url"]
}
Column {
x: 1005; y: 425
Image {
id: konqiIcon
width: 150; height: 250
source: "icons/konqi.png"
}
}
Column {
x: 30; y: 30
Text {
text: "Welcome to Kubuntu"
font.pointSize: 48;
}
}
Column {
x: 45; y: 125
spacing: 4
Text {
text: "* Thank you for choosing Kubuntu 16.04. We hope you enjoy the experience."
font.pointSize: 16
}
Text {
text: "* We believe every computer user should be free to work in the environment they choose, and be free to \n download, change, study and share their software with anyone, for any purpose."
font.pointSize: 16
}
Text {
text: "* We want Kubuntu to work for you. So while your software is installing, this slideshow will introduce \n you to Kubuntu 16.10."
font.pointSize: 16
}
}
Column {
x: 70; y: 275
Text {
text: "Kubuntu is designed to be easy. Feel free to explore!"
font.pointSize: 18
}
}
}