Searched refs:lv_obj_get_scroll_y (Results 1 – 10 of 10) sorted by relevance
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_1.c | 20 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/ |
D | lv_obj_scroll.c | 124 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()
|
D | lv_obj_scroll.h | 132 int32_t lv_obj_get_scroll_y(const lv_obj_t * obj);
|
D | lv_obj.c | 785 … 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()
|
D | lv_obj_pos.c | 517 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/ |
D | lv_line.c | 235 int32_t y_ofs = area.y1 - lv_obj_get_scroll_y(obj); in lv_line_event()
|
/lvgl-latest/docs/details/base-widget/ |
D | scroll.rst | 262 - :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/ |
D | lv_table.c | 714 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/ |
D | lv_flex.c | 147 … LV_PART_MAIN) - lv_obj_get_scroll_y(cont); in flex_update()
|
/lvgl-latest/src/layouts/grid/ |
D | lv_grid.c | 207 hint.grid_abs.y = pad_top + cont->coords.y1 - lv_obj_get_scroll_y(cont); in grid_update()
|