1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-30 09:32:05 -04:00
Files
DankMaterialShell/quickshell/Widgets/PluginGlobalVar.qml
bbedward f76724f7cd logger: add a dedicated QML logging Singleton
- adds log.info/error/debug/warn/fatal
- adds ability to write logs to any file
- add CLI options in addition to env to set log levels
2026-04-29 15:42:30 -04:00

32 lines
762 B
QML

import QtQuick
import qs.Services
Item {
id: root
readonly property var log: Log.scoped("PluginGlobalVar")
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 {
log.warn("Cannot set", varName, "- no pluginId from parent");
}
}
visible: false
width: 0
height: 0
}