Changeset 4df6607 in mainline for uspace/lib/ui/include
- Timestamp:
- 2020-11-01T18:37:09Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c6f00b40
- Parents:
- 8009dc27
- Location:
- uspace/lib/ui/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/control.h
r8009dc27 r4df6607 37 37 #define _UI_TYPES_CONTROL_H 38 38 39 #include <errno.h> 39 40 #include <io/pos_event.h> 40 41 #include <types/ui/event.h> … … 45 46 /** UI control ops */ 46 47 typedef struct ui_control_ops { 48 /** Paint */ 49 errno_t (*paint)(void *); 47 50 /** Position event */ 48 51 ui_evclaim_t (*pos_event)(void *, pos_event_t *); -
uspace/lib/ui/include/ui/control.h
r8009dc27 r4df6607 44 44 extern errno_t ui_control_new(ui_control_ops_t *, void *, ui_control_t **); 45 45 extern void ui_control_delete(ui_control_t *); 46 extern errno_t ui_control_paint(ui_control_t *); 46 47 extern ui_evclaim_t ui_control_pos_event(ui_control_t *, pos_event_t *); 47 48 -
uspace/lib/ui/include/ui/fixed.h
r8009dc27 r4df6607 47 47 extern errno_t ui_fixed_add(ui_fixed_t *, ui_control_t *); 48 48 extern void ui_fixed_remove(ui_fixed_t *, ui_control_t *); 49 extern errno_t ui_fixed_paint(ui_fixed_t *); 49 50 extern ui_evclaim_t ui_fixed_pos_event(ui_fixed_t *, pos_event_t *); 50 51
Note:
See TracChangeset
for help on using the changeset viewer.