Changeset dc5c303 in mainline for uspace/lib/ui/private/scrollbar.h
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/scrollbar.h
r42c2e65 rdc5c303 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 69 69 /** Thumb is currently held down */ 70 70 bool thumb_held; 71 /** Up through is currently held down */72 bool up _through_held;73 /** Pointer is inside up through */74 bool up _through_inside;75 /** Down through is currently held down */76 bool down_through_held;77 /** Pointer is inside down through */78 bool down_through_inside;71 /** Upper trough is currently held down */ 72 bool upper_trough_held; 73 /** Pointer is inside upper trough */ 74 bool upper_trough_inside; 75 /** Lower trough is currently held down */ 76 bool lower_trough_held; 77 /** Pointer is inside lower trough */ 78 bool lower_trough_inside; 79 79 /** Position where thumb was pressed */ 80 80 gfx_coord2_t press_pos; … … 83 83 /** Thumb position */ 84 84 gfx_coord_t pos; 85 /** Last cursor position (when t hrough is held) */85 /** Last cursor position (when trough is held) */ 86 86 gfx_coord2_t last_curs_pos; 87 87 }; … … 94 94 /** Up button rectangle */ 95 95 gfx_rect_t up_btn_rect; 96 /** T hrough rectangle */97 gfx_rect_t t hrough_rect;98 /** Up through rectangle */99 gfx_rect_t up _through_rect;96 /** Trough rectangle */ 97 gfx_rect_t trough_rect; 98 /** Upper trough rectangle */ 99 gfx_rect_t upper_trough_rect; 100 100 /** Thumb rectangle */ 101 101 gfx_rect_t thumb_rect; 102 /** Down through rectangle */103 gfx_rect_t down_through_rect;102 /** Lower trough rectangle */ 103 gfx_rect_t lower_trough_rect; 104 104 /** Down button rectangle */ 105 105 gfx_rect_t down_btn_rect;
Note:
See TracChangeset
for help on using the changeset viewer.