Searched refs:lv_table_set_col_cnt (Results 1 – 7 of 7) sorted by relevance
/lvgl-latest/tests/src/test_cases/ |
D | test_table.c | 159 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/ |
D | lv_table.h | 127 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt);
|
D | lv_table.c | 94 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/ |
D | lv_example_table_2.c | 70 lv_table_set_col_cnt(table, 1); in lv_example_table_2()
|
/lvgl-latest/docs/widgets/core/ |
D | table.md | 30 … rows and columns use `lv_table_set_row_cnt(table, row_cnt)` and `lv_table_set_col_cnt(table, col_…
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 818 lv_table_set_col_cnt(table, 2); in generate_report()
|
/lvgl-latest/docs/ |
D | CHANGELOG.md | 1887 - Fix crash if `lv_table_set_col_cnt` is called before `lv_table_set_row_cnt` for the first time
|