Searched refs:row_pos (Results 1 – 3 of 3) sorted by relevance
/lvgl-3.7.0/src/extra/layouts/grid/ |
D | lv_grid.c | 160 lv_grid_align_t y_align, uint8_t row_pos, uint8_t row_span) in lv_obj_set_grid_cell() argument 164 lv_obj_set_style_grid_cell_row_pos(obj, row_pos, 0); in lv_obj_set_grid_cell() 517 uint32_t row_pos = get_row_pos(item); in calc_rows() local 518 if(row_pos != i) continue; in calc_rows() 582 uint32_t row_pos = get_row_pos(item); in item_repos() local 590 lv_coord_t row_y1 = c->y[row_pos]; in item_repos() 591 lv_coord_t row_y2 = c->y[row_pos + row_span - 1] + c->h[row_pos + row_span - 1]; in item_repos() 629 y = c->y[row_pos]; in item_repos() 633 y = c->y[row_pos]; in item_repos() 638 y = c->y[row_pos] + (row_h - item_h) / 2; in item_repos() [all …]
|
D | lv_grid.h | 89 lv_grid_align_t row_align, uint8_t row_pos, uint8_t row_span);
|
/lvgl-3.7.0/docs/layouts/ |
D | grid.md | 43 …`lv_obj_set_grid_cell(child, column_align, column_pos, column_span, row_align, row_pos, row_span)`. 50 `colum_pos` and `row_pos` means the zero based index of the cell into the item should be placed.
|