Changeset 214aefb in mainline for uspace/lib/ui/private/resource.h
- Timestamp:
- 2021-04-09T22:41:22Z (4 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/resource.h
rb0858150 r214aefb 43 43 #include <gfx/typeface.h> 44 44 #include <stdbool.h> 45 #include <types/ui/resource.h> 45 46 46 47 /** Actual structure of UI resources. … … 73 74 /** Window text color */ 74 75 gfx_color_t *wnd_text_color; 76 /** Window selected text color */ 77 gfx_color_t *wnd_sel_text_color; 78 /** Window selected text background color */ 79 gfx_color_t *wnd_sel_text_bg_color; 75 80 /** Window frame hightlight color */ 76 81 gfx_color_t *wnd_frame_hi_color; … … 97 102 /** Entry (text entry, checkbox, raido button) active background color */ 98 103 gfx_color_t *entry_act_bg_color; 104 105 /** Expose callback or @c NULL */ 106 ui_expose_cb_t expose_cb; 107 /** Expose callback argument */ 108 void *expose_arg; 99 109 }; 100 110
Note:
See TracChangeset
for help on using the changeset viewer.