Changeset dc5c303 in mainline for uspace/lib/ui/private/window.h
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/window.h
r42c2e65 rdc5c303 47 47 #include <memgfx/memgc.h> 48 48 #include <memgfx/xlategc.h> 49 #include <types/common.h> 49 50 #include <types/ui/cursor.h> 50 51 #include <types/ui/window.h> … … 93 94 /** Window decoration */ 94 95 struct ui_wdecor *wdecor; 96 /** System menu */ 97 struct ui_menu *sysmenu; 98 /** System menu restore entry */ 99 struct ui_menu_entry *sysmenu_restore; 100 /** System menu minimize entry */ 101 struct ui_menu_entry *sysmenu_minimize; 102 /** System menu maximize entry */ 103 struct ui_menu_entry *sysmenu_maximize; 104 /** Menu bar */ 105 struct ui_menu_bar *mbar; 95 106 /** Top-level control in the application area */ 96 107 struct ui_control *control; … … 112 123 113 124 extern display_stock_cursor_t wnd_dcursor_from_cursor(ui_stock_cursor_t); 125 extern void ui_window_send_sysmenu(ui_window_t *, sysarg_t); 114 126 extern void ui_window_send_minimize(ui_window_t *); 115 127 extern void ui_window_send_maximize(ui_window_t *);
Note:
See TracChangeset
for help on using the changeset viewer.