Home
last modified time | relevance | path

Searched refs:lv_table_set_col_cnt (Results 1 – 7 of 7) sorted by relevance

/lvgl-latest/tests/src/test_cases/
Dtest_table.c159 lv_table_set_col_cnt(table, 5); in test_table_rendering()
197 lv_table_set_col_cnt(table, initial_col_num); in test_table_should_reduce_cells()
207 lv_table_set_col_cnt(table, final_col_num); in test_table_should_reduce_cells()
227 lv_table_set_col_cnt(table, initial_col_num); in test_table_should_reduce_cells_with_more_than_one_row()
237 lv_table_set_col_cnt(table, final_col_num); in test_table_should_reduce_cells_with_more_than_one_row()
/lvgl-latest/src/widgets/
Dlv_table.h127 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt);
Dlv_table.c94 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_set_cell_value()
132 lv_table_set_col_cnt(obj, col + 1); in lv_table_set_cell_value_fmt()
251 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt) in lv_table_set_col_cnt() function
319 if(col_id >= table->col_cnt) lv_table_set_col_cnt(obj, col_id + 1); in lv_table_set_col_width()
332 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_add_cell_ctrl()
359 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_clear_cell_ctrl()
387 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_set_cell_user_data()
/lvgl-latest/examples/widgets/table/
Dlv_example_table_2.c70 lv_table_set_col_cnt(table, 1); in lv_example_table_2()
/lvgl-latest/docs/widgets/core/
Dtable.md30 … rows and columns use `lv_table_set_row_cnt(table, row_cnt)` and `lv_table_set_col_cnt(table, col_…
/lvgl-latest/demos/benchmark/
Dlv_demo_benchmark.c818 lv_table_set_col_cnt(table, 2); in generate_report()
/lvgl-latest/docs/
DCHANGELOG.md1887 - Fix crash if `lv_table_set_col_cnt` is called before `lv_table_set_row_cnt` for the first time