[wip] src/action.c: Add action_arg_box

This commit is contained in:
Consolatis 2022-07-04 00:33:35 +02:00
parent 9b49f19a73
commit a0e22d5e07
3 changed files with 27 additions and 0 deletions

View file

@ -5,6 +5,7 @@
struct view;
struct server;
struct wl_list;
struct wlr_box;
struct action {
struct wl_list link; /* struct keybinding.actions,
@ -17,6 +18,7 @@ struct action {
struct action *action_create(const char *action_name);
void action_arg_add_str(struct action *action, char *key, const char *value);
struct wlr_box *action_arg_add_box(struct action *action, char *name);
void actions_run(struct view *activator, struct server *server,
struct wl_list *actions, uint32_t resize_edges);
void action_list_free(struct wl_list *action_list);