]> git.lizzy.rs Git - bspwm.git/blobdiff - messages.h
Add example bindings for history navigation
[bspwm.git] / messages.h
index 8f7d5d6d7296c32e161526e7a0656c6c4156f9c0..aa3e6de098b52a0adea53241cc6002249dffe34d 100644 (file)
@@ -1,26 +1,39 @@
-#ifndef _MESSAGES_H
-#define _MESSAGES_H
+#ifndef MESSAGES_H
+#define MESSAGES_H
 
 #include "types.h"
 
-#define TOK_SEP  " "
+#define OPT_CHR  '-'
+#define CAT_CHR  '.'
+#define EQL_TOK  "="
 
-void process_message(char*, char*);
-void get_setting(char*, char*);
-void set_setting(char*, char*, char*);
-bool parse_bool(char *, bool *);
-bool parse_layout(char *, layout_t *);
-bool parse_direction(char *, direction_t *);
-bool parse_nearest_argument(char *, nearest_arg_t *);
-bool parse_cycle_direction(char *, cycle_dir_t *);
-bool parse_circulate_direction(char *, circulate_dir_t *);
-bool parse_list_option(char *, list_option_t *);
-bool parse_send_option(char *, send_option_t *);
-bool parse_skip_client(char *, skip_client_t *);
-bool parse_skip_desktop(char *, skip_desktop_t *);
-bool parse_rotate(char *, rotate_t *);
-bool parse_flip(char *, flip_t *);
-bool parse_fence_move(char *, fence_move_t *);
-bool parse_pointer_action(char *, pointer_action_t *);
+bool handle_message(char *msg, int msg_len, char *rsp);
+bool process_message(char **args, int num, char *rsp);
+bool cmd_window(char **args, int num);
+bool cmd_desktop(char **args, int num);
+bool cmd_monitor(char **args, int num);
+bool cmd_tag(char **args, int num, char *rsp);
+bool cmd_query(char **args, int num, char *rsp);
+bool cmd_rule(char **args, int num, char *rsp);
+bool cmd_pointer(char **args, int num);
+bool cmd_restore(char **args, int num);
+bool cmd_control(char **args, int num);
+bool cmd_config(char **args, int num, char *rsp);
+bool cmd_quit(char **args, int num);
+bool set_setting(coordinates_t loc, char *name, char *value);
+bool get_setting(coordinates_t loc, char *name, char* rsp);
+bool parse_bool(char *value, bool *b);
+bool parse_layout(char *s, layout_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_fence_move(char *s, fence_move_t *m);
+bool parse_pointer_action(char *s, pointer_action_t *a);
+bool parse_degree(char *s, int *d);
+bool parse_window_id(char *s, long int *i);
+bool parse_bool_declaration(char *s, char **key, bool *value, alter_state_t *state);
+bool parse_index(char *s, int *i);
 
 #endif