Changeset d68239a1 in mainline for uspace/lib/ui/include/types/ui/pbutton.h
- Timestamp:
- 2022-04-04T14:48:41Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 86fff971
- Parents:
- 0d1d0ea
- git-author:
- Jiri Svoboda <jiri@…> (2022-04-03 17:48:17)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-04-04 14:48:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/pbutton.h
r0d1d0ea rd68239a1 37 37 #define _UI_TYPES_PBUTTON_H 38 38 39 #include <errno.h> 40 #include <gfx/coord.h> 41 39 42 struct ui_pbutton; 40 43 typedef struct ui_pbutton ui_pbutton_t; … … 47 50 } ui_pbutton_cb_t; 48 51 52 /** Push button decoration ops */ 53 typedef struct ui_pbutton_decor_ops { 54 errno_t (*paint)(ui_pbutton_t *, void *, gfx_coord2_t *); 55 } ui_pbutton_decor_ops_t; 56 49 57 #endif 50 58
Note:
See TracChangeset
for help on using the changeset viewer.