mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 22:05:58 +01:00
59 lines
No EOL
1.6 KiB
C++
59 lines
No EOL
1.6 KiB
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <vector>
|
|
#include "WLSurface.hpp"
|
|
|
|
class CWindow;
|
|
class CPopup;
|
|
|
|
class CSubsurface {
|
|
public:
|
|
// root dummy nodes
|
|
CSubsurface(CWindow* pOwner);
|
|
CSubsurface(CPopup* pOwner);
|
|
|
|
// real nodes
|
|
CSubsurface(wlr_subsurface* pSubsurface, CWindow* pOwner);
|
|
CSubsurface(wlr_subsurface* pSubsurface, CPopup* pOwner);
|
|
|
|
~CSubsurface();
|
|
|
|
Vector2D coordsRelativeToParent();
|
|
Vector2D coordsGlobal();
|
|
|
|
Vector2D size();
|
|
|
|
void onCommit();
|
|
void onDestroy();
|
|
void onNewSubsurface(wlr_subsurface* pSubsurface);
|
|
void onMap();
|
|
void onUnmap();
|
|
|
|
void recheckDamageForSubsurfaces();
|
|
|
|
private:
|
|
DYNLISTENER(destroySubsurface);
|
|
DYNLISTENER(commitSubsurface);
|
|
DYNLISTENER(newSubsurface);
|
|
DYNLISTENER(mapSubsurface);
|
|
DYNLISTENER(unmapSubsurface);
|
|
|
|
wlr_subsurface* m_pSubsurface = nullptr;
|
|
CWLSurface m_sWLSurface;
|
|
Vector2D m_vLastSize = {};
|
|
|
|
// if nullptr, means it's a dummy node
|
|
CSubsurface* m_pParent = nullptr;
|
|
|
|
CWindow* m_pWindowParent = nullptr;
|
|
CPopup* m_pPopupParent = nullptr;
|
|
|
|
std::vector<std::unique_ptr<CSubsurface>> m_vChildren;
|
|
|
|
bool m_bInert = false;
|
|
|
|
void initSignals();
|
|
void initExistingSubsurfaces(wlr_surface* pSurface);
|
|
void checkSiblingDamage();
|
|
}; |