2021-10-20 18:20:27 +00:00
|
|
|
// somebar - dwl bar
|
|
|
|
// See LICENSE file for copyright and license details.
|
|
|
|
|
|
|
|
#pragma once
|
2021-10-25 17:02:35 +00:00
|
|
|
#include <memory>
|
2021-10-24 17:04:29 +00:00
|
|
|
#include <vector>
|
2021-10-26 09:40:46 +00:00
|
|
|
#include <wayland-client.h>
|
|
|
|
#include <linux/input-event-codes.h>
|
2021-10-22 13:42:42 +00:00
|
|
|
#include <QColor>
|
2021-10-24 17:04:29 +00:00
|
|
|
#include <QString>
|
2021-10-20 18:20:27 +00:00
|
|
|
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
|
2021-10-25 17:02:35 +00:00
|
|
|
#include "net-tapesoftware-dwl-wm-unstable-v1-client-protocol.h"
|
2021-10-20 18:20:27 +00:00
|
|
|
|
2021-10-26 09:40:46 +00:00
|
|
|
struct ColorScheme {
|
|
|
|
QColor fg, bg;
|
|
|
|
};
|
|
|
|
union Arg {
|
|
|
|
int i;
|
|
|
|
unsigned int ui;
|
|
|
|
float f;
|
|
|
|
const void *v;
|
|
|
|
};
|
|
|
|
struct Monitor;
|
|
|
|
|
2021-10-20 18:20:27 +00:00
|
|
|
extern wl_display *display;
|
|
|
|
extern wl_compositor *compositor;
|
|
|
|
extern wl_shm *shm;
|
|
|
|
extern zwlr_layer_shell_v1 *wlrLayerShell;
|
2021-10-24 17:04:29 +00:00
|
|
|
extern std::vector<QString> tagNames;
|
2021-10-25 19:54:14 +00:00
|
|
|
extern std::vector<QString> layoutNames;
|
2021-10-22 13:42:42 +00:00
|
|
|
|
2021-10-26 09:40:46 +00:00
|
|
|
void toggleview(Monitor &m, const Arg &arg);
|
|
|
|
void view(Monitor &m, const Arg &arg);
|
|
|
|
void setlayout(Monitor &m, const Arg &arg);
|
|
|
|
|
|
|
|
enum class Control { None, TagBar, LayoutSymbol, WinTitle, StatusText };
|
|
|
|
struct Button {
|
|
|
|
Control control;
|
|
|
|
unsigned int modifiers; // todo xkbcommon
|
|
|
|
int btn; // <linux/input-event-codes.h>
|
|
|
|
void (*func)(Monitor &mon, const Arg &arg);
|
|
|
|
const Arg arg;
|
2021-10-22 13:42:42 +00:00
|
|
|
};
|
2021-10-25 17:02:35 +00:00
|
|
|
|
|
|
|
// wayland smart pointers
|
|
|
|
template<typename T>
|
|
|
|
struct wl_deleter;
|
|
|
|
#define WL_DELETER(type, fn) template<> struct wl_deleter<type> { void operator()(type *v) { if(v) fn(v); } }
|
|
|
|
|
|
|
|
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 10:59:41 +00:00
|
|
|
WL_DELETER(wl_pointer, wl_pointer_release);
|
|
|
|
WL_DELETER(wl_seat, wl_seat_release);
|
|
|
|
WL_DELETER(wl_surface, wl_surface_destroy);
|
2021-10-25 17:02:35 +00:00
|
|
|
WL_DELETER(znet_tapesoftware_dwl_wm_monitor_v1, znet_tapesoftware_dwl_wm_monitor_v1_release);
|
2021-10-26 10:59:41 +00:00
|
|
|
WL_DELETER(zwlr_layer_surface_v1, zwlr_layer_surface_v1_destroy);
|