96 lines
2.5 KiB
C++
96 lines
2.5 KiB
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "Subsurface.hpp"
|
|
#include "../helpers/signal/Signal.hpp"
|
|
#include "../helpers/memory/Memory.hpp"
|
|
#include "../helpers/AnimatedVariable.hpp"
|
|
|
|
class CXDGPopupResource;
|
|
|
|
class CPopup {
|
|
public:
|
|
// dummy head nodes
|
|
static UP<CPopup> create(PHLWINDOW pOwner);
|
|
static UP<CPopup> create(PHLLS pOwner);
|
|
|
|
// real nodes
|
|
static UP<CPopup> create(SP<CXDGPopupResource> popup, WP<CPopup> pOwner);
|
|
|
|
~CPopup();
|
|
|
|
SP<CWLSurface> getT1Owner();
|
|
Vector2D coordsRelativeToParent();
|
|
Vector2D coordsGlobal();
|
|
PHLMONITOR getMonitor();
|
|
|
|
Vector2D size();
|
|
|
|
void onNewPopup(SP<CXDGPopupResource> popup);
|
|
void onDestroy();
|
|
void onMap();
|
|
void onUnmap();
|
|
void onCommit(bool ignoreSiblings = false);
|
|
void onReposition();
|
|
|
|
void recheckTree();
|
|
|
|
bool visible();
|
|
bool inert() const;
|
|
|
|
// will also loop over this node
|
|
void breadthfirst(std::function<void(WP<CPopup>, void*)> fn, void* data);
|
|
WP<CPopup> at(const Vector2D& globalCoords, bool allowsInput = false);
|
|
|
|
//
|
|
SP<CWLSurface> m_wlSurface;
|
|
WP<CPopup> m_self;
|
|
bool m_mapped = false;
|
|
|
|
// fade in-out
|
|
PHLANIMVAR<float> m_alpha;
|
|
bool m_fadingOut = false;
|
|
|
|
private:
|
|
CPopup() = default;
|
|
|
|
// T1 owners, each popup has to have one of these
|
|
PHLWINDOWREF m_windowOwner;
|
|
PHLLSREF m_layerOwner;
|
|
|
|
// T2 owners
|
|
WP<CPopup> m_parent;
|
|
|
|
WP<CXDGPopupResource> m_resource;
|
|
|
|
Vector2D m_lastSize = {};
|
|
Vector2D m_lastPos = {};
|
|
|
|
bool m_requestedReposition = false;
|
|
|
|
bool m_inert = false;
|
|
|
|
//
|
|
std::vector<UP<CPopup>> m_children;
|
|
UP<CSubsurface> m_subsurfaceHead;
|
|
|
|
struct {
|
|
CHyprSignalListener newPopup;
|
|
CHyprSignalListener destroy;
|
|
CHyprSignalListener map;
|
|
CHyprSignalListener unmap;
|
|
CHyprSignalListener commit;
|
|
CHyprSignalListener dismissed;
|
|
CHyprSignalListener reposition;
|
|
} m_listeners;
|
|
|
|
void initAllSignals();
|
|
void reposition();
|
|
void recheckChildrenRecursive();
|
|
void sendScale();
|
|
void fullyDestroy();
|
|
|
|
Vector2D localToGlobal(const Vector2D& rel);
|
|
Vector2D t1ParentCoords();
|
|
static void bfHelper(std::vector<WP<CPopup>> const& nodes, std::function<void(WP<CPopup>, void*)> fn, void* data);
|
|
};
|