Changeset 1026cc4 in mainline for uspace/lib/ui/private
- Timestamp:
- 2022-03-20T19:51:09Z (4 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 26c90dd
- Parents:
- 5ef85c0
- Location:
- uspace/lib/ui/private
- Files:
-
- 2 edited
-
resource.h (modified) (1 diff)
-
scrollbar.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/resource.h
r5ef85c0 r1026cc4 116 116 /** Scrollbar through color */ 117 117 gfx_color_t *sbar_through_color; 118 /** Scrollbar active through color */ 119 gfx_color_t *sbar_act_through_color; 118 120 119 121 /** Expose callback or @c NULL */ -
uspace/lib/ui/private/scrollbar.h
r5ef85c0 r1026cc4 63 63 struct ui_pbutton *btn_down; 64 64 /** Thumb is currently held down */ 65 bool held; 65 bool thumb_held; 66 /** Up through is currently held down */ 67 bool up_through_held; 68 /** Down through is currently held down */ 69 bool down_through_held; 66 70 /** Position where thumb was pressed */ 67 71 gfx_coord2_t press_pos; … … 81 85 /** Through rectangle */ 82 86 gfx_rect_t through_rect; 87 /** Up through rectangle */ 88 gfx_rect_t up_through_rect; 83 89 /** Thumb rectangle */ 84 90 gfx_rect_t thumb_rect; 91 /** Down through rectangle */ 92 gfx_rect_t down_through_rect; 85 93 /** Down button rectangle */ 86 94 gfx_rect_t down_btn_rect;
Note:
See TracChangeset
for help on using the changeset viewer.
