sway/include/swaybar/bar.h

111 lines
2.3 KiB
C
Raw Normal View History

2016-01-24 01:34:20 +00:00
#ifndef _SWAYBAR_BAR_H
#define _SWAYBAR_BAR_H
#include <wayland-client.h>
#include "pool-buffer.h"
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
#include "xdg-output-unstable-v1-client-protocol.h"
2016-01-23 19:55:01 +00:00
struct swaybar_config;
struct swaybar_output;
struct swaybar_workspace;
2018-03-31 01:38:28 +00:00
struct swaybar_pointer {
struct wl_pointer *pointer;
struct wl_cursor_theme *cursor_theme;
struct wl_cursor_image *cursor_image;
struct wl_surface *cursor_surface;
struct swaybar_output *current;
2018-03-31 02:42:59 +00:00
int x, y;
};
enum x11_button {
NONE,
LEFT,
MIDDLE,
RIGHT,
SCROLL_UP,
SCROLL_DOWN,
SCROLL_LEFT,
SCROLL_RIGHT,
BACK,
FORWARD,
};
enum hotspot_event_handling {
HOTSPOT_IGNORE,
HOTSPOT_PROCESS,
};
2018-03-31 02:42:59 +00:00
struct swaybar_hotspot {
struct wl_list link; // swaybar_output::hotspots
2018-03-31 02:42:59 +00:00
int x, y, width, height;
enum hotspot_event_handling (*callback)(struct swaybar_output *output,
int x, int y, enum x11_button button, void *data);
2018-03-31 02:42:59 +00:00
void (*destroy)(void *data);
void *data;
2018-03-31 01:38:28 +00:00
};
struct swaybar {
char *id;
char *mode;
bool mode_pango_markup;
struct wl_display *display;
struct wl_compositor *compositor;
struct zwlr_layer_shell_v1 *layer_shell;
struct zxdg_output_manager_v1 *xdg_output_manager;
struct wl_shm *shm;
2018-03-31 01:38:28 +00:00
struct wl_seat *seat;
2016-01-23 19:55:01 +00:00
struct swaybar_config *config;
2018-03-31 01:38:28 +00:00
struct swaybar_pointer pointer;
struct status_line *status;
2018-03-29 03:56:02 +00:00
int ipc_event_socketfd;
int ipc_socketfd;
struct wl_list outputs; // swaybar_output::link
2016-01-23 19:55:01 +00:00
};
struct swaybar_output {
struct wl_list link; // swaybar::outputs
struct swaybar *bar;
struct wl_output *output;
struct zxdg_output_v1 *xdg_output;
struct wl_surface *surface;
struct zwlr_layer_surface_v1 *layer_surface;
2018-04-05 19:39:57 +00:00
uint32_t wl_name;
struct wl_list workspaces; // swaybar_workspace::link
struct wl_list hotspots; // swaybar_hotspot::link
2018-03-29 04:21:05 +00:00
2016-01-23 23:23:09 +00:00
char *name;
bool focused;
2016-01-23 19:55:01 +00:00
uint32_t width, height;
2018-04-04 01:06:28 +00:00
int32_t scale;
enum wl_output_subpixel subpixel;
struct pool_buffer buffers[2];
struct pool_buffer *current_buffer;
bool dirty;
bool frame_scheduled;
2016-01-23 19:55:01 +00:00
};
2018-03-29 04:21:05 +00:00
struct swaybar_workspace {
struct wl_list link; // swaybar_output::workspaces
2018-03-29 04:21:05 +00:00
int num;
char *name;
bool focused;
bool visible;
bool urgent;
};
bool bar_setup(struct swaybar *bar, const char *socket_path);
void bar_run(struct swaybar *bar);
void bar_teardown(struct swaybar *bar);
void free_hotspots(struct wl_list *list);
2018-04-24 21:04:19 +00:00
void free_workspaces(struct wl_list *list);
#endif