Searched refs:lv_tileview_add_tile (Results 1 – 10 of 10) sorted by relevance
/lvgl-latest/examples/widgets/tileview/ |
D | lv_example_tileview_1.c | 14 lv_obj_t * tile1 = lv_tileview_add_tile(tv, 0, 0, LV_DIR_BOTTOM); in lv_example_tileview_1() 20 lv_obj_t * tile2 = lv_tileview_add_tile(tv, 0, 1, LV_DIR_TOP | LV_DIR_RIGHT); in lv_example_tileview_1() 31 lv_obj_t * tile3 = lv_tileview_add_tile(tv, 1, 1, LV_DIR_LEFT); in lv_example_tileview_1()
|
/lvgl-latest/src/widgets/tileview/ |
D | lv_tileview.h | 46 lv_obj_t * lv_tileview_add_tile(lv_obj_t * tv, uint8_t col_id, uint8_t row_id, lv_dir_t dir);
|
D | lv_tileview.c | 68 lv_obj_t * lv_tileview_add_tile(lv_obj_t * tv, uint8_t col_id, uint8_t row_id, lv_dir_t dir) in lv_tileview_add_tile() function
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 265 obj = lv_tileview_add_tile(tv, 0, 0, LV_DIR_ALL); in obj_test_task_cb() 269 obj = lv_tileview_add_tile(tv, 0, 1, LV_DIR_ALL); in obj_test_task_cb() 273 obj = lv_tileview_add_tile(tv, 1, 1, LV_DIR_ALL); in obj_test_task_cb()
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_notifications.c | 314 message_info_panel = lv_tileview_add_tile(notification_screen, 1, 0, LV_DIR_LEFT); in create_screen_notifications() 355 message_list_panel = lv_tileview_add_tile(notification_screen, 0, 0, LV_DIR_NONE); in create_screen_notifications()
|
D | lv_demo_smartwatch_weather.c | 261 weather_panel = lv_tileview_add_tile(weather_screen, 0, 0, LV_DIR_BOTTOM | LV_DIR_RIGHT); in create_screen_weather() 309 weather_daily_panel = lv_tileview_add_tile(weather_screen, 1, 0, LV_DIR_LEFT); in create_screen_weather() 337 weather_hourly_panel = lv_tileview_add_tile(weather_screen, 0, 1, LV_DIR_TOP); in create_screen_weather()
|
D | lv_demo_smartwatch_control.c | 56 control_screen = lv_tileview_add_tile(parent, 0, 0, LV_DIR_BOTTOM); in lv_demo_smartwatch_control_create()
|
D | lv_demo_smartwatch_list.c | 77 app_list_screen = lv_tileview_add_tile(parent, 1, 1, LV_DIR_LEFT); in lv_demo_smartwatch_list_create()
|
D | lv_demo_smartwatch_home.c | 103 home_panel = lv_tileview_add_tile(parent, 0, 1, LV_DIR_TOP | LV_DIR_RIGHT); in lv_demo_smartwatch_home_create()
|
/lvgl-latest/docs/details/widgets/ |
D | tileview.rst | 41 :cpp:expr:`lv_tileview_add_tile(tileview, col_id, row_id, dir)` creates a new
|