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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/*
* 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.ApplicationWindow {
id: root
width: Kirigami.Units.gridUnit * 60
height: Kirigami.Units.gridUnit * 40
pageStack.initialPage: mainPageComponent
globalDrawer: Kirigami.OverlayDrawer {
id: drawer
drawerOpen: true
modal: false
//leftPadding: Kirigami.Units.largeSpacing
rightPadding: Kirigami.Units.largeSpacing
contentItem: ColumnLayout {
Layout.preferredWidth: Kirigami.Units.gridUnit * 20
QQC2.Label {
Layout.alignment: Qt.AlignHCenter
text: "This is a sidebar"
Layout.fillWidth: true
width: parent.width - Kirigami.Units.smallSpacing * 2
wrapMode: Text.WordWrap
}
QQC2.Button {
Layout.alignment: Qt.AlignHCenter
text: "Modal"
checkable: true
Layout.fillWidth: true
checked: false
onCheckedChanged: drawer.modal = checked
}
Item {
Layout.fillHeight: true
}
}
}
contextDrawer: Kirigami.OverlayDrawer {
id: contextDrawer
drawerOpen: true
edge: Qt.application.layoutDirection === Qt.RightToLeft ? Qt.LeftEdge : Qt.RightEdge
modal: false
leftPadding: Kirigami.Units.largeSpacing
rightPadding: Kirigami.Units.largeSpacing
contentItem: ColumnLayout {
Layout.preferredWidth: Kirigami.Units.gridUnit * 10
QQC2.Label {
Layout.alignment: Qt.AlignHCenter
text: "This is a sidebar"
Layout.fillWidth: true
width: parent.width - Kirigami.Units.smallSpacing * 2
wrapMode: Text.WordWrap
}
QQC2.Button {
Layout.alignment: Qt.AlignHCenter
text: "Modal"
checkable: true
Layout.fillWidth: true
checked: false
onCheckedChanged: contextDrawer.modal = checked
}
Item {
Layout.fillHeight: true
}
}
}
menuBar: QQC2.MenuBar {
QQC2.Menu {
title: qsTr("&File")
QQC2.Action { text: qsTr("&New...") }
QQC2.Action { text: qsTr("&Open...") }
QQC2.Action { text: qsTr("&Save") }
QQC2.Action { text: qsTr("Save &As...") }
QQC2.MenuSeparator { }
QQC2.Action { text: qsTr("&Quit") }
}
QQC2.Menu {
title: qsTr("&Edit")
QQC2.Action { text: qsTr("Cu&t") }
QQC2.Action { text: qsTr("&Copy") }
QQC2.Action { text: qsTr("&Paste") }
}
QQC2.Menu {
title: qsTr("&Help")
QQC2.Action { text: qsTr("&About") }
}
}
header: QQC2.ToolBar {
contentItem: RowLayout {
QQC2.ToolButton {
text: "Global ToolBar"
}
Item {
Layout.fillWidth: true
}
Kirigami.ActionTextField {
id: searchField
placeholderText: "Search…"
focusSequence: StandardKey.Find
leftActions: [
Kirigami.Action {
icon.name: "edit-clear"
visible: searchField.text !== ""
onTriggered: {
searchField.text = ""
searchField.accepted()
}
},
Kirigami.Action {
icon.name: "edit-clear"
visible: searchField.text !== ""
onTriggered: {
searchField.text = ""
searchField.accepted()
}
}
]
rightActions: [
Kirigami.Action {
icon.name: "edit-clear"
visible: searchField.text !== ""
onTriggered: {
searchField.text = ""
searchField.accepted()
}
},
Kirigami.Action {
icon.name: "anchor"
visible: searchField.text !== ""
onTriggered: {
searchField.text = ""
searchField.accepted()
}
}
]
onAccepted: console.log("Search text is " + searchField.text)
}
}
}
//Main app content
Component {
id: mainPageComponent
MultipleColumnsGallery {}
}
footer: QQC2.ToolBar {
position: QQC2.ToolBar.Footer
QQC2.Label {
anchors.fill: parent
verticalAlignment: Qt.AlignVCenter
text: "Global Footer"
}
}
}
|