Changeset 338d0935 in mainline for uspace/lib/display/include
- Timestamp:
- 2020-03-02T11:22:01Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a2e104e
- Parents:
- 7bb45e3
- git-author:
- Jiri Svoboda <jiri@…> (2020-02-01 11:18:50)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-03-02 11:22:01)
- Location:
- uspace/lib/display/include/types
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/types/display.h
r7bb45e3 r338d0935 62 62 /** Display window callbacks */ 63 63 typedef struct { 64 /** Close event */ 65 void (*close_event)(void *); 64 66 /** Focus event */ 65 67 void (*focus_event)(void *); 66 /** Keyboard event callback*/68 /** Keyboard event */ 67 69 void (*kbd_event)(void *, kbd_event_t *); 68 /** Position event callback*/70 /** Position event */ 69 71 void (*pos_event)(void *, pos_event_t *); 70 72 /** Unfocus event */ -
uspace/lib/display/include/types/display/event.h
r7bb45e3 r338d0935 41 41 /** Display window event type */ 42 42 typedef enum { 43 /** Request to close window */ 44 wev_close, 43 45 /** Window gained focus */ 44 46 wev_focus,
Note:
See TracChangeset
for help on using the changeset viewer.