mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-27 18:03:48 -07:00
28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <optional>
|
|
|
|
class CWindow; // because clangd
|
|
typedef SP<CWindow> PHLWINDOW;
|
|
class CWLSurfaceResource;
|
|
|
|
class CHyprXWaylandManager {
|
|
public:
|
|
CHyprXWaylandManager();
|
|
~CHyprXWaylandManager();
|
|
|
|
SP<CWLSurfaceResource> getWindowSurface(PHLWINDOW);
|
|
void activateSurface(SP<CWLSurfaceResource>, bool);
|
|
void activateWindow(PHLWINDOW, bool);
|
|
void getGeometryForWindow(PHLWINDOW, CBox*);
|
|
void sendCloseWindow(PHLWINDOW);
|
|
void setWindowSize(PHLWINDOW, Vector2D, bool force = false);
|
|
void setWindowFullscreen(PHLWINDOW, bool);
|
|
bool shouldBeFloated(PHLWINDOW, bool pending = false);
|
|
void checkBorders(PHLWINDOW);
|
|
Vector2D xwaylandToWaylandCoords(const Vector2D&);
|
|
Vector2D waylandToXWaylandCoords(const Vector2D&);
|
|
};
|
|
|
|
inline std::unique_ptr<CHyprXWaylandManager> g_pXWaylandManager; |