Files
hyprland-toggle-tiling/include/HyprlandService.h

20 lines
501 B
C
Raw Normal View History

2025-06-10 14:09:56 +02:00
#ifndef HYPRLAND_SERVICE_H
#define HYPRLAND_SERVICE_H
#include <list>
#include "Workspace.h"
#include "Client.h"
class HyprlandService {
public:
static Workspace getCurrentWorkspace();
static std::list<Client> getClients();
2025-06-10 14:55:42 +02:00
static std::list<Client> getClientsOnActiveWorkspace();
static void setFloatingRule(bool);
2025-06-10 14:55:42 +02:00
static void setClientFloating(Client&);
static void setClientTiled(Client&);
static void toggleClientFloating(Client&);
2025-06-10 16:45:58 +02:00
static bool isFloatingRulePresent();
2025-06-10 14:09:56 +02:00
};
#endif