/lvgl-latest/demos/music/ |
D | lv_demo_music.c | 187 lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON); in auto_step_cb() 190 lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON); in auto_step_cb() 194 lv_obj_scroll_by(ctrl, 0, -LV_VER_RES, LV_ANIM_ON); in auto_step_cb() 198 lv_obj_scroll_by(list, 0, -300, LV_ANIM_ON); in auto_step_cb() 201 lv_obj_scroll_by(list, 0, 300, LV_ANIM_ON); in auto_step_cb() 207 lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON); in auto_step_cb() 211 lv_obj_scroll_by(ctrl, 0, LV_VER_RES, LV_ANIM_ON); in auto_step_cb()
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_7.c | 44 lv_obj_scroll_by(obj, 0, bottom_before - bottom_after, LV_ANIM_OFF); in update_scroll() 63 lv_obj_scroll_by(obj, 0, bottom_before - bottom_after, LV_ANIM_OFF); in update_scroll()
|
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_clip_corner.c | 40 lv_obj_scroll_by(parent, -15, -15, LV_ANIM_OFF); in create_panel()
|
/lvgl-latest/src/core/ |
D | lv_obj_scroll.c | 302 lv_obj_scroll_by(obj, dx, dy, anim_en); in lv_obj_scroll_by_bounded() 306 void lv_obj_scroll_by(lv_obj_t * obj, int32_t dx, int32_t dy, lv_anim_enable_t anim_en) in lv_obj_scroll_by() function 458 lv_obj_scroll_by(obj, p.x, p.y, anim_en); in lv_obj_update_snap() 658 lv_obj_scroll_by(obj, 0, sb, anim_en); in lv_obj_readjust_scroll() 669 lv_obj_scroll_by(obj, sr, 0, anim_en); in lv_obj_readjust_scroll() 676 lv_obj_scroll_by(obj, sl, 0, anim_en); in lv_obj_readjust_scroll() 812 lv_obj_scroll_by(parent, x_scroll, y_scroll, anim_en); in scroll_area_into_view()
|
D | lv_obj_scroll.h | 195 void lv_obj_scroll_by(lv_obj_t * obj, int32_t dx, int32_t dy, lv_anim_enable_t anim_en);
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 357 lv_obj_scroll_by(main_page, 0, 20, LV_ANIM_ON); in obj_test_task_cb() 379 lv_obj_scroll_by(main_page, 0, 20, LV_ANIM_ON); in obj_test_task_cb() 394 lv_obj_scroll_by(main_page, 0, 20, LV_ANIM_ON); in obj_test_task_cb()
|
/lvgl-latest/src/indev/ |
D | lv_indev_scroll.c | 162 lv_obj_scroll_by(scroll_obj, 0, diff_y + y, LV_ANIM_ON); in lv_indev_scroll_throw_handler() 188 lv_obj_scroll_by(scroll_obj, x + diff_x, 0, LV_ANIM_ON); in lv_indev_scroll_throw_handler() 202 lv_obj_scroll_by(scroll_obj, 0, st, LV_ANIM_ON); in lv_indev_scroll_throw_handler() 206 lv_obj_scroll_by(scroll_obj, 0, -sb, LV_ANIM_ON); in lv_indev_scroll_throw_handler() 218 lv_obj_scroll_by(scroll_obj, sl, 0, LV_ANIM_ON); in lv_indev_scroll_throw_handler() 222 lv_obj_scroll_by(scroll_obj, -sr, 0, LV_ANIM_ON); in lv_indev_scroll_throw_handler()
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_list.c | 98 lv_obj_scroll_by(app_list, 0, 1, LV_ANIM_OFF); in lv_demo_smartwatch_app_list_loading() 99 lv_obj_scroll_by(app_list, 0, -1, LV_ANIM_OFF); in lv_demo_smartwatch_app_list_loading()
|
D | lv_demo_smartwatch_notifications.c | 236 lv_obj_scroll_by(message_list, 0, 1, LV_ANIM_OFF); in notification_screen_events_cb() 237 lv_obj_scroll_by(message_list, 0, -1, LV_ANIM_OFF); in notification_screen_events_cb()
|
D | lv_demo_smartwatch_settings.c | 419 lv_obj_scroll_by(settings_list, 0, value ? 1 : -1, LV_ANIM_OFF); in settings_action_event_cb() 452 lv_obj_scroll_by(settings_list, 0, 1, LV_ANIM_OFF); in settings_screen_event_cb() 453 lv_obj_scroll_by(settings_list, 0, -1, LV_ANIM_OFF); in settings_screen_event_cb()
|
D | lv_demo_smartwatch_weather.c | 377 lv_obj_scroll_by(weather_forecast_daily, 0, 1, LV_ANIM_OFF); in weather_screen_event_cb() 378 lv_obj_scroll_by(weather_forecast_daily, 0, -1, LV_ANIM_OFF); in weather_screen_event_cb()
|
/lvgl-latest/demos/multilang/ |
D | lv_demo_multilang.c | 245 lv_obj_scroll_by(cont, -100, 0, LV_ANIM_ON); in inactive_timer_cb() 253 lv_obj_scroll_by(cont, 100, 0, LV_ANIM_ON); in inactive_timer_cb()
|
/lvgl-latest/docs/details/base-widget/ |
D | scroll.rst | 236 - ``lv_obj_scroll_by(widget, x, y, LV_ANIM_ON/OFF)`` scroll by ``x`` and ``y`` values 270 - :cpp:expr:`lv_obj_scroll_by(widget, dx, dy, anim_enable)` Scroll by given amount of…
|