/* * Copyright 2016 Marco Martin * Copyright 2020 Nate Graham * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import QtQuick 2.12 import QtQuick.Layouts 1.12 import org.kde.plasma.core 2.0 as PlasmaCore // We still need PC2 here for that version of Menu, as PC2 Menu is still very problematic with QActions // Not being a proper popup window, makes it a showstopper to be used in Plasma import org.kde.plasma.components 2.0 as PC2 import org.kde.plasma.components 3.0 as PlasmaComponents import org.kde.plasma.extras 2.0 as PlasmaExtras Item { id: popup //set width/height to avoid useless Dialog resize readonly property int defaultWidth: PlasmaCore.Units.gridUnit * 24 readonly property int defaultHeight: PlasmaCore.Units.gridUnit * 24 width: defaultWidth Layout.minimumWidth: defaultWidth Layout.preferredWidth: defaultWidth Layout.maximumWidth: defaultWidth height: defaultHeight Layout.minimumHeight: defaultHeight Layout.preferredHeight: defaultHeight Layout.maximumHeight: defaultHeight property alias hiddenLayout: hiddenItemsView.layout // Header PlasmaExtras.PlasmoidHeading { id: plasmoidHeading anchors { top: parent.top left: parent.left right: parent.right } height: trayHeading.height + bottomPadding + container.headingHeight Behavior on height { NumberAnimation { duration: PlasmaCore.Units.shortDuration/2; easing.type: Easing.InOutQuad } } } // Main content layout ColumnLayout { id: expandedRepresentation anchors.fill: parent // TODO: remove this so the scrollview fully touches the header; // add top padding internally spacing: plasmoidHeading.bottomPadding // Header content layout RowLayout { id: trayHeading PlasmaComponents.ToolButton { id: backButton visible: systemTrayState.activeApplet && systemTrayState.activeApplet.expanded && (hiddenLayout.itemCount > 0) icon.name: LayoutMirroring.enabled ? "go-previous-symbolic-rtl" : "go-previous-symbolic" onClicked: systemTrayState.setActiveApplet(null) } PlasmaExtras.Heading { Layout.fillWidth: true leftPadding: systemTrayState.activeApplet ? 0 : PlasmaCore.Units.smallSpacing * 2 level: 1 text: systemTrayState.activeApplet ? systemTrayState.activeApplet.title : i18n("Status and Notifications") } PlasmaComponents.ToolButton { id: actionsButton visible: visibleActions > 0 checked: visibleActions > 1 ? configMenu.status !== PC2.DialogStatus.Closed : singleAction && singleAction.checked property QtObject applet: systemTrayState.activeApplet || plasmoid onAppletChanged: { configMenu.clearMenuItems(); updateVisibleActions(); } property int visibleActions: 0 property QtObject singleAction function updateVisibleActions() { let newSingleAction = null; let newVisibleActions = 0; for (let i in applet.contextualActions) { let action = applet.contextualActions[i]; if (action.visible && action !== actionsButton.applet.action("configure")) { newVisibleActions++; newSingleAction = action; action.changed.connect(() => {updateVisibleActions()}); } } if (newVisibleActions > 1) { newSingleAction = null; } visibleActions = newVisibleActions; singleAction = newSingleAction; } Connections { target: actionsButton.applet function onContextualActionsChanged() { Qt.callLater(actionsButton.updateVisibleActions); } } icon.name: "application-menu" checkable: visibleActions > 1 || (singleAction && singleAction.checkable) contentItem.opacity: visibleActions > 1 // NOTE: it needs an IconItem because QtQuickControls2 buttons cannot load QIcons as their icon PlasmaCore.IconItem { parent: actionsButton anchors.centerIn: parent active: actionsButton.hovered implicitWidth: PlasmaCore.Units.iconSizes.smallMedium implicitHeight: implicitWidth source: actionsButton.singleAction !== null ? actionsButton.singleAction.icon : "" visible: actionsButton.singleAction } onToggled: { if (visibleActions > 1) { if (checked) { configMenu.openRelative(); } else { configMenu.close(); } } } onClicked: { if (singleAction) { singleAction.trigger(); } } PlasmaComponents.ToolTip { text: actionsButton.singleAction ? actionsButton.singleAction.text : i18n("More actions") } PC2.Menu { id: configMenu visualParent: actionsButton placement: PlasmaCore.Types.BottomPosedLeftAlignedPopup } Instantiator { model: actionsButton.applet.contextualActions delegate: PC2.MenuItem { id: menuItem action: modelData } onObjectAdded: { if (object.action !== actionsButton.applet.action("configure")) { configMenu.addMenuItem(object); } } } } PlasmaComponents.ToolButton { icon.name: "configure" visible: actionsButton.applet && actionsButton.applet.action("configure") PlasmaComponents.ToolTip { text: parent.visible ? actionsButton.applet.action("configure").text : "" } onClicked: actionsButton.applet.action("configure").trigger(); } PlasmaComponents.ToolButton { id: pinButton checkable: true checked: plasmoid.configuration.pin onToggled: plasmoid.configuration.pin = checked icon.name: "window-pin" PlasmaComponents.ToolTip { text: i18n("Keep Open") } } } // Grid view of all available items HiddenItemsView { id: hiddenItemsView Layout.fillWidth: true Layout.fillHeight: true Layout.topMargin: PlasmaCore.Units.smallSpacing visible: !systemTrayState.activeApplet } // Container for currently visible item PlasmoidPopupsContainer { id: container Layout.fillWidth: true Layout.fillHeight: true visible: systemTrayState.activeApplet // We need to add margin on the top so it matches the dialog's own margin Layout.topMargin: mergeHeadings ? 0 : dialog.margins.top } } // Footer PlasmaExtras.PlasmoidHeading { id: plasmoidFooter location: PlasmaExtras.PlasmoidHeading.Location.Footer anchors { bottom: parent.bottom left: parent.left right: parent.right } visible: container.appletHasFooter height: container.footerHeight // So that it doesn't appear over the content view, which results in // the footer controls being inaccessible z: -9999 } }