mirror of
https://github.com/labwc/labwc.git
synced 2026-04-10 08:21:07 -04:00
[wip] src/action.c: Add action_arg_box
This commit is contained in:
parent
9b49f19a73
commit
a0e22d5e07
3 changed files with 27 additions and 0 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue