Lines Matching refs:row

28     uint8_t row : 1;  member
133 f.row = flow & LV_FLEX_COLUMN ? 0 : 1; in flex_update()
141 …int32_t track_gap = !f.row ? lv_obj_get_style_pad_column(cont, LV_PART_MAIN) : lv_obj_get_style_pa… in flex_update()
143 …int32_t item_gap = f.row ? lv_obj_get_style_pad_column(cont, LV_PART_MAIN) : lv_obj_get_style_pad_… in flex_update()
145 …int32_t max_main_size = (f.row ? lv_obj_get_content_width(cont) : lv_obj_get_content_height(cont)); in flex_update()
152 int32_t * cross_pos = (f.row ? &abs_y : &abs_x); in flex_update()
158 if((f.row && h_set == LV_SIZE_CONTENT && cont->h_layout == 0) || in flex_update()
159 (!f.row && w_set == LV_SIZE_CONTENT && cont->w_layout == 0)) { in flex_update()
163 if(rtl && !f.row) { in flex_update()
189 …int32_t max_cross_size = (f.row ? lv_obj_get_content_height(cont) : lv_obj_get_content_width(cont)… in flex_update()
195 if(rtl && !f.row) { in flex_update()
205 if(rtl && !f.row) { in flex_update()
212 if(rtl && !f.row) { in flex_update()
240 if(f->wrap && ((f->row && w_set == LV_SIZE_CONTENT) || (!f->row && h_set == LV_SIZE_CONTENT))) { in find_track_end()
243 …int32_t(*get_main_size)(const lv_obj_t *) = (f->row ? lv_obj_get_width_with_margin : lv_obj_get_he… in find_track_end()
244 int32_t(*get_cross_size)(const lv_obj_t *) = (!f->row ? lv_obj_get_width_with_margin : in find_track_end()
263 int32_t min_size = f->row ? lv_obj_get_style_min_width(item, LV_PART_MAIN) in find_track_end()
286 … new_dsc[t->grow_item_cnt - 1].min_size = f->row ? lv_obj_get_style_min_width(item, LV_PART_MAIN) in find_track_end()
288 … new_dsc[t->grow_item_cnt - 1].max_size = f->row ? lv_obj_get_style_max_width(item, LV_PART_MAIN) in find_track_end()
336 …void (*area_set_main_size)(lv_area_t *, int32_t) = (f->row ? lv_area_set_width : lv_area_set_heigh… in children_repos()
337 …int32_t (*area_get_main_size)(const lv_area_t *) = (f->row ? lv_area_get_width : lv_area_get_heigh… in children_repos()
338 …int32_t (*area_get_cross_size)(const lv_area_t *) = (!f->row ? lv_area_get_width : lv_area_get_hei… in children_repos()
341 …margin_func_t get_margin_main_start = (f->row ? lv_obj_get_style_margin_left : lv_obj_get_style_ma… in children_repos()
342 …margin_func_t get_margin_main_end = (f->row ? lv_obj_get_style_margin_right : lv_obj_get_style_mar… 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()
344 …margin_func_t get_margin_cross_end = (!f->row ? lv_obj_get_style_margin_right : lv_obj_get_style_m… in children_repos()
387 if(f->row && rtl) main_pos += lv_obj_get_content_width(cont); in children_repos()
406 if(f->row) { in children_repos()
448 if(f->row && rtl) main_pos -= area_get_main_size(&item->coords); in children_repos()
460 diff_x += f->row ? main_pos + get_margin_main_start(item, LV_PART_MAIN) : cross_pos; in children_repos()
461 diff_y += f->row ? cross_pos : main_pos + get_margin_main_start(item, LV_PART_MAIN); in children_repos()
473 if(!(f->row && rtl)) main_pos += area_get_main_size(&item->coords) + item_gap + place_gap in children_repos()