Home
last modified time | relevance | path

Searched refs:row_h (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.4.0/src/widgets/
Dlv_table.c200 table->row_h[row] = LV_CLAMP(minh, h, maxh); in lv_table_set_cell_value_fmt()
213 table->row_h = lv_mem_realloc(table->row_h, table->row_cnt * sizeof(table->row_h[0])); in lv_table_set_row_cnt()
214 LV_ASSERT_MALLOC(table->row_h); in lv_table_set_row_cnt()
215 if(table->row_h == NULL) return; in lv_table_set_row_cnt()
248 table->col_w = lv_mem_realloc(table->col_w, col_cnt * sizeof(table->row_h[0])); in lv_table_set_col_cnt()
443 table->row_h = lv_mem_alloc(table->row_cnt * sizeof(table->row_h[0])); in lv_table_constructor()
445 table->row_h[0] = LV_DPI_DEF; in lv_table_constructor()
466 if(table->row_h) lv_mem_free(table->row_h); in lv_table_destructor()
494 for(i = 0; i < table->row_cnt; i++) h += table->row_h[i]; in lv_table_event()
649 lv_coord_t h_row = table->row_h[row]; in draw_main()
[all …]
Dlv_table.h55 lv_coord_t * row_h; member
/lvgl-3.4.0/src/extra/layouts/grid/
Dlv_grid.c599 lv_coord_t row_h = row_y2 - row_y1; in item_repos() local
642 item_h = row_h; in item_repos()
646 y = c->y[row_pos] + (row_h - item_h) / 2; in item_repos()
650 y = c->y[row_pos] + row_h - lv_obj_get_height(item); in item_repos()