Home
last modified time | relevance | path

Searched refs:lv_table_add_cell_ctrl (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_table.c61 lv_table_add_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_identify_cell_with_ctrl()
70 lv_table_add_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_should_clear_selected_cell_ctrl()
83lv_table_add_cell_ctrl(table, 0, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT | LV_TABLE_CELL_CTRL_TEXT_CROP); in test_table_should_keep_not_selected_cell_ctrl()
185 lv_table_add_cell_ctrl(table, 0, 1, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_rendering()
188 lv_table_add_cell_ctrl(table, 1, 0, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_rendering()
189 lv_table_add_cell_ctrl(table, 1, 1, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_rendering()
190 lv_table_add_cell_ctrl(table, 1, 2, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_rendering()
191 lv_table_add_cell_ctrl(table, 1, 3, LV_TABLE_CELL_CTRL_MERGE_RIGHT); in test_table_rendering()
202 lv_table_add_cell_ctrl(table, 4, 3, LV_TABLE_CELL_CTRL_TEXT_CROP); in test_table_rendering()
/lvgl-latest/src/widgets/table/
Dlv_table.h113 void lv_table_add_cell_ctrl(lv_obj_t * obj, uint32_t row, uint32_t col, lv_table_cell_ctrl_t ctrl);
Dlv_table.c318 void lv_table_add_cell_ctrl(lv_obj_t * obj, uint32_t row, uint32_t col, lv_table_cell_ctrl_t ctrl) in lv_table_add_cell_ctrl() function
/lvgl-latest/src/others/xml/parsers/
Dlv_xml_table_parser.c126 lv_table_add_cell_ctrl(table, row, column, ctrl); in lv_xml_table_cell_apply()
/lvgl-latest/examples/widgets/table/
Dlv_example_table_2.c56 else lv_table_add_cell_ctrl(obj, row, 0, LV_TABLE_CELL_CTRL_CUSTOM_1); in change_event_cb()
/lvgl-latest/docs/details/widgets/
Dtable.rst74 :cpp:expr:`lv_table_add_cell_ctrl(table, row, col, LV_TABLE_CELL_CTRL_MERGE_RIGHT)`.