[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

@ -7,6 +7,7 @@
enum action_arg_type {
LAB_ACTION_ARG_STR = 0,
LAB_ACTION_ARG_BOX,
};
struct action_arg {
@ -21,4 +22,9 @@ struct action_arg_str {
char *value;
};
struct action_arg_box {
struct action_arg base;
struct wlr_box value;
};
#endif /* __LABWC_PRIVATE_ACTION_H */