Home
last modified time | relevance | path

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

/lvgl-latest/tests/src/test_cases/
Dtest_table.c98 lv_coord_t singleline_row_height = table_ptr->row_h[0]; in test_table_row_height_should_increase_with_multiline_cell_value()
101 lv_coord_t multiline_row_height = table_ptr->row_h[0]; in test_table_row_height_should_increase_with_multiline_cell_value()
115 lv_coord_t row_height = table_ptr->row_h[0]; in test_table_should_wrap_long_texts()
118 lv_coord_t wrapped_row_height = table_ptr->row_h[0]; in test_table_should_wrap_long_texts()
/lvgl-latest/src/widgets/
Dlv_table.c217 table->row_h = lv_mem_realloc(table->row_h, table->row_cnt * sizeof(table->row_h[0])); in lv_table_set_row_cnt()
218 LV_ASSERT_MALLOC(table->row_h); in lv_table_set_row_cnt()
219 if(table->row_h == NULL) return; in lv_table_set_row_cnt()
514 table->row_h = lv_mem_alloc(table->row_cnt * sizeof(table->row_h[0])); in lv_table_constructor()
516 table->row_h[0] = LV_DPI_DEF; in lv_table_constructor()
543 if(table->row_h) lv_mem_free(table->row_h); in lv_table_destructor()
571 for(i = 0; i < table->row_cnt; i++) h += table->row_h[i]; in lv_table_event()
721 lv_coord_t h_row = table->row_h[row]; in draw_main()
883 table->row_h[i] = LV_CLAMP(minh, calculated_height, maxh); in refr_size_form_row()
908 lv_coord_t prev_row_size = table->row_h[row]; in refr_cell_size()
[all …]
Dlv_table.h64 lv_coord_t * row_h; member
/lvgl-latest/src/extra/layouts/grid/
Dlv_grid.c592 lv_coord_t row_h = row_y2 - row_y1; in item_repos() local
634 item_h = row_h; in item_repos()
638 y = c->y[row_pos] + (row_h - item_h) / 2; in item_repos()
642 y = c->y[row_pos] + row_h - lv_obj_get_height(item); in item_repos()