Hyprland/src/managers/eventLoop/EventLoopManager.hpp

35 lines
770 B
C++
Raw Normal View History

#pragma once
#include <condition_variable>
#include <mutex>
#include <thread>
#include <wayland-server.h>
#include "EventLoopTimer.hpp"
class CEventLoopManager {
public:
CEventLoopManager();
2024-04-08 16:33:02 +02:00
void enterLoop(wl_display* display, wl_event_loop* wlEventLoop);
void addTimer(SP<CEventLoopTimer> timer);
void removeTimer(SP<CEventLoopTimer> timer);
void onTimerFire();
// recalculates timers
void nudgeTimers();
private:
struct {
wl_event_loop* loop = nullptr;
wl_display* display = nullptr;
} m_sWayland;
struct {
std::vector<SP<CEventLoopTimer>> timers;
int timerfd = -1;
} m_sTimers;
};
inline std::unique_ptr<CEventLoopManager> g_pEventLoopManager;