Changeset 39ab17c in mainline for uspace/app/nav/types/panel.h
- Timestamp:
- 2021-10-25T00:32:45Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e0377075
- Parents:
- c632c96
- git-author:
- Jiri Svoboda <jiri@…> (2021-10-21 17:44:55)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-10-25 00:32:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/types/panel.h
rc632c96 r39ab17c 83 83 ui_window_t *window; 84 84 85 /** Callbacks */ 86 struct panel_cb *cb; 87 88 /** Callback argument */ 89 void *cb_arg; 90 85 91 /** Panel rectangle */ 86 92 gfx_rect_t rect; … … 126 132 } panel_t; 127 133 134 /** Panel callbacks */ 135 typedef struct panel_cb { 136 /** Request panel activation */ 137 void (*activate_req)(void *, panel_t *); 138 } panel_cb_t; 139 128 140 #endif 129 141
Note:
See TracChangeset
for help on using the changeset viewer.