* reworked fullscreen mode as transforming shell * controlcenter configuring of toasts & notifs * fix animation on fs switch * border rounding & shadow animation * change controlcenter notifications layout * stay on WlrLayer.Overlay, use Anim * ci: update action versions * qmlformat * format take two * third time's the charm * fix: special workspace fullscreen * fix: bar width border.thickness on non-persistent behaviour * merge fix * stop layout shift on close * last few conventions sorted * linting * maximized state to fullscreen --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
98 lines
3.2 KiB
QML
98 lines
3.2 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
readonly property list<QtObject> panes: [
|
|
QtObject {
|
|
readonly property string id: "network"
|
|
readonly property string label: "network"
|
|
readonly property string icon: "router"
|
|
readonly property string component: "network/NetworkingPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "bluetooth"
|
|
readonly property string label: "bluetooth"
|
|
readonly property string icon: "settings_bluetooth"
|
|
readonly property string component: "bluetooth/BtPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "audio"
|
|
readonly property string label: "audio"
|
|
readonly property string icon: "volume_up"
|
|
readonly property string component: "audio/AudioPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "appearance"
|
|
readonly property string label: "appearance"
|
|
readonly property string icon: "palette"
|
|
readonly property string component: "appearance/AppearancePane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "taskbar"
|
|
readonly property string label: "taskbar"
|
|
readonly property string icon: "task_alt"
|
|
readonly property string component: "taskbar/TaskbarPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "notifications"
|
|
readonly property string label: "notifications"
|
|
readonly property string icon: "notifications"
|
|
readonly property string component: "notifications/NotificationsPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "launcher"
|
|
readonly property string label: "launcher"
|
|
readonly property string icon: "apps"
|
|
readonly property string component: "launcher/LauncherPane.qml"
|
|
},
|
|
QtObject {
|
|
readonly property string id: "dashboard"
|
|
readonly property string label: "dashboard"
|
|
readonly property string icon: "dashboard"
|
|
readonly property string component: "dashboard/DashboardPane.qml"
|
|
}
|
|
]
|
|
|
|
readonly property int count: panes.length
|
|
|
|
readonly property var labels: {
|
|
const result = [];
|
|
for (let i = 0; i < panes.length; i++) {
|
|
result.push(panes[i].label);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function getByIndex(index: int): var {
|
|
if (index >= 0 && index < panes.length) {
|
|
return panes[index];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function getIndexByLabel(label: string): int {
|
|
for (let i = 0; i < panes.length; i++) {
|
|
if (panes[i].label === label) {
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
function getByLabel(label: string): var {
|
|
const index = getIndexByLabel(label);
|
|
return getByIndex(index);
|
|
}
|
|
|
|
function getById(id: string): var {
|
|
for (let i = 0; i < panes.length; i++) {
|
|
if (panes[i].id === id) {
|
|
return panes[i];
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|