mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-14 07:25:58 +01:00
6967a31450
* wayland/core/dmabuf: move to new impl it's the final countdown
67 lines
No EOL
1.8 KiB
C++
67 lines
No EOL
1.8 KiB
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <vector>
|
|
#include "WLSurface.hpp"
|
|
|
|
class CPopup;
|
|
class CWLSubsurfaceResource;
|
|
|
|
class CSubsurface {
|
|
public:
|
|
// root dummy nodes
|
|
CSubsurface(PHLWINDOW pOwner);
|
|
CSubsurface(CPopup* pOwner);
|
|
|
|
// real nodes
|
|
CSubsurface(SP<CWLSubsurfaceResource> pSubsurface, PHLWINDOW pOwner);
|
|
CSubsurface(SP<CWLSubsurfaceResource> pSubsurface, CPopup* pOwner);
|
|
|
|
~CSubsurface();
|
|
|
|
Vector2D coordsRelativeToParent();
|
|
Vector2D coordsGlobal();
|
|
|
|
Vector2D size();
|
|
|
|
void onCommit();
|
|
void onDestroy();
|
|
void onNewSubsurface(SP<CWLSubsurfaceResource> pSubsurface);
|
|
void onMap();
|
|
void onUnmap();
|
|
|
|
bool visible();
|
|
|
|
void recheckDamageForSubsurfaces();
|
|
|
|
private:
|
|
DYNLISTENER(destroySubsurface);
|
|
DYNLISTENER(commitSubsurface);
|
|
DYNLISTENER(newSubsurface);
|
|
|
|
struct {
|
|
CHyprSignalListener destroySubsurface;
|
|
CHyprSignalListener commitSubsurface;
|
|
CHyprSignalListener mapSubsurface;
|
|
CHyprSignalListener unmapSubsurface;
|
|
CHyprSignalListener newSubsurface;
|
|
} listeners;
|
|
|
|
WP<CWLSubsurfaceResource> m_pSubsurface;
|
|
SP<CWLSurface> m_pWLSurface;
|
|
Vector2D m_vLastSize = {};
|
|
|
|
// if nullptr, means it's a dummy node
|
|
CSubsurface* m_pParent = nullptr;
|
|
|
|
PHLWINDOWREF m_pWindowParent;
|
|
CPopup* m_pPopupParent = nullptr;
|
|
|
|
std::vector<std::unique_ptr<CSubsurface>> m_vChildren;
|
|
|
|
bool m_bInert = false;
|
|
|
|
void initSignals();
|
|
void initExistingSubsurfaces(SP<CWLSurfaceResource> pSurface);
|
|
void checkSiblingDamage();
|
|
}; |