Home
last modified time | relevance | path

Searched refs:lv_obj_get_style_margin_left (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/src/layouts/grid/
Dlv_grid.c109 return lv_obj_get_style_margin_left(obj, LV_PART_MAIN) in get_margin_hor()
498 x = c->x[col_pos] + lv_obj_get_style_margin_left(item, LV_PART_MAIN); in item_repos()
502 x = c->x[col_pos] + lv_obj_get_style_margin_left(item, LV_PART_MAIN); in item_repos()
507 … x = c->x[col_pos] + (col_w - item_w) / 2 + (lv_obj_get_style_margin_left(item, LV_PART_MAIN) - in item_repos()
/lvgl-latest/src/layouts/flex/
Dlv_flex.c341 …margin_func_t get_margin_main_start = (f->row ? lv_obj_get_style_margin_left : lv_obj_get_style_ma… in children_repos()
343 …margin_func_t get_margin_cross_start = (!f->row ? lv_obj_get_style_margin_left : lv_obj_get_style_… in children_repos()
540 return lv_obj_get_style_margin_left(obj, LV_PART_MAIN) in lv_obj_get_width_with_margin()
/lvgl-latest/src/core/
Dlv_obj_pos.c121 …w -= lv_obj_get_style_margin_left(obj, LV_PART_MAIN) + lv_obj_get_style_margin_right(obj, LV_PART_… in lv_obj_refr_size()
1119 child_res_tmp += lv_obj_get_style_margin_left(child, LV_PART_MAIN); in calc_content_width()
1127 … child_res = LV_MAX(child_res, child_res_tmp + lv_obj_get_style_margin_left(child, LV_PART_MAIN)); in calc_content_width()
Dlv_obj_scroll.c188 int32_t tmp_x = child->coords.x1 - lv_obj_get_style_margin_left(child, LV_PART_MAIN); in lv_obj_get_scroll_left()
Dlv_obj_style_gen.h208 static inline int32_t lv_obj_get_style_margin_left(const lv_obj_t * obj, lv_part_t part) in lv_obj_get_style_margin_left() function