38 lines
1.1 KiB
QML
38 lines
1.1 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15 as Controls
|
|
import QtQuick.Layouts 1.15
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
import QtQuick.Dialogs 1.0
|
|
import Qt.labs.platform 1.0
|
|
|
|
// Provides basic features needed for all kirigami applications
|
|
Kirigami.ApplicationWindow {
|
|
// Unique identifier to reference this object
|
|
id: root
|
|
|
|
// Window title
|
|
// i18nc() makes a string translatable
|
|
// and provides additional context for the translators
|
|
title: i18nc("@title:window", "Hello World")
|
|
|
|
// Set the first page that will be loaded when the app opens
|
|
// This can also be set to an id of a Kirigami.Page
|
|
pageStack.initialPage: Kirigami.Page {
|
|
Controls.Label {
|
|
// Center label horizontally and vertically within parent object
|
|
anchors.centerIn: parent
|
|
text: i18n("Hello World!")
|
|
}
|
|
Controls.Button {
|
|
anchors.centerIn: parent
|
|
text: i18n("Open folder")
|
|
onClicked: folderDialog.open();
|
|
}
|
|
}
|
|
|
|
FolderDialog {
|
|
id: folderDialog
|
|
}
|
|
}
|
|
|