mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-24 07:45:59 +01:00
add getCurrentLayout to CWorkspace
This commit is contained in:
parent
3eaf35f1e2
commit
f4cf68f4ba
2 changed files with 16 additions and 9 deletions
|
@ -1,6 +1,7 @@
|
||||||
#include "Workspace.hpp"
|
#include "Workspace.hpp"
|
||||||
#include "../Compositor.hpp"
|
#include "../Compositor.hpp"
|
||||||
#include "../config/ConfigValue.hpp"
|
#include "../config/ConfigValue.hpp"
|
||||||
|
#include "managers/LayoutManager.hpp"
|
||||||
|
|
||||||
#include <hyprutils/string/String.hpp>
|
#include <hyprutils/string/String.hpp>
|
||||||
using namespace Hyprutils::String;
|
using namespace Hyprutils::String;
|
||||||
|
@ -508,3 +509,7 @@ void CWorkspace::markInert() {
|
||||||
bool CWorkspace::inert() {
|
bool CWorkspace::inert() {
|
||||||
return m_bInert;
|
return m_bInert;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IHyprLayout* CWorkspace::getCurrentLayout() {
|
||||||
|
return g_pLayoutManager->getCurrentLayout();
|
||||||
|
}
|
||||||
|
|
|
@ -79,6 +79,8 @@ class CWorkspace {
|
||||||
|
|
||||||
void markInert();
|
void markInert();
|
||||||
|
|
||||||
|
IHyprLayout* getCurrentLayout();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void init(PHLWORKSPACE self);
|
void init(PHLWORKSPACE self);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue