/* SPDX-FileCopyrightText: 2013 Sebastian Kügler SPDX-FileCopyrightText: 2014 Martin Gräßlin SPDX-FileCopyrightText: 2016 Kai Uwe Broulik SPDX-FileCopyrightText: 2017 Roman Gilg SPDX-FileCopyrightText: 2024 Nate Graham SPDX-License-Identifier: LGPL-2.0-or-later */ pragma ComponentBehavior: Bound import QtQml.Models import QtQuick import QtQuick.Layouts import org.kde.plasma.core as PlasmaCore import org.kde.plasma.components as PlasmaComponents3 import org.kde.plasma.private.mpris as Mpris import org.kde.kirigami as Kirigami import org.kde.plasma.plasmoid Loader { id: toolTipDelegate property Task parentTask property /*QModelIndex*/var rootIndex property string appName property int pidParent property bool isGroup property /*list where WId = int|string*/ var windows: [] readonly property bool isWin: windows.length > 0 property /*QIcon*/ var icon property url launcherUrl property bool isLauncher property bool isMinimized // Needed for generateSubtext() property string display property string genericName property /*list*/ var virtualDesktops: [] // Can't use list because of QTBUG-127600 property bool isOnAllVirtualDesktops property list activities: [] property bool smartLauncherCountVisible property int smartLauncherCount property bool blockingUpdates: false readonly property bool isVerticalPanel: Plasmoid.formFactor === PlasmaCore.Types.Vertical // This number controls the overall size of the window tooltips readonly property int tooltipInstanceMaximumWidth: Kirigami.Units.gridUnit * 16 // These properties are required to make tooltip interactive when there is a player but no window is present. readonly property Mpris.PlayerContainer playerData: mpris2Source.playerForLauncherUrl(launcherUrl, pidParent) LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft LayoutMirroring.childrenInherit: true active: !blockingUpdates && rootIndex !== undefined && ((parentTask && parentTask.containsMouse) || Window.visibility !== Window.Hidden) asynchronous: true sourceComponent: isGroup ? groupToolTip : singleTooltip Component { id: singleTooltip ToolTipInstance { index: 0 // TODO: maybe set to -1, because that's what the component checks against? submodelIndex: toolTipDelegate.rootIndex appPid: toolTipDelegate.pidParent display: toolTipDelegate.display isMinimized: toolTipDelegate.isMinimized isOnAllVirtualDesktops: toolTipDelegate.isOnAllVirtualDesktops virtualDesktops: toolTipDelegate.virtualDesktops activities: toolTipDelegate.activities } } Component { id: groupToolTip PlasmaComponents3.ScrollView { // 2 * Kirigami.Units.smallSpacing is for the margin of tooltipDialog implicitWidth: leftPadding + rightPadding + Math.min(Screen.desktopAvailableWidth - 2 * Kirigami.Units.smallSpacing, Math.max(delegateModel.estimatedWidth, contentItem.contentItem.childrenRect.width)) implicitHeight: bottomPadding + Math.min(Screen.desktopAvailableHeight - 2 * Kirigami.Units.smallSpacing, Math.max(delegateModel.estimatedHeight, contentItem.contentItem.childrenRect.height)) ListView { id: groupToolTipListView model: delegateModel orientation: isVerticalPanel || !Plasmoid.configuration.showToolTips ? ListView.Vertical : ListView.Horizontal reuseItems: true // Lots of spacing with no thumbnails looks bad spacing: Plasmoid.configuration.showToolTips ? Kirigami.Units.gridUnit : 0 // Required to know whether to display the media player buttons on the first window or not property bool hasTrackInATitle: { var found = false for (var i=0; i