mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-20 12:50:14 +01:00
29 lines
844 B
C++
29 lines
844 B
C++
#include "LayoutManager.hpp"
|
|
|
|
IHyprLayout* CLayoutManager::getCurrentLayout() {
|
|
switch (m_iCurrentLayoutID) {
|
|
case DWINDLE: return &m_cDwindleLayout;
|
|
case MASTER: return &m_cMasterLayout;
|
|
}
|
|
|
|
// fallback
|
|
return &m_cDwindleLayout;
|
|
}
|
|
|
|
void CLayoutManager::switchToLayout(std::string layout) {
|
|
if (layout == "dwindle") {
|
|
if (m_iCurrentLayoutID != DWINDLE) {
|
|
getCurrentLayout()->onDisable();
|
|
m_iCurrentLayoutID = DWINDLE;
|
|
getCurrentLayout()->onEnable();
|
|
}
|
|
} else if (layout == "master") {
|
|
if (m_iCurrentLayoutID != MASTER) {
|
|
getCurrentLayout()->onDisable();
|
|
m_iCurrentLayoutID = MASTER;
|
|
getCurrentLayout()->onEnable();
|
|
}
|
|
} else {
|
|
Debug::log(ERR, "Unknown layout %s!", layout.c_str());
|
|
}
|
|
}
|