2022-03-16 21:37:21 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2022-03-17 16:56:33 +01:00
|
|
|
#include <deque>
|
2022-03-18 22:35:51 +01:00
|
|
|
#include <list>
|
2022-03-16 21:37:21 +01:00
|
|
|
|
|
|
|
#include "defines.hpp"
|
|
|
|
#include "debug/Log.hpp"
|
|
|
|
#include "events/Events.hpp"
|
2022-03-17 15:53:45 +01:00
|
|
|
#include "config/ConfigManager.hpp"
|
2022-03-18 20:03:39 +01:00
|
|
|
#include "managers/ThreadManager.hpp"
|
|
|
|
#include "managers/XWaylandManager.hpp"
|
|
|
|
#include "managers/InputManager.hpp"
|
2022-03-17 16:56:33 +01:00
|
|
|
#include "helpers/Monitor.hpp"
|
2022-03-17 20:22:29 +01:00
|
|
|
#include "Window.hpp"
|
|
|
|
#include "render/Renderer.hpp"
|
2022-03-16 21:37:21 +01:00
|
|
|
|
|
|
|
class CCompositor {
|
|
|
|
public:
|
|
|
|
CCompositor();
|
|
|
|
~CCompositor();
|
|
|
|
|
|
|
|
// ------------------ WLR BASICS ------------------ //
|
|
|
|
wl_display* m_sWLDisplay;
|
|
|
|
wlr_backend* m_sWLRBackend;
|
|
|
|
wlr_renderer* m_sWLRRenderer;
|
|
|
|
wlr_allocator* m_sWLRAllocator;
|
|
|
|
wlr_compositor* m_sWLRCompositor;
|
2022-03-17 19:03:15 +01:00
|
|
|
wlr_subcompositor* m_sWLRSubCompositor;
|
|
|
|
wlr_data_device_manager* m_sWLRDataDevMgr;
|
2022-03-16 21:37:21 +01:00
|
|
|
wlr_xdg_activation_v1* m_sWLRXDGActivation;
|
|
|
|
wlr_output_layout* m_sWLROutputLayout;
|
|
|
|
wlr_idle* m_sWLRIdle;
|
|
|
|
wlr_layer_shell_v1* m_sWLRLayerShell;
|
|
|
|
wlr_xdg_shell* m_sWLRXDGShell;
|
|
|
|
wlr_cursor* m_sWLRCursor;
|
|
|
|
wlr_xcursor_manager* m_sWLRXCursorMgr;
|
|
|
|
wlr_virtual_keyboard_manager_v1* m_sWLRVKeyboardMgr;
|
|
|
|
wlr_seat* m_sWLRSeat;
|
|
|
|
wlr_output_manager_v1* m_sWLROutputMgr;
|
|
|
|
wlr_presentation* m_sWLRPresentation;
|
2022-03-17 19:03:15 +01:00
|
|
|
wlr_scene* m_sWLRScene;
|
2022-03-16 21:37:21 +01:00
|
|
|
// ------------------------------------------------- //
|
|
|
|
|
|
|
|
|
|
|
|
const char* m_szWLDisplaySocket;
|
|
|
|
|
2022-03-18 22:35:51 +01:00
|
|
|
std::list<SMonitor> m_lMonitors;
|
|
|
|
std::list<CWindow> m_lWindows;
|
2022-03-17 16:56:33 +01:00
|
|
|
|
|
|
|
void startCompositor();
|
2022-03-17 20:22:29 +01:00
|
|
|
|
2022-03-18 22:53:27 +01:00
|
|
|
CWindow* m_pLastFocus = nullptr;
|
|
|
|
|
2022-03-17 20:22:29 +01:00
|
|
|
|
|
|
|
// ------------------------------------------------- //
|
|
|
|
|
|
|
|
SMonitor* getMonitorFromID(const int&);
|
|
|
|
SMonitor* getMonitorFromCursor();
|
2022-03-18 22:35:51 +01:00
|
|
|
void removeWindowFromVectorSafe(CWindow*);
|
2022-03-18 22:53:27 +01:00
|
|
|
void focusWindow(CWindow*);
|
|
|
|
bool windowExists(CWindow*);
|
|
|
|
CWindow* vectorToWindow(const Vector2D&);
|
2022-03-16 21:37:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
inline std::unique_ptr<CCompositor> g_pCompositor;
|