Kirigami2

PrivateActionToolButton.qml
1/*
2 * SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7import QtQuick
8import QtQml
9import QtQuick.Controls as QQC2
10import QtQuick.Templates as T
11
12import org.kde.kirigami as Kirigami
13
14QQC2.ToolButton {
15 id: control
16
17 signal menuAboutToShow()
18
19 hoverEnabled: true
20
21 display: QQC2.ToolButton.TextBesideIcon
22
23 property bool showMenuArrow: !Kirigami.DisplayHint.displayHintSet(action, Kirigami.DisplayHint.HideChildIndicator)
24
25 property list<T.Action> menuActions: {
26 if (action instanceof Kirigami.Action) {
27 return action.children;
28 }
29 return []
30 }
31
32 property Component menuComponent: ActionsMenu {
33 submenuComponent: ActionsMenu { }
34 }
35
36 property T.Menu menu: null
37
38 // We create the menu instance only when there are any actual menu items.
39 // This also happens in the background, avoiding slowdowns due to menu item
40 // creation on the main thread.
41 onMenuActionsChanged: {
42 if (menuComponent && menuActions.length > 0) {
43 if (!menu) {
44 const setupIncubatedMenu = incubatedMenu => {
45 menu = incubatedMenu
46 // Important: We handle the press on parent in the parent, so ignore it here.
47 menu.closePolicy = QQC2.Popup.CloseOnEscape | QQC2.Popup.CloseOnPressOutsideParent
48 menu.closed.connect(() => control.checked = false)
49 menu.actions = control.menuActions
50 }
51 const incubator = menuComponent.incubateObject(control, { actions: menuActions })
52 if (incubator.status !== Component.Ready) {
53 incubator.onStatusChanged = status => {
54 if (status === Component.Ready) {
55 setupIncubatedMenu(incubator.object)
56 }
57 }
58 } else {
59 setupIncubatedMenu(incubator.object);
60 }
61 } else {
62 menu.actions = menuActions
63 }
64 }
65 }
66
67 visible: action instanceof Kirigami.Action ? action.visible : true
68
69 // Workaround for QTBUG-85941
70 Binding {
71 target: control
72 property: "checkable"
73 value: (control.action?.checkable ?? false) || (control.menuActions.length > 0)
74 restoreMode: Binding.RestoreBinding
75 }
76
77 // Important: This cannot be a direct onVisibleChanged handler in the button
78 // because it breaks action assignment if we do that. However, this slightly
79 // more indirect Connections object does not have that effect.
80 Connections {
81 target: control
82 function onVisibleChanged() {
83 if (!control.visible && control.menu && control.menu.visible) {
84 control.menu.dismiss()
85 }
86 }
87 }
88
89 onToggled: {
90 if (menuActions.length > 0 && menu) {
91 if (checked) {
92 control.menuAboutToShow();
93 menu.popup(control, 0, control.height)
94 } else {
95 menu.dismiss()
96 }
97 }
98 }
99
100 QQC2.ToolTip {
101 visible: control.hovered && text.length > 0 && !(control.menu && control.menu.visible) && !control.pressed
102 text: {
103 const a = control.action;
104 if (a) {
105 if (a.tooltip) {
106 return a.tooltip;
107 } else if (control.display === QQC2.Button.IconOnly) {
108 return a.text;
109 }
110 }
111 return "";
112 }
113 }
114
115 // This will set showMenuArrow when using qqc2-desktop-style.
116 Accessible.role: (control.showMenuArrow && control.menuActions.length > 0) ? Accessible.ButtonMenu : Accessible.Button
117 Accessible.ignored: !visible
118}
Q_SCRIPTABLE CaptureState status()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Oct 11 2024 12:13:25 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.