Hypr/src/events/events.hpp

21 lines
366 B
C++
Raw Normal View History

2021-11-21 11:25:26 +01:00
#include <inttypes.h>
#include <thread>
#include "../windowManager.hpp"
namespace Events {
EVENT(Enter);
2021-11-18 22:08:28 +01:00
EVENT(Leave);
EVENT(Destroy);
EVENT(MapWindow);
2021-11-19 20:20:05 +01:00
EVENT(KeyPress);
2021-11-21 11:25:26 +01:00
EVENT(Expose);
// A thread to notify xcb to redraw our shiz
void redraw();
void setThread();
inline timer_t timerid;
};