mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-09-14 23:38:22 +00:00

* Window storage rework - part 1 * format * remove useless include * fix pch * format * fix crash in dwindle * fix vram leak * prefer .expired() for bool checks
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <optional>
|
|
|
|
class CWindow; // because clangd
|
|
typedef SP<CWindow> PHLWINDOW;
|
|
|
|
class CHyprXWaylandManager {
|
|
public:
|
|
CHyprXWaylandManager();
|
|
~CHyprXWaylandManager();
|
|
|
|
wlr_xwayland* m_sWLRXWayland = nullptr;
|
|
|
|
wlr_surface* getWindowSurface(PHLWINDOW);
|
|
void activateSurface(wlr_surface*, bool);
|
|
void activateWindow(PHLWINDOW, bool);
|
|
void getGeometryForWindow(PHLWINDOW, CBox*);
|
|
std::string getTitle(PHLWINDOW);
|
|
std::string getAppIDClass(PHLWINDOW);
|
|
void sendCloseWindow(PHLWINDOW);
|
|
void setWindowSize(PHLWINDOW, Vector2D, bool force = false);
|
|
void setWindowStyleTiled(PHLWINDOW, uint32_t);
|
|
void setWindowFullscreen(PHLWINDOW, bool);
|
|
wlr_surface* surfaceAt(PHLWINDOW, const Vector2D&, Vector2D&);
|
|
bool shouldBeFloated(PHLWINDOW, bool pending = false);
|
|
void moveXWaylandWindow(PHLWINDOW, const Vector2D&);
|
|
void checkBorders(PHLWINDOW);
|
|
Vector2D getMaxSizeForWindow(PHLWINDOW);
|
|
Vector2D getMinSizeForWindow(PHLWINDOW);
|
|
Vector2D xwaylandToWaylandCoords(const Vector2D&);
|
|
};
|
|
|
|
inline std::unique_ptr<CHyprXWaylandManager> g_pXWaylandManager; |