From a6349a2444571624c792ca222dff57c7f1711c71 Mon Sep 17 00:00:00 2001 From: Mikkel Oscar Lyderik Date: Sat, 23 Jan 2016 20:55:01 +0100 Subject: swaybar: feactor render, statusline --- swaybar/status_line.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 swaybar/status_line.h (limited to 'swaybar/status_line.h') diff --git a/swaybar/status_line.h b/swaybar/status_line.h new file mode 100644 index 00000000..36020aeb --- /dev/null +++ b/swaybar/status_line.h @@ -0,0 +1,45 @@ +#ifndef _SWAYBAR_STATUS_LINE_H +#define _SWAYBAR_STATUS_LINE_H + +#include +#include + +#include "list.h" +#include "state.h" + +typedef enum {UNDEF, TEXT, I3BAR} command_protocol; + +struct status_line { + list_t *block_line; + char *text_line; + command_protocol protocol; +}; + +struct status_block { + char *full_text, *short_text, *align; + bool urgent; + uint32_t color; + int min_width; + char *name, *instance; + bool separator; + int separator_block_width; + // Airblader features + uint32_t background; + uint32_t border; + int border_top; + int border_bottom; + int border_left; + int border_right; +}; + +/** + * Initialize status line struct. + */ +struct status_line *init_status_line(); + +/** + * handle status line activity. + */ +bool handle_status_line(struct swaybar_state *st); + +#endif /* _SWAYBAR_STATUS_LINE_H */ -- cgit v1.2.3