mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
31 lines
716 B
QML
31 lines
716 B
QML
import QtQuick
|
|
import qs.Services
|
|
|
|
Item {
|
|
id: root
|
|
|
|
required property string varName
|
|
property var defaultValue: undefined
|
|
|
|
readonly property var value: {
|
|
const pid = parent?.pluginId ?? ""
|
|
if (!pid || !PluginService.globalVars[pid]) {
|
|
return defaultValue
|
|
}
|
|
return PluginService.globalVars[pid][varName] ?? defaultValue
|
|
}
|
|
|
|
function set(newValue) {
|
|
const pid = parent?.pluginId ?? ""
|
|
if (pid) {
|
|
PluginService.setGlobalVar(pid, varName, newValue)
|
|
} else {
|
|
console.warn("PluginGlobalVar: Cannot set", varName, "- no pluginId from parent")
|
|
}
|
|
}
|
|
|
|
visible: false
|
|
width: 0
|
|
height: 0
|
|
}
|