Lines Matching refs:scroll

33 - :cpp:enumerator:`LV_SCROLLBAR_MODE_ACTIVE`: Show scroll bars while a Widget is being scrolled
34 - :cpp:enumerator:`LV_SCROLLBAR_MODE_AUTO`: Show scroll bars when the content is large enough to be…
107 event parameter is ``NULL`` or an ``lv_anim_t *`` with a scroll animation
135 - :cpp:enumerator:`LV_DIR_TOP`: only scroll up
136 - :cpp:enumerator:`LV_DIR_LEFT`: only scroll left
137 - :cpp:enumerator:`LV_DIR_BOTTOM`: only scroll down
138 - :cpp:enumerator:`LV_DIR_RIGHT`: only scroll right
139 - :cpp:enumerator:`LV_DIR_HOR`: only scroll horizontally
140 - :cpp:enumerator:`LV_DIR_VER`: only scroll vertically
141 - :cpp:enumerator:`LV_DIR_ALL`: scroll any directions
154 The propagation on scrolling is called "scroll chaining" and it can be
169 Elastic scroll
203 2. LVGL calculates where the scroll would end considering scroll momentum;
204 3. LVGL finds the nearest scroll point;
210 The "scroll one" feature tells LVGL to allow scrolling only one
212 and setting scroll snap alignment to something other than
222 be outside the visible area of the scrollable Widget. If the "scroll on
223 focus" feature is enabled LVGL will automatically scroll Widgets to
236 - ``lv_obj_scroll_by(widget, x, y, LV_ANIM_ON/OFF)`` scroll by ``x`` and ``y`` values
237 - ``lv_obj_scroll_to(widget, x, y, LV_ANIM_ON/OFF)`` scroll to bring the given coordinate to the to…
238 - ``lv_obj_scroll_to_x(widget, x, LV_ANIM_ON/OFF)`` scroll to bring the given coordinate to the lef…
239 - ``lv_obj_scroll_to_y(widget, y, LV_ANIM_ON/OFF)`` scroll to bring the given coordinate to the top…
241 From time to time you may need to retrieve the *scroll position* of a
243 elements according to its current scroll position. Here is an example to illustrate
244 how to combine scroll event and store the scroll-top position.
268 Setting scroll position can be done with these functions:
321 .. include:: ../../examples/scroll/index.rst