syncthingtray/plasmoid/package5/contents/ui/ToolTipView.qml
Martchus 912dca1564 Port Plasmoid to Plasma 6
* Split QML part into distinct versions for Plasma 5 and 6 as there are too
  many differences and `#ifdef` is not possible
* Change API usage according to
  https://develop.kde.org/docs/plasma/widget/porting_kf6
* Port "contextualActions" to API documented on
  https://invent.kde.org/frameworks/plasma-framework/-/blob/master/src/plasma/applet.h
* Document testing
* Add FIXMEs/notes for remaining problems; there are likely many more,
  though
2023-07-13 01:01:02 +02:00

38 lines
1.1 KiB
QML

import QtQuick 2.0
import QtQuick.Layouts 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 3.0 as PlasmaComponents3
import org.kde.plasma.extras 2.0 as PlasmaExtras
RowLayout {
spacing: units.smallSpacing
PlasmaCore.IconItem {
id: tooltipIcon
source: plasmoid.nativeInterface.statusIcon
Layout.alignment: Qt.AlignCenter
visible: true
implicitWidth: units.iconSizes.large
Layout.topMargin: units.smallSpacing
Layout.leftMargin: units.smallSpacing
Layout.bottomMargin: units.smallSpacing
Layout.rightMargin: units.smallSpacing
Layout.preferredWidth: implicitWidth
Layout.preferredHeight: implicitWidth
}
ColumnLayout {
PlasmaExtras.Heading {
id: tooltipMaintext
level: 3
elide: Text.ElideRight
text: plasmoid.toolTipMainText
}
PlasmaComponents3.Label {
id: tooltipSubtext
text: plasmoid.toolTipSubText
opacity: 0.6
}
}
}