2016-01-24 02:34:20 +01:00
|
|
|
#ifndef _SWAYBAR_BAR_H
|
|
|
|
#define _SWAYBAR_BAR_H
|
2018-03-29 05:04:20 +02:00
|
|
|
#include <wayland-client.h>
|
2018-10-28 11:25:47 +01:00
|
|
|
#include "config.h"
|
2018-10-17 21:21:27 +02:00
|
|
|
#include "input.h"
|
2018-03-29 05:04:20 +02:00
|
|
|
#include "pool-buffer.h"
|
2018-09-17 16:04:09 +02:00
|
|
|
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
|
|
|
|
#include "xdg-output-unstable-v1-client-protocol.h"
|
2016-01-23 20:55:01 +01:00
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
struct swaybar_config;
|
|
|
|
struct swaybar_output;
|
2018-10-28 11:25:47 +01:00
|
|
|
#if HAVE_TRAY
|
|
|
|
struct swaybar_tray;
|
|
|
|
#endif
|
2018-03-29 05:04:20 +02:00
|
|
|
struct swaybar_workspace;
|
2018-10-13 08:04:37 +02:00
|
|
|
struct loop;
|
2018-03-29 05:04:20 +02:00
|
|
|
|
|
|
|
struct swaybar {
|
2018-09-30 16:09:09 +02:00
|
|
|
char *id;
|
2018-10-12 21:23:01 +02:00
|
|
|
char *mode;
|
|
|
|
bool mode_pango_markup;
|
2018-09-30 16:09:09 +02:00
|
|
|
|
2018-10-12 21:32:48 +02:00
|
|
|
// only relevant when bar is in "hide" mode
|
|
|
|
bool visible_by_modifier;
|
|
|
|
bool visible_by_urgency;
|
|
|
|
bool visible;
|
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
struct wl_display *display;
|
|
|
|
struct wl_compositor *compositor;
|
|
|
|
struct zwlr_layer_shell_v1 *layer_shell;
|
2018-09-17 16:04:09 +02:00
|
|
|
struct zxdg_output_manager_v1 *xdg_output_manager;
|
2018-03-29 05:04:20 +02:00
|
|
|
struct wl_shm *shm;
|
2018-03-31 03:38:28 +02:00
|
|
|
struct wl_seat *seat;
|
2016-01-23 20:55:01 +01:00
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
struct swaybar_config *config;
|
2018-03-31 03:38:28 +02:00
|
|
|
struct swaybar_pointer pointer;
|
2018-03-29 21:16:12 +02:00
|
|
|
struct status_line *status;
|
2018-03-29 05:04:20 +02:00
|
|
|
|
2018-10-13 08:04:37 +02:00
|
|
|
struct loop *eventloop;
|
|
|
|
|
2018-03-29 05:56:02 +02:00
|
|
|
int ipc_event_socketfd;
|
|
|
|
int ipc_socketfd;
|
|
|
|
|
2018-10-06 20:02:12 +02:00
|
|
|
struct wl_list outputs; // swaybar_output::link
|
2018-10-28 11:25:47 +01:00
|
|
|
|
|
|
|
#if HAVE_TRAY
|
|
|
|
struct swaybar_tray *tray;
|
|
|
|
#endif
|
2016-01-23 20:55:01 +01:00
|
|
|
};
|
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
struct swaybar_output {
|
2018-10-06 20:02:12 +02:00
|
|
|
struct wl_list link; // swaybar::outputs
|
2018-03-29 05:04:20 +02:00
|
|
|
struct swaybar *bar;
|
|
|
|
struct wl_output *output;
|
2018-09-17 16:04:09 +02:00
|
|
|
struct zxdg_output_v1 *xdg_output;
|
2018-03-29 05:04:20 +02:00
|
|
|
struct wl_surface *surface;
|
|
|
|
struct zwlr_layer_surface_v1 *layer_surface;
|
2018-04-05 21:39:57 +02:00
|
|
|
uint32_t wl_name;
|
2018-03-29 05:04:20 +02:00
|
|
|
|
2018-10-06 20:02:12 +02:00
|
|
|
struct wl_list workspaces; // swaybar_workspace::link
|
|
|
|
struct wl_list hotspots; // swaybar_hotspot::link
|
2018-03-29 06:21:05 +02:00
|
|
|
|
2016-01-24 00:23:09 +01:00
|
|
|
char *name;
|
2016-11-02 18:48:43 +01:00
|
|
|
bool focused;
|
2016-01-23 20:55:01 +01:00
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
uint32_t width, height;
|
2018-04-04 03:06:28 +02:00
|
|
|
int32_t scale;
|
2018-09-21 05:37:08 +02:00
|
|
|
enum wl_output_subpixel subpixel;
|
2018-03-29 05:04:20 +02:00
|
|
|
struct pool_buffer buffers[2];
|
|
|
|
struct pool_buffer *current_buffer;
|
2018-09-28 17:17:15 +02:00
|
|
|
bool dirty;
|
|
|
|
bool frame_scheduled;
|
2018-12-07 13:39:35 +01:00
|
|
|
|
|
|
|
uint32_t output_height, output_width, output_x, output_y;
|
2016-01-23 20:55:01 +01:00
|
|
|
};
|
|
|
|
|
2018-03-29 06:21:05 +02:00
|
|
|
struct swaybar_workspace {
|
2018-10-06 20:02:12 +02:00
|
|
|
struct wl_list link; // swaybar_output::workspaces
|
2018-03-29 06:21:05 +02:00
|
|
|
int num;
|
|
|
|
char *name;
|
2018-11-17 17:11:28 +01:00
|
|
|
char *label;
|
2018-03-29 06:21:05 +02:00
|
|
|
bool focused;
|
|
|
|
bool visible;
|
|
|
|
bool urgent;
|
|
|
|
};
|
|
|
|
|
2018-09-30 16:09:09 +02:00
|
|
|
bool bar_setup(struct swaybar *bar, const char *socket_path);
|
2018-03-29 05:04:20 +02:00
|
|
|
void bar_run(struct swaybar *bar);
|
|
|
|
void bar_teardown(struct swaybar *bar);
|
2016-07-11 05:47:10 +02:00
|
|
|
|
2018-12-07 13:40:45 +01:00
|
|
|
void set_bar_dirty(struct swaybar *bar);
|
|
|
|
|
2018-10-12 21:32:48 +02:00
|
|
|
/*
|
|
|
|
* Determines whether the bar should be visible and changes it to be so.
|
|
|
|
* If the current visibility of the bar is the different to what it should be,
|
|
|
|
* then it adds or destroys the layer surface as required,
|
|
|
|
* as well as sending the cont or stop signal to the status command.
|
|
|
|
* If the current visibility of the bar is already what it should be,
|
|
|
|
* then this function is a no-op, unless moving_layer is true, which occurs
|
|
|
|
* when the bar changes from "hide" to "dock" mode or vice versa, and the bar
|
|
|
|
* needs to be destroyed and re-added in order to change its layer.
|
|
|
|
*
|
|
|
|
* Returns true if the bar is now visible, otherwise false.
|
|
|
|
*/
|
|
|
|
bool determine_bar_visibility(struct swaybar *bar, bool moving_layer);
|
2018-04-24 23:04:19 +02:00
|
|
|
void free_workspaces(struct wl_list *list);
|
|
|
|
|
2018-03-29 05:04:20 +02:00
|
|
|
#endif
|