Changeset 62223ec in mainline for uspace/lib/ui/include
- Timestamp:
- 2021-04-09T22:41:22Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f251883
- Parents:
- 0262f16c
- git-author:
- Jiri Svoboda <jiri@…> (2021-04-01 21:04:11)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-04-09 22:41:22)
- Location:
- uspace/lib/ui/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/control.h
r0262f16c r62223ec 52 52 /** Position event */ 53 53 ui_evclaim_t (*pos_event)(void *, pos_event_t *); 54 /** Unfocus */ 55 void (*unfocus)(void *); 54 56 } ui_control_ops_t; 55 57 -
uspace/lib/ui/include/ui/control.h
r0262f16c r62223ec 47 47 extern errno_t ui_control_paint(ui_control_t *); 48 48 extern ui_evclaim_t ui_control_pos_event(ui_control_t *, pos_event_t *); 49 extern void ui_control_unfocus(ui_control_t *); 49 50 50 51 #endif -
uspace/lib/ui/include/ui/fixed.h
r0262f16c r62223ec 50 50 extern errno_t ui_fixed_paint(ui_fixed_t *); 51 51 extern ui_evclaim_t ui_fixed_pos_event(ui_fixed_t *, pos_event_t *); 52 extern void ui_fixed_unfocus(ui_fixed_t *); 52 53 53 54 #endif -
uspace/lib/ui/include/ui/menubar.h
r0262f16c r62223ec 52 52 extern errno_t ui_menu_bar_paint(ui_menu_bar_t *); 53 53 extern ui_evclaim_t ui_menu_bar_pos_event(ui_menu_bar_t *, pos_event_t *); 54 extern void ui_menu_bar_unfocus(ui_menu_bar_t *); 54 55 55 56 #endif -
uspace/lib/ui/include/ui/window.h
r0262f16c r62223ec 61 61 extern errno_t ui_window_def_paint(ui_window_t *); 62 62 extern void ui_window_def_pos(ui_window_t *, pos_event_t *); 63 extern void ui_window_def_unfocus(ui_window_t *); 63 64 64 65 #endif
Note:
See TracChangeset
for help on using the changeset viewer.