Hypr/src/defines.hpp

61 lines
1.8 KiB
C++
Raw Normal View History

#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
2021-11-21 17:40:02 +01:00
#include <xcb/randr.h>
#include <xcb/xcb.h>
2021-11-21 17:40:02 +01:00
#include <xcb/xcb_ewmh.h>
#include <xcb/xcb_icccm.h>
#include <xcb/xcb_keysyms.h>
2021-11-23 22:15:36 +01:00
#include <xcb/xcb_atom.h>
#include <xcb/xcb_aux.h>
#include <xcb/xinerama.h>
#include <xcb/xcb_event.h>
#include <xcb/xcb_util.h>
2021-11-25 17:57:50 +01:00
#include <xcb/xcb_cursor.h>
2021-11-20 09:25:21 +01:00
#include <memory>
2021-11-21 17:40:02 +01:00
#include <string>
#include <algorithm>
#include <map>
#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-21 17:40:02 +01:00
#define STICKS(a, b) abs((a) - (b)) < 2
2021-11-22 22:37:01 +01:00
#define VECINRECT(vec, x1, y1, x2, y2) (vec.x >= (x1) && vec.x <= (x2) && vec.y >= (y1) && vec.y <= (y2))
#define XCBQUERYCHECK(name, query, errormsg) \
2021-11-23 16:24:31 +01:00
xcb_generic_error_t* error##name; \
2021-11-22 22:37:01 +01:00
const auto name = query; \
\
2021-11-23 16:24:31 +01:00
if (error##name != NULL) { \
2021-11-22 22:37:01 +01:00
Debug::log(ERR, errormsg); \
2021-11-23 16:24:31 +01:00
free(error##name); \
2021-11-22 22:37:01 +01:00
free(name); \
return; \
} \
2021-11-23 16:24:31 +01:00
free(error##name);
#define VECTORDELTANONZERO(veca, vecb) ((int)abs(veca.x - vecb.x) > 0 || (int)abs(veca.y - vecb.y) > 0)
2021-11-23 22:15:36 +01:00
#define PROP(cookie, name, len) const auto cookie = xcb_get_property(DisplayConnection, false, window, name, XCB_GET_PROPERTY_TYPE_ANY, 0, len); \
const auto cookie##reply = xcb_get_property_reply(DisplayConnection, cookie, NULL)
2021-11-25 16:51:09 +01:00
#define HYPRATOM(name) {name, 0}