Changeset 214aefb in mainline for uspace/lib/ui/include
- Timestamp:
- 2021-04-09T22:41:22Z (5 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0262f16c
- Parents:
- b0858150
- git-author:
- Jiri Svoboda <jiri@…> (2021-03-27 22:52:09)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-04-09 22:41:22)
- Location:
- uspace/lib/ui/include
- Files:
-
- 6 added
- 4 edited
-
types/ui/menu.h (added)
-
types/ui/menubar.h (added)
-
types/ui/menuentry.h (added)
-
types/ui/rbutton.h (modified) (1 diff)
-
types/ui/resource.h (modified) (1 diff)
-
ui/menu.h (added)
-
ui/menubar.h (added)
-
ui/menuentry.h (added)
-
ui/paint.h (modified) (1 diff)
-
ui/resource.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/rbutton.h
rb0858150 r214aefb 37 37 #define _UI_TYPES_RBUTTON_H 38 38 39 #include <stdbool.h>40 41 39 struct ui_rbutton_group; 42 40 typedef struct ui_rbutton_group ui_rbutton_group_t; -
uspace/lib/ui/include/types/ui/resource.h
rb0858150 r214aefb 40 40 typedef struct ui_resource ui_resource_t; 41 41 42 typedef void (*ui_expose_cb_t)(void *); 43 42 44 #endif 43 45 -
uspace/lib/ui/include/ui/paint.h
rb0858150 r214aefb 47 47 extern errno_t ui_paint_inset_frame(ui_resource_t *, gfx_rect_t *, 48 48 gfx_rect_t *); 49 extern errno_t ui_paint_outset_frame(ui_resource_t *, gfx_rect_t *, 50 gfx_rect_t *); 49 51 extern errno_t ui_paint_filled_circle(gfx_context_t *, gfx_coord2_t *, 50 52 gfx_coord_t, ui_fcircle_part_t); -
uspace/lib/ui/include/ui/resource.h
rb0858150 r214aefb 44 44 extern errno_t ui_resource_create(gfx_context_t *, bool, ui_resource_t **); 45 45 extern void ui_resource_destroy(ui_resource_t *); 46 extern void ui_resource_set_expose_cb(ui_resource_t *, ui_expose_cb_t, 47 void *); 48 extern void ui_resource_expose(ui_resource_t *); 46 49 47 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
