forked from baskerville/bspwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse.h
35 lines (31 loc) · 1.3 KB
/
parse.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef BSPWM_PARSE_H
#define BSPWM_PARSE_H
#include "types.h"
#include "subscribe.h"
#define OPT_CHR '-'
#define CAT_CHR '.'
#define EQL_TOK "="
#define COL_TOK ":"
bool parse_bool(char *value, bool *b);
bool parse_split_type(char *s, split_type_t *t);
bool parse_split_mode(char *s, split_mode_t *m);
bool parse_layout(char *s, layout_t *l);
bool parse_client_state(char *s, client_state_t *t);
bool parse_stack_layer(char *s, stack_layer_t *l);
bool parse_direction(char *s, direction_t *d);
bool parse_cycle_direction(char *s, cycle_dir_t *d);
bool parse_circulate_direction(char *s, circulate_dir_t *d);
bool parse_history_direction(char *s, history_dir_t *d);
bool parse_flip(char *s, flip_t *f);
bool parse_pointer_action(char *s, pointer_action_t *a);
bool parse_child_polarity(char *s, child_polarity_t *p);
bool parse_degree(char *s, int *d);
bool parse_id(char *s, uint32_t *id);
bool parse_bool_declaration(char *s, char **key, bool *value, alter_state_t *state);
bool parse_index(char *s, uint16_t *idx);
bool parse_rectangle(char *s, xcb_rectangle_t *r);
bool parse_subscriber_mask(char *s, subscriber_mask_t *mask);
bool parse_monitor_modifiers(char *desc, monitor_select_t *sel);
bool parse_desktop_modifiers(char *desc, desktop_select_t *sel);
bool parse_node_modifiers(char *desc, node_select_t *sel);
#endif