Changeset b769ca0 in mainline for uspace/lib/ui/include/types
- Timestamp:
- 2026-02-19T00:01:36Z (4 weeks ago)
- Branches:
- master
- Children:
- 08fcaf2
- Parents:
- 39f67f1
- File:
-
- 1 edited
-
uspace/lib/ui/include/types/ui/pbutton.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/pbutton.h
r39f67f1 rb769ca0 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2026 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 56 56 } ui_pbutton_cb_t; 57 57 58 /** Push button decoration ops */ 59 typedef struct ui_pbutton_decor_ops { 60 errno_t (*paint)(ui_pbutton_t *, void *, gfx_coord2_t *); 61 } ui_pbutton_decor_ops_t; 58 /** Push button ops */ 59 typedef struct ui_pbutton_ops { 60 errno_t (*decor_paint)(ui_pbutton_t *, void *, gfx_coord2_t *); 61 errno_t (*paint)(ui_pbutton_t *, void *); 62 } ui_pbutton_ops_t; 62 63 63 64 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
