Changeset f03d1308 in mainline for uspace/lib/ui/include
- Timestamp:
- 2020-10-28T12:42:11Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8009dc27
- Parents:
- d284ce9
- git-author:
- Jiri Svoboda <jiri@…> (2020-10-28 12:41:11)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-10-28 12:42:11)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/window.h
rd284ce9 rf03d1308 37 37 #define _UI_TYPES_WINDOW_H 38 38 39 #include <io/kbd_event.h> 39 40 #include <io/pos_event.h> 40 41 … … 53 54 typedef struct ui_window_cb { 54 55 void (*close)(ui_window_t *, void *); 56 void (*focus)(ui_window_t *, void *); 57 void (*kbd)(ui_window_t *, void *, kbd_event_t *); 55 58 void (*pos)(ui_window_t *, void *, pos_event_t *); 59 void (*unfocus)(ui_window_t *, void *); 56 60 } ui_window_cb_t; 57 61
Note:
See TracChangeset
for help on using the changeset viewer.