Lines Matching full:to

35 …LV_SCROLLBAR_MODE_AUTO,     /**< Show scroll bars when the content is large enough to be scrolled*/
38 /** Scroll span align options. Tells where to align the snappable children when scroll stops.*/
41 LV_SCROLL_SNAP_START, /**< Align to the left/top*/
42 LV_SCROLL_SNAP_END, /**< Align to the right/bottom*/
43 LV_SCROLL_SNAP_CENTER /**< Align to the center*/
56 * @param obj pointer to Widget
63 * @param obj pointer to Widget
69 * Set where to snap the children when scrolling ends horizontally
70 * @param obj pointer to Widget
76 * Set where to snap the children when scrolling ends vertically
77 * @param obj pointer to Widget
87 * Get the current scroll mode (when to hide the scrollbars)
88 * @param obj pointer to Widget
95 * @param obj pointer to Widget
101 * Get where to snap child Widgets when horizontal scrolling ends.
102 * @param obj pointer to Widget
108 * Get where to snap child Widgets when vertical scrolling ends.
109 * @param obj pointer to Widget
115 * Get current X scroll position. Identical to `lv_obj_get_scroll_left()`.
116 * @param obj pointer to scrollable container Widget
125 * Get current Y scroll position. Identical to `lv_obj_get_scroll_top()`.
126 * @param obj pointer to scrollable container Widget
139 * @param obj pointer to scrollable container Widget
149 * @param obj pointer to scrollable container Widget
159 * @param obj pointer to scrollable container Widget
169 * @param obj pointer to scrollable container Widget
177 * @param obj pointer to scrollable Widget
178 * @param end pointer to `lv_point_t` object in which to store result
188 * @param obj pointer to scrollable Widget to scroll
189 * @param dx pixels to scroll horizontally
190 * @param dy pixels to scroll vertically
199 * `dx` and `dy` will be limited internally to allow scrolling only on the content area.
200 * @param obj pointer to scrollable Widget to scroll
201 * @param dx pixels to scroll horizontally
202 * @param dy pixels to scroll vertically
209 * Scroll to given coordinate on Widget.
210 * `x` and `y` will be limited internally to allow scrolling only on the content area.
211 * @param obj pointer to scrollable Widget to scroll
212 * @param x pixels to scroll horizontally
213 * @param y pixels to scroll vertically
219 * Scroll to X coordinate on Widget.
220 * `x` will be limited internally to allow scrolling only on the content area.
221 * @param obj pointer to scrollable Widget to scroll
222 * @param x pixels to scroll horizontally
228 * Scroll to Y coordinate on Widget.
229 * `y` will be limited internally to allow scrolling only on the content area.
230 * @param obj pointer to scrollable Widget to scroll
231 * @param y pixels to scroll vertically
238 * @param obj pointer to Widget to scroll into view
246 * @param obj pointer to Widget to scroll into view
253 * @param obj pointer to Widget
266 * Check children of `obj` and scroll `obj` to fulfill scroll_snap settings.
267 * @param obj Widget whose children need to be checked and snapped
274 * @param obj pointer to Widget
275 * @param hor pointer to store the area of the horizontal scrollbar
276 * @param ver pointer to store the area of the vertical scrollbar
282 * @param obj pointer to Widget
287 * Checks if the content is scrolled "in" and adjusts it to a normal position.
288 * @param obj pointer to Widget