2021-11-18 18:04:09 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_keysyms.h>
|
|
|
|
|
|
|
|
#include <string>
|
2021-11-20 09:25:21 +01:00
|
|
|
#include <memory>
|
2021-11-18 18:04:09 +01:00
|
|
|
|
|
|
|
#include "./helpers/Vector.hpp"
|
|
|
|
|
|
|
|
#include "./utilities/Debug.hpp"
|
|
|
|
|
|
|
|
#define EXPOSED_MEMBER(var, type, prefix) \
|
|
|
|
private: \
|
|
|
|
type m_##prefix##var; \
|
|
|
|
public: \
|
|
|
|
type get##var() { return this->m_##prefix##var; } \
|
|
|
|
void set##var(type value) { this->m_##prefix##var = value; }
|
|
|
|
|
|
|
|
|
|
|
|
#define EVENT(name) \
|
|
|
|
void event##name(xcb_generic_event_t* event);
|
|
|
|
|
2021-11-19 22:29:44 +01:00
|
|
|
#define STICKS(a, b) abs((a) - (b)) < 2
|