1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Controls 2.15 as QQC2
import org.kde.kirigami 2.20 as Kirigami
Kirigami.AbstractApplicationWindow {
id: root
width: 500
height: 800
visible: true
globalDrawer: Kirigami.GlobalDrawer {
title: "Widget gallery"
titleIcon: "applications-graphics"
actions: [
Kirigami.Action {
text: "View"
icon.name: "view-list-icons"
Kirigami.Action {
text: "action 1"
}
Kirigami.Action {
text: "action 2"
}
Kirigami.Action {
text: "action 3"
}
},
Kirigami.Action {
text: "Sync"
icon.name: "folder-sync"
Kirigami.Action {
text: "action 4"
}
Kirigami.Action {
text: "action 5"
}
},
Kirigami.Action {
text: "Checkable"
icon.name: "view-list-details"
checkable: true
checked: false
onTriggered: {
print("Action checked:" + checked)
}
},
Kirigami.Action {
text: "Settings"
icon.name: "configure"
checkable: true
//Need to do this, otherwise it breaks the bindings
property bool current: pageStack.currentItem ? pageStack.currentItem.objectName == "settingsPage" : false
onCurrentChanged: {
checked = current;
}
onTriggered: {
pageStack.push(settingsComponent);
}
}
]
QQC2.CheckBox {
checked: true
text: "Option 1"
}
QQC2.CheckBox {
text: "Option 2"
}
QQC2.CheckBox {
text: "Option 3"
}
QQC2.Slider {
Layout.fillWidth: true
value: 0.5
}
}
contextDrawer: Kirigami.ContextDrawer {
id: contextDrawer
}
pageStack: QQC2.StackView {
anchors.fill: parent
property int currentIndex: 0
focus: true
onCurrentIndexChanged: {
if (depth > currentIndex+1) {
pop(get(currentIndex));
}
}
onDepthChanged: {
currentIndex = depth-1;
}
initialItem: mainPageComponent
Keys.onReleased: event => {
if (event.key === Qt.Key_Back ||
(event.key === Qt.Key_Left && (event.modifiers & Qt.AltModifier))) {
event.accepted = true;
if (root.contextDrawer && root.contextDrawer.drawerOpen) {
root.contextDrawer.close();
} else if (root.globalDrawer && root.globalDrawer.drawerOpen) {
root.globalDrawer.close();
} else {
var backEvent = {accepted: false}
if (root.pageStack.currentIndex >= 1) {
root.pageStack.currentItem.backRequested(backEvent);
if (!backEvent.accepted) {
if (root.pageStack.depth > 1) {
root.pageStack.currentIndex = Math.max(0, root.pageStack.currentIndex - 1);
backEvent.accepted = true;
} else {
Qt.quit();
}
}
}
if (!backEvent.accepted) {
Qt.quit();
}
}
}
}
}
Component {
id: settingsComponent
Kirigami.Page {
title: "Settings"
objectName: "settingsPage"
Rectangle {
anchors.fill: parent
}
}
}
//Main app content
Component {
id: mainPageComponent
MultipleColumnsGallery {}
}
}
|