2015-04-02 15:56:38 +02:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2014 Vishesh Handa <vhanda@kde.org>
|
|
|
|
SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-04-02 15:56:38 +02:00
|
|
|
|
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
import QtQuick.Controls 1.1 as Controls
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
|
|
|
|
ColumnLayout
|
|
|
|
{
|
2021-03-05 20:22:42 +01:00
|
|
|
height: PlasmaCore.Units.gridUnit * 20
|
2015-04-02 15:56:38 +02:00
|
|
|
Controls.Label {
|
|
|
|
id: label
|
2019-11-10 11:06:10 +01:00
|
|
|
text: "Press the button and make sure the popup is on the correct place"
|
2015-04-02 15:56:38 +02:00
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
|
|
id: settingsButton
|
|
|
|
iconSource: "configure"
|
|
|
|
text: "Press Me"
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
rotation: 90
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
contextMenu.visible = !contextMenu.visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.Dialog {
|
|
|
|
id: contextMenu
|
|
|
|
visualParent: settingsButton
|
|
|
|
|
|
|
|
location: PlasmaCore.Types.BottomEdge
|
|
|
|
type: PlasmaCore.Dialog.PopupMenu
|
|
|
|
flags: Qt.Popup | Qt.FramelessWindowHint | Qt.WindowDoesNotAcceptFocus
|
|
|
|
|
|
|
|
mainItem: ColumnLayout {
|
|
|
|
id: menuColumn
|
|
|
|
Layout.minimumWidth: menuColumn.implicitWidth
|
|
|
|
Layout.minimumHeight: menuColumn.implicitHeight
|
2021-03-05 20:22:42 +01:00
|
|
|
spacing: PlasmaCore.Units.smallSpacing
|
2015-04-02 15:56:38 +02:00
|
|
|
|
|
|
|
PlasmaExtras.Heading {
|
|
|
|
level: 3
|
|
|
|
text: "Panel Alignment"
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.ButtonColumn {
|
|
|
|
spacing: 0
|
|
|
|
Layout.fillWidth: true
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
text: "Left"
|
|
|
|
checkable: true
|
|
|
|
flat: false
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
}
|
|
|
|
text: "Center"
|
|
|
|
checkable: true
|
|
|
|
flat: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|