mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-24 02:49:48 +01:00
016da234d0
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
57 lines
No EOL
1.4 KiB
C++
57 lines
No EOL
1.4 KiB
C++
#pragma once
|
|
|
|
#include <condition_variable>
|
|
#include <mutex>
|
|
#include <thread>
|
|
#include <wayland-server.h>
|
|
|
|
#include "EventLoopTimer.hpp"
|
|
|
|
namespace Aquamarine {
|
|
struct SPollFD;
|
|
};
|
|
|
|
class CEventLoopManager {
|
|
public:
|
|
CEventLoopManager(wl_display* display, wl_event_loop* wlEventLoop);
|
|
~CEventLoopManager();
|
|
|
|
void enterLoop();
|
|
|
|
// Note: will remove the timer if the ptr is lost.
|
|
void addTimer(SP<CEventLoopTimer> timer);
|
|
void removeTimer(SP<CEventLoopTimer> timer);
|
|
|
|
void onTimerFire();
|
|
|
|
// recalculates timers
|
|
void nudgeTimers();
|
|
|
|
// schedules a function to run later, aka in a wayland idle event.
|
|
void doLater(const std::function<void()>& fn);
|
|
|
|
struct SIdleData {
|
|
wl_event_source* eventSource = nullptr;
|
|
std::vector<std::function<void()>> fns;
|
|
};
|
|
|
|
private:
|
|
struct {
|
|
wl_event_loop* loop = nullptr;
|
|
wl_display* display = nullptr;
|
|
wl_event_source* eventSource = nullptr;
|
|
std::vector<wl_event_source*> aqEventSources;
|
|
} m_sWayland;
|
|
|
|
struct {
|
|
std::vector<SP<CEventLoopTimer>> timers;
|
|
int timerfd = -1;
|
|
} m_sTimers;
|
|
|
|
SIdleData m_sIdle;
|
|
std::vector<SP<Aquamarine::SPollFD>> aqPollFDs;
|
|
|
|
friend class CSyncTimeline;
|
|
};
|
|
|
|
inline std::unique_ptr<CEventLoopManager> g_pEventLoopManager; |