1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-05 13:08:29 -04:00

ipc/dash: add openAt/toggleAt for opening popouts at specific locations

fixes #2932
This commit is contained in:
bbedward
2026-07-26 14:37:17 -04:00
parent 24cb3d19a0
commit eed3617a0d
3 changed files with 124 additions and 62 deletions
+9 -2
View File
@@ -20,14 +20,21 @@ PanelWindow {
readonly property int barPos: body.barPos
readonly property bool barRevealed: body.barRevealed
property alias controlCenterButtonRef: body.controlCenterButtonRef
property alias clockButtonRef: body.clockButtonRef
property alias systemUpdateButtonRef: body.systemUpdateButtonRef
function triggerSystemUpdate() {
body.triggerSystemUpdate();
}
function triggerControlCenter() {
body.triggerControlCenter();
}
function triggerDashTab(tabId) {
body.triggerDashTab(tabId);
function triggerDashTab(tabId, position) {
return body.triggerDashTab(tabId, position);
}
function positionDash(popout, position) {
return body.positionDash(popout, position);
}
function triggerWallpaperBrowser() {
body.triggerWallpaperBrowser();