somebar/src/common.hpp

67 lines
1.7 KiB
C++
Raw Normal View History

2021-10-20 20:20:27 +02:00
// somebar - dwl bar
// See LICENSE file for copyright and license details.
#pragma once
2021-10-25 19:02:35 +02:00
#include <memory>
2021-10-27 17:24:47 +02:00
#include <string>
2021-10-24 19:04:29 +02:00
#include <vector>
2021-10-26 11:40:46 +02:00
#include <wayland-client.h>
#include <linux/input-event-codes.h>
2021-10-27 17:24:47 +02:00
#include <cairo/cairo.h>
#include <pango/pango.h>
2021-10-20 20:20:27 +02:00
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
2021-10-27 17:24:47 +02:00
struct Color {
2021-10-29 20:33:27 +02:00
Color() {}
constexpr Color(uint8_t r, uint8_t g, uint8_t b, uint8_t a=255) : r(r), g(g), b(b), a(a) { }
uint8_t r, g, b, a {255};
2021-10-27 17:24:47 +02:00
};
2021-10-26 11:40:46 +02:00
struct ColorScheme {
2021-10-29 20:33:27 +02:00
Color fg, bg;
2021-10-26 11:40:46 +02:00
};
union Arg {
unsigned int ui;
const void* v;
2021-10-26 11:40:46 +02:00
};
struct Monitor;
2021-10-29 22:22:58 +02:00
enum TagState { None, Active = 0x01, Urgent = 0x02 };
enum { ClkNone, ClkTagBar, ClkLayoutSymbol, ClkWinTitle, ClkStatusText };
struct Button {
int control;
int btn; // <linux/input-event-codes.h>
void (*func)(Monitor& mon, const Arg& arg);
const Arg arg;
};
extern wl_display* display;
extern wl_compositor* compositor;
extern wl_shm* shm;
extern zwlr_layer_shell_v1* wlrLayerShell;
2021-10-22 15:42:42 +02:00
void spawn(Monitor&, const Arg& arg);
[[noreturn]] void die(const char* why);
2021-10-26 11:40:46 +02:00
2021-10-25 19:02:35 +02:00
// wayland smart pointers
template<typename T>
struct wl_deleter;
#define WL_DELETER(type, fn) template<> struct wl_deleter<type> { \
2021-10-29 20:33:27 +02:00
void operator()(type* v) { if(v) fn(v); } \
}
2021-10-25 19:02:35 +02:00
template<typename T>
using wl_unique_ptr = std::unique_ptr<T, wl_deleter<T>>;
WL_DELETER(wl_buffer, wl_buffer_destroy);
WL_DELETER(wl_output, wl_output_release);
2021-10-26 12:59:41 +02:00
WL_DELETER(wl_pointer, wl_pointer_release);
WL_DELETER(wl_seat, wl_seat_release);
WL_DELETER(wl_surface, wl_surface_destroy);
WL_DELETER(zwlr_layer_surface_v1, zwlr_layer_surface_v1_destroy);
2021-10-27 17:24:47 +02:00
WL_DELETER(cairo_t, cairo_destroy);
WL_DELETER(cairo_surface_t, cairo_surface_destroy);
WL_DELETER(PangoContext, g_object_unref);
WL_DELETER(PangoLayout, g_object_unref);