change to lists, titles etc

This commit is contained in:
vaxerski
2022-03-18 22:35:51 +01:00
parent 00098aef4f
commit a1a8f3b6d5
8 changed files with 128 additions and 37 deletions

View File

@@ -3,6 +3,7 @@
#include "../defines.hpp"
#include <deque>
#include "WLClasses.hpp"
#include <list>
struct SMonitor {
Vector2D vecPosition = Vector2D(0,0);
@@ -20,8 +21,16 @@ struct SMonitor {
// WLR stuff
wlr_output* output = nullptr;
std::deque<SLayerSurface> m_dLayerSurfaces;
// Double-linked list because we need to have constant mem addresses for signals
std::list<SLayerSurface> m_lLayerSurfaces;
DYNLISTENER(monitorFrame);
DYNLISTENER(monitorDestroy);
// For the list lookup
bool operator==(const SMonitor& rhs) {
return vecPosition == rhs.vecPosition && vecSize == rhs.vecSize && szName == rhs.szName;
}
};