2016-01-23 19:55:01 +00:00
|
|
|
#ifndef _SWAYBAR_STATUS_LINE_H
|
|
|
|
#define _SWAYBAR_STATUS_LINE_H
|
2018-09-17 13:10:57 +00:00
|
|
|
#include <json-c/json.h>
|
2016-01-23 19:55:01 +00:00
|
|
|
#include <stdint.h>
|
2018-03-29 19:16:12 +00:00
|
|
|
#include <stdio.h>
|
2016-01-23 19:55:01 +00:00
|
|
|
#include <stdbool.h>
|
2016-01-24 01:34:20 +00:00
|
|
|
#include "bar.h"
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2018-03-29 19:16:12 +00:00
|
|
|
enum status_protocol {
|
|
|
|
PROTOCOL_UNDEF,
|
2018-03-31 17:07:22 +00:00
|
|
|
PROTOCOL_ERROR,
|
2018-03-29 19:16:12 +00:00
|
|
|
PROTOCOL_TEXT,
|
|
|
|
PROTOCOL_I3BAR,
|
|
|
|
};
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2018-03-31 17:07:22 +00:00
|
|
|
struct i3bar_block {
|
|
|
|
struct wl_list link;
|
2018-09-12 07:28:28 +00:00
|
|
|
int ref_count;
|
2018-03-31 17:07:22 +00:00
|
|
|
char *full_text, *short_text, *align;
|
|
|
|
bool urgent;
|
2018-03-31 18:39:18 +00:00
|
|
|
uint32_t *color;
|
2018-03-31 17:07:22 +00:00
|
|
|
int min_width;
|
|
|
|
char *name, *instance;
|
|
|
|
bool separator;
|
|
|
|
int separator_block_width;
|
|
|
|
bool markup;
|
|
|
|
// Airblader features
|
|
|
|
uint32_t background;
|
|
|
|
uint32_t border;
|
|
|
|
int border_top;
|
|
|
|
int border_bottom;
|
|
|
|
int border_left;
|
|
|
|
int border_right;
|
|
|
|
};
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
struct status_line {
|
2018-03-29 19:16:12 +00:00
|
|
|
pid_t pid;
|
|
|
|
int read_fd, write_fd;
|
|
|
|
FILE *read, *write;
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2018-03-29 19:16:12 +00:00
|
|
|
enum status_protocol protocol;
|
|
|
|
const char *text;
|
2018-03-31 17:07:22 +00:00
|
|
|
struct wl_list blocks; // i3bar_block::link
|
2017-08-29 09:19:43 +00:00
|
|
|
|
2018-09-17 13:10:57 +00:00
|
|
|
bool click_events;
|
2018-09-17 12:43:27 +00:00
|
|
|
char *buffer;
|
|
|
|
size_t buffer_size;
|
2018-09-17 13:10:57 +00:00
|
|
|
size_t buffer_index;
|
|
|
|
bool started;
|
|
|
|
bool expecting_comma;
|
|
|
|
json_tokener *tokener;
|
2016-01-23 19:55:01 +00:00
|
|
|
};
|
|
|
|
|
2018-03-29 19:16:12 +00:00
|
|
|
struct status_line *status_line_init(char *cmd);
|
2018-03-31 18:58:30 +00:00
|
|
|
void status_error(struct status_line *status, const char *text);
|
2018-03-31 18:39:18 +00:00
|
|
|
bool status_handle_readable(struct status_line *status);
|
2018-03-31 18:58:30 +00:00
|
|
|
void status_line_free(struct status_line *status);
|
2018-03-31 18:39:18 +00:00
|
|
|
bool i3bar_handle_readable(struct status_line *status);
|
2018-07-19 19:15:01 +00:00
|
|
|
enum hotspot_event_handling i3bar_block_send_click(struct status_line *status,
|
2018-07-16 00:16:37 +00:00
|
|
|
struct i3bar_block *block, int x, int y, enum x11_button button);
|
2018-09-12 07:28:28 +00:00
|
|
|
void i3bar_block_unref(struct i3bar_block *block);
|
2018-07-16 00:16:37 +00:00
|
|
|
enum x11_button wl_button_to_x11_button(uint32_t button);
|
|
|
|
enum x11_button wl_axis_to_x11_button(uint32_t axis, wl_fixed_t value);
|
2016-01-24 00:03:08 +00:00
|
|
|
|
2018-03-29 19:16:12 +00:00
|
|
|
#endif
|