mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
23 lines
548 B
QML
23 lines
548 B
QML
/*
|
|
SPDX-FileCopyrightText: 2020 Konrad Materka <materka@gmail.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
|
|
Loader {
|
|
id: itemLoader
|
|
|
|
property var itemModel: model
|
|
|
|
source: {
|
|
if (model.itemType === "Plasmoid" && model.hasApplet) {
|
|
return "PlasmoidItem.qml"
|
|
} else if (model.itemType === "StatusNotifier") {
|
|
return "StatusNotifierItem.qml"
|
|
}
|
|
console.warn("SystemTray ItemLoader: Invalid state, cannot determine source!")
|
|
return ""
|
|
}
|
|
}
|