Changeset ba09d06 in mainline for uspace/lib/ui
- Timestamp:
- 2020-10-20T11:10:32Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20d2c6c
- Parents:
- 1769693
- git-author:
- Jiri Svoboda <jiri@…> (2020-10-19 21:10:12)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-10-20 11:10:32)
- Location:
- uspace/lib/ui
- Files:
-
- 5 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/meson.build
r1769693 rba09d06 29 29 deps = [ 'gfx', 'gfxfont' ] 30 30 src = files( 31 'src/label.c', 31 32 'src/paint.c', 32 33 'src/pbutton.c', … … 36 37 37 38 test_src = files( 39 'test/label.c', 38 40 'test/main.c', 39 41 'test/paint.c', -
uspace/lib/ui/src/pbutton.c
r1769693 rba09d06 107 107 * 108 108 * @param pbutton Button 109 * @param rect New button rectan le109 * @param rect New button rectangle 110 110 */ 111 111 void ui_pbutton_set_rect(ui_pbutton_t *pbutton, gfx_rect_t *rect) -
uspace/lib/ui/src/resource.c
r1769693 rba09d06 50 50 * 51 51 * @param gc Graphic context 52 * @param rresource Place to store pointer to new push button52 * @param rresource Place to store pointer to new UI resource 53 53 * @return EOK on success, ENOMEM if out of memory 54 54 */ -
uspace/lib/ui/src/wdecor.c
r1769693 rba09d06 102 102 * 103 103 * @param wdecor Window decoration 104 * @param rect New button rectanle104 * @param rect New window decoration rectangle 105 105 */ 106 106 void ui_wdecor_set_rect(ui_wdecor_t *wdecor, gfx_rect_t *rect) -
uspace/lib/ui/test/main.c
r1769693 rba09d06 31 31 PCUT_INIT; 32 32 33 PCUT_IMPORT(label); 33 34 PCUT_IMPORT(paint); 34 35 PCUT_IMPORT(pbutton);
Note:
See TracChangeset
for help on using the changeset viewer.