draft #1976 by johanmalm

various menu changes necessary for further menu work
This commit is contained in:
Droc 2024-08-17 08:47:14 -05:00
parent 497d3d8e05
commit 50542bbf84
8 changed files with 120 additions and 38 deletions

View file

@ -27,6 +27,12 @@ struct menu_scene {
struct scaled_font_buffer *buffer;
};
enum menuitem_type {
LAB_MENU_ITEM = 0,
LAB_MENU_SEPARATOR_LINE,
LAB_MENU_TITLE,
};
struct menuitem {
struct wl_list actions;
char *execute;
@ -34,6 +40,7 @@ struct menuitem {
struct menu *parent;
struct menu *submenu;
bool selectable;
enum menuitem_type type;
int height;
int native_width;
struct wlr_scene_tree *tree;
@ -46,7 +53,6 @@ struct menuitem {
struct menu {
char *id;
char *label;
int item_height;
struct menu *parent;
struct {