Merge pull request #2968 from jramrath/hyprland_workspaces_monitor_class

Hyprland workspaces `hosting-monitor` css class
This commit is contained in:
Alexis Rouillard
2024-03-17 13:06:50 +01:00
committed by GitHub
3 changed files with 14 additions and 0 deletions

View File

@ -85,6 +85,7 @@ class Workspace {
void setVisible(bool value = true) { m_isVisible = value; };
void setWindows(uint value) { m_windows = value; };
void setName(std::string const& value) { m_name = value; };
void setOutput(std::string const& value) { m_output = value; };
bool containsWindow(WindowAddress const& addr) const { return m_windowMap.contains(addr); }
void insertWindow(WindowCreationPayload create_window_paylod);
std::string removeWindow(WindowAddress const& addr);