1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/*
SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.1
import QtQuick.Layouts 1.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.plasmoid 2.0
//SystemTray is a Containment. To have it presented as a widget in Plasma we need thin wrapping applet
Item {
id: root
Layout.minimumWidth: internalSystray ? internalSystray.Layout.minimumWidth : 0
Layout.minimumHeight: internalSystray ? internalSystray.Layout.minimumHeight : 0
Layout.preferredWidth: Layout.minimumWidth
Layout.preferredHeight: Layout.minimumHeight
Plasmoid.preferredRepresentation: Plasmoid.fullRepresentation
Plasmoid.status: internalSystray ? internalSystray.status : PlasmaCore.Types.UnknownStatus
//synchronize state between SystemTray and wrapping Applet
Plasmoid.onExpandedChanged: {
if (internalSystray) {
internalSystray.expanded = Plasmoid.expanded
}
}
Connections {
target: internalSystray
function onExpandedChanged() {
Plasmoid.expanded = internalSystray.expanded
}
}
property Item internalSystray
Component.onCompleted: {
root.internalSystray = Plasmoid.nativeInterface.internalSystray;
if (root.internalSystray == null) {
return;
}
root.internalSystray.parent = root;
root.internalSystray.anchors.fill = root;
}
Connections {
target: Plasmoid.nativeInterface
function onInternalSystrayChanged() {
root.internalSystray = Plasmoid.nativeInterface.internalSystray;
root.internalSystray.parent = root;
root.internalSystray.anchors.fill = root;
}
}
}
|