Searched refs:lv_table_set_row_count (Results 1 – 9 of 9) sorted by relevance
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_table.c | 23 lv_table_set_row_count(table, 0); in test_table_should_set_row_count_to_zero() 181 lv_table_set_row_count(table, 5); in test_table_rendering() 219 lv_table_set_row_count(table, initial_row_num); in test_table_should_reduce_cells() 229 lv_table_set_row_count(table, final_row_num); in test_table_should_reduce_cells() 249 lv_table_set_row_count(table, initial_row_num); in test_table_should_reduce_cells_with_more_than_one_row() 259 lv_table_set_row_count(table, final_row_num); in test_table_should_reduce_cells_with_more_than_one_row() 270 lv_table_set_row_count(table, 2); in test_table_should_set_selected_cell() 286 lv_table_set_row_count(table, 2); in test_table_cell_select_should_not_exceed_table_bounds() 302 lv_table_set_row_count(table, 0); in test_table_cell_select_should_not_allow_set_on_table_with_no_rows()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.h | 89 void lv_table_set_row_count(lv_obj_t * obj, uint32_t row_cnt);
|
D | lv_table.c | 100 if(row >= table->row_cnt) lv_table_set_row_count(obj, row + 1); in lv_table_set_cell_value() 138 lv_table_set_row_count(obj, row + 1); in lv_table_set_cell_value_fmt() 203 void lv_table_set_row_count(lv_obj_t * obj, uint32_t row_cnt) in lv_table_set_row_count() function 326 if(row >= table->row_cnt) lv_table_set_row_count(obj, row + 1); in lv_table_add_cell_ctrl() 351 if(row >= table->row_cnt) lv_table_set_row_count(obj, row + 1); in lv_table_clear_cell_ctrl() 376 if(row >= table->row_cnt) lv_table_set_row_count(obj, row + 1); in lv_table_set_cell_user_data()
|
/lvgl-latest/src/others/xml/parsers/ |
D | lv_xml_table_parser.c | 60 else if(lv_streq("row_conunt", name)) lv_table_set_row_count(item, lv_xml_atoi(value)); in lv_xml_table_apply()
|
/lvgl-latest/examples/widgets/table/ |
D | lv_example_table_2.c | 76 …lv_table_set_row_count(table, ITEM_CNT); /*Not required but avoids a lot of memory reallocation lv… in lv_example_table_2()
|
/lvgl-latest/src/ |
D | lv_api_map_v8.h | 245 #define lv_table_set_row_cnt lv_table_set_row_count
|
/lvgl-latest/docs/details/widgets/ |
D | table.rst | 57 :cpp:expr:`lv_table_set_row_count(table, row_cnt)` and
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 302 lv_table_set_row_count(obj, 5); in obj_test_task_cb()
|
/lvgl-latest/src/others/file_explorer/ |
D | lv_file_explorer.c | 615 lv_table_set_row_count(explorer->file_table, index); in show_dir()
|