Home
last modified time | relevance | path

Searched refs:lv_obj_get_scroll_y (Results 1 – 10 of 10) sorted by relevance

/lvgl-latest/examples/scroll/
Dlv_example_scroll_1.c20 lv_obj_get_scroll_y(panel), in scroll_update_cb()
34 saved_scroll_y = lv_obj_get_scroll_y(panel); in button_event_cb()
/lvgl-latest/src/core/
Dlv_obj_scroll.c124 int32_t lv_obj_get_scroll_y(const lv_obj_t * obj) in lv_obj_get_scroll_y() function
160 self_h -= lv_obj_get_scroll_y(obj); in lv_obj_get_scroll_bottom()
251 end->y = a ? -a->end_value : lv_obj_get_scroll_y(obj); in lv_obj_get_scroll_end()
289 int32_t y_current = -lv_obj_get_scroll_y(obj); in lv_obj_scroll_by_bounded()
335 int32_t sy = lv_obj_get_scroll_y(obj); in lv_obj_scroll_by()
383 int32_t scroll_y = lv_obj_get_scroll_y(obj); in lv_obj_scroll_to_y()
693 lv_obj_scroll_by_raw(obj, 0, v + lv_obj_get_scroll_y(obj)); in scroll_y_anim()
Dlv_obj_scroll.h132 int32_t lv_obj_get_scroll_y(const lv_obj_t * obj);
Dlv_obj.c785 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) + lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event()
788 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) - lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event()
793 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) + lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event()
800 … lv_obj_scroll_to_y(obj, lv_obj_get_scroll_y(obj) - lv_obj_get_height(obj) / 4, anim_enable); in lv_obj_event()
Dlv_obj_pos.c517 rel_y += lv_obj_get_scroll_y(parent); in lv_obj_get_y()
708 y += parent->coords.y1 - lv_obj_get_scroll_y(parent); in lv_obj_move_to()
1180 int32_t scroll_y_tmp = lv_obj_get_scroll_y(obj); in calc_content_height()
/lvgl-latest/src/widgets/line/
Dlv_line.c235 int32_t y_ofs = area.y1 - lv_obj_get_scroll_y(obj); in lv_line_event()
/lvgl-latest/docs/details/base-widget/
Dscroll.rst262 - :cpp:expr:`lv_obj_get_scroll_y(widget)` Pixels scrolled past top of Widget's view window.
263 - :cpp:expr:`lv_obj_get_scroll_top(widget)` Identical to :cpp:expr:`lv_obj_get_scroll_y(widget)`
/lvgl-latest/src/widgets/table/
Dlv_table.c714 cell_area.y2 = obj->coords.y1 + bg_top - 1 - lv_obj_get_scroll_y(obj) + border_width; in draw_main()
1036 int32_t y = p.y + lv_obj_get_scroll_y(obj);; in get_pressed_cell()
1115 area->y1 -= lv_obj_get_scroll_y(obj); in get_cell_area()
/lvgl-latest/src/layouts/flex/
Dlv_flex.c147 … LV_PART_MAIN) - lv_obj_get_scroll_y(cont); in flex_update()
/lvgl-latest/src/layouts/grid/
Dlv_grid.c207 hint.grid_abs.y = pad_top + cont->coords.y1 - lv_obj_get_scroll_y(cont); in grid_update()