2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2016-11-18 19:34:17 +00:00
|
|
|
|
2020-03-26 16:01:51 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2016-11-18 19:34:17 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
id: window
|
|
|
|
width: 360
|
|
|
|
height: 520
|
|
|
|
visible: true
|
|
|
|
title: qsTr("Side Panel")
|
|
|
|
|
|
|
|
//! [orientation]
|
|
|
|
readonly property bool inPortrait: window.width < window.height
|
|
|
|
//! [orientation]
|
|
|
|
|
|
|
|
ToolBar {
|
|
|
|
id: overlayHeader
|
|
|
|
|
|
|
|
z: 1
|
|
|
|
width: parent.width
|
2020-06-05 11:31:53 +00:00
|
|
|
parent: Overlay.overlay
|
2016-11-18 19:34:17 +00:00
|
|
|
|
|
|
|
Label {
|
|
|
|
id: label
|
|
|
|
anchors.centerIn: parent
|
2020-11-13 12:30:10 +00:00
|
|
|
text: "Qt Quick Controls"
|
2016-11-18 19:34:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Drawer {
|
|
|
|
id: drawer
|
|
|
|
|
|
|
|
y: overlayHeader.height
|
|
|
|
width: window.width / 2
|
|
|
|
height: window.height - overlayHeader.height
|
|
|
|
|
|
|
|
modal: inPortrait
|
|
|
|
interactive: inPortrait
|
|
|
|
position: inPortrait ? 0 : 1
|
|
|
|
visible: !inPortrait
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: listView
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
headerPositioning: ListView.OverlayHeader
|
|
|
|
header: Pane {
|
|
|
|
id: header
|
|
|
|
z: 2
|
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
contentHeight: logo.height
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: logo
|
|
|
|
width: parent.width
|
|
|
|
source: "images/qt-logo.png"
|
|
|
|
fillMode: implicitWidth > width ? Image.PreserveAspectFit : Image.Pad
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuSeparator {
|
|
|
|
parent: header
|
|
|
|
width: parent.width
|
|
|
|
anchors.verticalCenter: parent.bottom
|
|
|
|
visible: !listView.atYBeginning
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: ItemDelegate {
|
|
|
|
id: footer
|
|
|
|
text: qsTr("Footer")
|
|
|
|
width: parent.width
|
|
|
|
|
|
|
|
MenuSeparator {
|
|
|
|
parent: footer
|
|
|
|
width: parent.width
|
|
|
|
anchors.verticalCenter: parent.top
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
model: 10
|
|
|
|
|
|
|
|
delegate: ItemDelegate {
|
|
|
|
text: qsTr("Title %1").arg(index + 1)
|
2020-02-25 11:16:39 +00:00
|
|
|
width: listView.width
|
2016-11-18 19:34:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ScrollIndicator.vertical: ScrollIndicator { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Flickable {
|
|
|
|
id: flickable
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.topMargin: overlayHeader.height
|
|
|
|
anchors.leftMargin: !inPortrait ? drawer.width : undefined
|
|
|
|
|
|
|
|
topMargin: 20
|
|
|
|
bottomMargin: 20
|
|
|
|
contentHeight: column.height
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
|
|
|
spacing: 20
|
|
|
|
anchors.margins: 20
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
|
|
|
Label {
|
|
|
|
font.pixelSize: 22
|
|
|
|
width: parent.width
|
|
|
|
elide: Label.ElideRight
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
text: qsTr("Side Panel Example")
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
width: parent.width
|
|
|
|
wrapMode: Label.WordWrap
|
|
|
|
text: qsTr("This example demonstrates how Drawer can be used as a non-closable persistent side panel.\n\n" +
|
|
|
|
"When the application is in portrait mode, the drawer is an interactive side panel that can " +
|
|
|
|
"be swiped open from the left edge. When the application is in landscape mode, the drawer " +
|
|
|
|
"and the content are laid out side by side.\n\nThe application is currently in %1 mode.").arg(inPortrait ? qsTr("portrait") : qsTr("landscape"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollIndicator.vertical: ScrollIndicator { }
|
|
|
|
}
|
|
|
|
}
|