Changeset 344f8b9 in mainline for uspace/lib/ui/private/menu.h
- Timestamp:
- 2021-05-20T15:34:03Z (4 years ago)
- Children:
- f2416ec3
- Parents:
- da15002
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/menu.h
rda15002 r344f8b9 42 42 #include <stdbool.h> 43 43 #include <types/ui/menu.h> 44 #include <types/ui/resource.h> 44 45 45 46 /** Actual structure of menu. … … 54 55 /** Caption */ 55 56 char *caption; 56 /** Menu iscurrently open */57 bool open;57 /** Popup window or @c NULL if menu is not currently open */ 58 struct ui_popup *popup; 58 59 /** Selected menu entry or @c NULL */ 59 60 struct ui_menu_entry *selected; … … 80 81 81 82 extern void ui_menu_get_geom(ui_menu_t *, gfx_coord2_t *, ui_menu_geom_t *); 83 extern ui_resource_t *ui_menu_get_res(ui_menu_t *); 82 84 83 85 #endif
Note:
See TracChangeset
for help on using the changeset viewer.