mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 14:45:58 +01:00
6967a31450
* wayland/core/dmabuf: move to new impl it's the final countdown
29 lines
No EOL
1.1 KiB
C++
29 lines
No EOL
1.1 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 getMaxSizeForWindow(PHLWINDOW);
|
|
Vector2D getMinSizeForWindow(PHLWINDOW);
|
|
Vector2D xwaylandToWaylandCoords(const Vector2D&);
|
|
};
|
|
|
|
inline std::unique_ptr<CHyprXWaylandManager> g_pXWaylandManager; |