Lines Matching refs:row
24 uint8_t row : 1; member
213 f.row = flow & _LV_FLEX_COLUMN ? 0 : 1; in flex_update()
221 …lv_coord_t track_gap = !f.row ? lv_obj_get_style_pad_column(cont, LV_PART_MAIN) : lv_obj_get_style… in flex_update()
223 …lv_coord_t item_gap = f.row ? lv_obj_get_style_pad_column(cont, LV_PART_MAIN) : lv_obj_get_style_p… in flex_update()
225 …lv_coord_t max_main_size = (f.row ? lv_obj_get_content_width(cont) : lv_obj_get_content_height(con… in flex_update()
233 lv_coord_t * cross_pos = (f.row ? &abs_y : &abs_x); in flex_update()
239 if((f.row && h_set == LV_SIZE_CONTENT && cont->h_layout == 0) || in flex_update()
240 (!f.row && w_set == LV_SIZE_CONTENT && cont->w_layout == 0)) { in flex_update()
244 if(rtl && !f.row) { in flex_update()
270 …lv_coord_t max_cross_size = (f.row ? lv_obj_get_content_height(cont) : lv_obj_get_content_width(co… in flex_update()
276 if(rtl && !f.row) { in flex_update()
286 if(rtl && !f.row) { in flex_update()
293 if(rtl && !f.row) { in flex_update()
321 if(f->wrap && ((f->row && w_set == LV_SIZE_CONTENT) || (!f->row && h_set == LV_SIZE_CONTENT))) { in find_track_end()
324 lv_coord_t(*get_main_size)(const lv_obj_t *) = (f->row ? lv_obj_get_width : lv_obj_get_height); in find_track_end()
325 … lv_coord_t(*get_cross_size)(const lv_obj_t *) = (!f->row ? lv_obj_get_width : lv_obj_get_height); in find_track_end()
355 … new_dsc[t->grow_item_cnt - 1].min_size = f->row ? lv_obj_get_style_min_width(item, in find_track_end()
357 … new_dsc[t->grow_item_cnt - 1].max_size = f->row ? lv_obj_get_style_max_width(item, in find_track_end()
404 …void (*area_set_main_size)(lv_area_t *, lv_coord_t) = (f->row ? lv_area_set_width : lv_area_set_he… in children_repos()
405 …lv_coord_t (*area_get_main_size)(const lv_area_t *) = (f->row ? lv_area_get_width : lv_area_get_he… in children_repos()
406 …lv_coord_t (*area_get_cross_size)(const lv_area_t *) = (!f->row ? lv_area_get_width : lv_area_get_… in children_repos()
449 if(f->row && rtl) main_pos += lv_obj_get_content_width(cont); in children_repos()
468 if(f->row) { in children_repos()
507 if(f->row && rtl) main_pos -= area_get_main_size(&item->coords); in children_repos()
519 diff_x += f->row ? main_pos : cross_pos; in children_repos()
520 diff_y += f->row ? cross_pos : main_pos; in children_repos()
532 if(!(f->row && rtl)) main_pos += area_get_main_size(&item->coords) + item_gap + place_gap; in children_repos()