refractor quick toggles data, add volume slider for waffles action center

This commit is contained in:
end-4
2025-11-17 23:43:25 +01:00
parent 9228165428
commit fcee7ce6f9
55 changed files with 939 additions and 470 deletions
@@ -0,0 +1,22 @@
import QtQuick
QtObject {
// Textual info
required property string name
property string statusText
property string tooltipText: ""
property string icon: "close"
// State
property bool hasStatusText: true
property bool available: true
property bool toggled: false
// Interactions
required property var mainAction
property bool hasMenu: false
property var altAction: null
// Allow stuff like Processes to be declared freely
default property list<QtObject> data
}