sway/include/swaybar/status_line.h

47 lines
903 B
C
Raw Normal View History

2016-01-23 19:55:01 +00:00
#ifndef _SWAYBAR_STATUS_LINE_H
#define _SWAYBAR_STATUS_LINE_H
#include <json.h>
2016-01-23 19:55:01 +00:00
#include <stdint.h>
#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
enum status_protocol {
PROTOCOL_UNDEF,
PROTOCOL_ERROR,
PROTOCOL_TEXT,
PROTOCOL_I3BAR,
};
2016-01-23 19:55:01 +00:00
struct status_line {
struct swaybar *bar;
pid_t pid;
int read_fd, write_fd;
FILE *read, *write;
2016-01-23 19:55:01 +00:00
enum status_protocol protocol;
const char *text;
struct wl_list blocks; // i3bar_block::link
int stop_signal;
int cont_signal;
bool click_events;
bool float_event_coords;
bool clicked;
char *buffer;
size_t buffer_size;
size_t buffer_index;
bool started;
bool expecting_comma;
json_tokener *tokener;
2016-01-23 19:55:01 +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);
#endif