Searched refs:lv_table_set_column_count (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_table.c | 180 lv_table_set_column_count(table, 5); in test_table_rendering() 218 lv_table_set_column_count(table, initial_col_num); in test_table_should_reduce_cells() 228 lv_table_set_column_count(table, final_col_num); in test_table_should_reduce_cells() 248 lv_table_set_column_count(table, initial_col_num); in test_table_should_reduce_cells_with_more_than_one_row() 258 lv_table_set_column_count(table, final_col_num); in test_table_should_reduce_cells_with_more_than_one_row() 271 lv_table_set_column_count(table, 2); in test_table_should_set_selected_cell() 287 lv_table_set_column_count(table, 2); in test_table_cell_select_should_not_exceed_table_bounds() 303 lv_table_set_column_count(table, 5); in test_table_cell_select_should_not_allow_set_on_table_with_no_rows()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.h | 96 void lv_table_set_column_count(lv_obj_t * obj, uint32_t col_cnt);
|
D | lv_table.c | 99 if(col >= table->col_cnt) lv_table_set_column_count(obj, col + 1); in lv_table_set_cell_value() 133 lv_table_set_column_count(obj, col + 1); in lv_table_set_cell_value_fmt() 246 void lv_table_set_column_count(lv_obj_t * obj, uint32_t col_cnt) in lv_table_set_column_count() function 312 if(col_id >= table->col_cnt) lv_table_set_column_count(obj, col_id + 1); in lv_table_set_column_width() 325 if(col >= table->col_cnt) lv_table_set_column_count(obj, col + 1); in lv_table_add_cell_ctrl() 350 if(col >= table->col_cnt) lv_table_set_column_count(obj, col + 1); in lv_table_clear_cell_ctrl() 375 if(col >= table->col_cnt) lv_table_set_column_count(obj, col + 1); in lv_table_set_cell_user_data()
|
/lvgl-latest/src/others/xml/parsers/ |
D | lv_xml_table_parser.c | 59 if(lv_streq("column_conunt", name)) lv_table_set_column_count(item, lv_xml_atoi(value)); in lv_xml_table_apply()
|
/lvgl-latest/examples/widgets/table/ |
D | lv_example_table_2.c | 77 lv_table_set_column_count(table, 1); in lv_example_table_2()
|
/lvgl-latest/src/ |
D | lv_api_map_v8.h | 244 #define lv_table_set_col_cnt lv_table_set_column_count
|
/lvgl-latest/docs/details/widgets/ |
D | table.rst | 58 :cpp:expr:`lv_table_set_column_count(table, col_cnt)`.
|
/lvgl-latest/src/others/file_explorer/ |
D | lv_file_explorer.c | 331 lv_table_set_column_count(explorer->file_table, 1); in lv_file_explorer_constructor()
|