/***************************************************************************** * Copyright (C) 2022 by Friedrich Schriewer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, 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 General Public License for more details. * * * * You should have received a copy of the GNU 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 Qt5Compat.GraphicalEffects import QtQuick.Window 2.2 import org.kde.plasma.components 3.0 as PlasmaComponents import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.coreaddons 1.0 as KCoreAddons import org.kde.kirigami 2.13 as Kirigami import QtQuick.Controls 2.15 import "../code/tools.js" as Tools Item { id: allItem width: scrollView.availableWidth - Kirigami.Units.mediumSpacing height: Kirigami.Units.iconSizes.smallMedium property var itemSection: model.group property bool highlighted: false property bool isDraging: false property bool canDrag: true property bool canNavigate: false signal highlightChanged signal aboutToShowActionMenu(variant actionMenu) property bool hasActionList: ((model.favoriteId !== null) || (("hasActionList" in model) && (model.hasActionList !== null))) property var triggerModel onAboutToShowActionMenu: actionMenu => { var actionList = allItem.hasActionList ? model.actionList : []; Tools.fillActionMenu(i18n, actionMenu, actionList, globalFavorites, model.favoriteId); } function openActionMenu(x, y) { aboutToShowActionMenu(actionMenu); if(actionMenu.actionList.length === 0) return; actionMenu.visualParent = allItem; actionMenu.open(x, y); } function actionTriggered(actionId, actionArgument) { var close = (Tools.triggerAction(triggerModel, index, actionId, actionArgument) === true); if (close) { //root.toggle(); root.visible = false; } } function trigger() { triggerModel.trigger(index, "", null); root.visible = false; } function updateHighlight() { if (navGrid.currentIndex == index){ highlighted = true } else { highlighted = false } } function deselect(){ highlighted = false listView.currentIndex = -1 } Kirigami.Icon { id: appicon anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter anchors.leftMargin: Kirigami.Units.smallSpacing*2 + Kirigami.Units.iconSizes.small width: Kirigami.Units.iconSizes.small height: width source: model.decoration } PlasmaComponents.Label { id: appname anchors.left: appicon.right anchors.right: parent.right anchors.rightMargin: Kirigami.Units.smallSpacing anchors.leftMargin: Kirigami.Units.smallSpacing anchors.verticalCenter: appicon.verticalCenter text: ("name" in model ? model.name : model.display) font.underline: ma.containsMouse elide: Text.ElideRight } KickoffHighlight { id: rectFill anchors.fill: parent anchors.leftMargin: Kirigami.Units.iconSizes.small opacity: (listView.currentIndex === index) * 0.7 + ma.containsMouse * 0.3 } Timer { id: toolTipTimer interval: Kirigami.Units.longDuration*4 onTriggered: { toolTip.showToolTip(); } } PlasmaCore.ToolTipArea { id: toolTip anchors { fill: parent } active: appname.truncated interactive: false /*location: (((Plasmoid.location === PlasmaCore.Types.RightEdge) * || (Qt.application.layoutDirection === Qt.RightToLeft)) * ? PlasmaCore.Types.RightEdge : PlasmaCore.Types.LeftEdge)*/ mainText: appname.text } MouseArea { id: ma anchors.fill: parent anchors.leftMargin: Kirigami.Units.iconSizes.small z: parent.z + 1 acceptedButtons: Qt.LeftButton | Qt.RightButton cursorShape: Qt.PointingHandCursor hoverEnabled: true onClicked: mouse => { if (mouse.button == Qt.RightButton) { if (allItem.hasActionList) { var mapped = mapToItem(allItem, mouse.x, mouse.y); allItem.openActionMenu(mapped.x, mapped.y); } } else { trigger() } } onReleased: { isDraging: false } // to prevent crashing onEntered: { if(parent.parent) { listView.currentIndex = index; } toolTipTimer.start(); } onExited: { if(parent.parent) { listView.currentIndex = -1; toolTipTimer.stop(); toolTip.hideToolTip(); } } onPositionChanged: { isDraging = pressed if (pressed && canDrag){ if ("pluginName" in model) { dragHelper.startDrag(kicker, model.url, model.decoration, "text/x-plasmoidservicename", model.pluginName); } else { dragHelper.startDrag(kicker, model.url, model.decoration); } } listView.currentIndex = containsMouse ? index : -1 /*if (containsMouse) { if (canNavigate) { listView.currentIndex = index //listView.focus = true } }*/ } } ActionMenu { id: actionMenu onActionClicked: { visualParent.actionTriggered(actionId, actionArgument); //root.toggle() } } }