TheĀ MasterLayout class handles the desktop and taskbar states layout states. The same action that is performed via the toggle desktop home button in the top left corner after login.
The class can be used to get the current active Master Layout and to switch between desktop and taskbar modes.
Examples:
akioma.swat.MasterLayout.setMasterState("taskbar-mode"); // can also be "desktop-mode" |
akioma.swat.MasterLayout.toggleDesktop(true); |
const MasterState:DesktopMode = akioma.swat.MasterLayout.getMasterState(); // can return "desktop-mode" or "taskbar-mode" |
const window: akioma.swat.Window = akioma.swat.MasterLayout.findWindowById(windowId); |
const windows: Array<akioma.swat.Window> = akioma.swat.MasterLayout.findWindowsByName(windowName); |