Home
last modified time | relevance | path

Searched refs:file_explorer (Results 1 – 8 of 8) sorted by relevance

/lvgl-latest/examples/others/file_explorer/
Dlv_example_file_explorer_1.c23 lv_obj_t * file_explorer = lv_file_explorer_create(lv_screen_active()); in lv_example_file_explorer_1() local
24 lv_file_explorer_set_sort(file_explorer, LV_EXPLORER_SORT_KIND); in lv_example_file_explorer_1()
39 lv_file_explorer_open_dir(file_explorer, "C:C:/"); in lv_example_file_explorer_1()
41 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_HOME_DIR, "C:C:/Users/Public/Des… in lv_example_file_explorer_1()
42 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_VIDEO_DIR, "C:C:/Users/Public/Vi… in lv_example_file_explorer_1()
43 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_PICTURES_DIR, "C:C:/Users/Public… in lv_example_file_explorer_1()
44 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_MUSIC_DIR, "C:C:/Users/Public/Mu… in lv_example_file_explorer_1()
45 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_DOCS_DIR, "C:C:/Users/Public/Doc… in lv_example_file_explorer_1()
46 lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_FS_DIR, "C:C:/"); in lv_example_file_explorer_1()
51 lv_file_explorer_open_dir(file_explorer, "A:/"); in lv_example_file_explorer_1()
[all …]
Dlv_example_file_explorer_2.c27 lv_obj_t * file_explorer = lv_event_get_user_data(e); in btn_event_handler() local
31 lv_obj_add_flag(file_explorer, LV_OBJ_FLAG_HIDDEN); in btn_event_handler()
33 lv_obj_remove_flag(file_explorer, LV_OBJ_FLAG_HIDDEN); in btn_event_handler()
58 lv_obj_t * file_explorer = lv_file_explorer_create(lv_screen_active()); in lv_example_file_explorer_2() local
73 lv_file_explorer_open_dir(file_explorer, "C:C:/"); in lv_example_file_explorer_2()
75 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_HOME_DIR, "C:C:/Users/Public/Des… in lv_example_file_explorer_2()
76 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_VIDEO_DIR, "C:C:/Users/Public/Vi… in lv_example_file_explorer_2()
77 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_PICTURES_DIR, "C:C:/Users/Public… in lv_example_file_explorer_2()
78 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_MUSIC_DIR, "C:C:/Users/Public/Mu… in lv_example_file_explorer_2()
79 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_DOCS_DIR, "C:C:/Users/Public/Doc… in lv_example_file_explorer_2()
[all …]
Dlv_example_file_explorer_3.c66 lv_obj_t * file_explorer = lv_file_explorer_create(lv_screen_active()); in lv_example_file_explorer_3() local
68 lv_file_explorer_set_sort(file_explorer, LV_EXPLORER_SORT_NONE); in lv_example_file_explorer_3()
83 lv_file_explorer_open_dir(file_explorer, "C:C:/"); in lv_example_file_explorer_3()
85 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_HOME_DIR, "C:C:/Users/Public/Des… in lv_example_file_explorer_3()
86 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_VIDEO_DIR, "C:C:/Users/Public/Vi… in lv_example_file_explorer_3()
87 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_PICTURES_DIR, "C:C:/Users/Public… in lv_example_file_explorer_3()
88 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_MUSIC_DIR, "C:C:/Users/Public/Mu… in lv_example_file_explorer_3()
89 …lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_DOCS_DIR, "C:C:/Users/Public/Doc… in lv_example_file_explorer_3()
90 lv_file_explorer_set_quick_access_path(file_explorer, LV_EXPLORER_FS_DIR, "C:C:/"); in lv_example_file_explorer_3()
95 lv_file_explorer_open_dir(file_explorer, "A:/"); in lv_example_file_explorer_3()
[all …]
Dindex.rst5 .. lv_example:: others/file_explorer/lv_example_file_explorer_1
11 .. lv_example:: others/file_explorer/lv_example_file_explorer_2
17 .. lv_example:: others/file_explorer/lv_example_file_explorer_3
/lvgl-latest/tests/src/test_cases/
Dtest_file_explorer.c11 static lv_file_explorer_t * file_explorer; variable
18 file_explorer = (lv_file_explorer_t *)file_explorer_obj; in setUp()
19 file_table = (lv_table_t *)file_explorer->file_table; in setUp()
43 …if(lv_strcmp(lv_table_get_cell_value(file_explorer->file_table, i, 0), LV_SYMBOL_LEFT " Back") ==… in test_file_explorer_read_dir()
46 …if(lv_strcmp(lv_table_get_cell_value(file_explorer->file_table, i, 0), LV_SYMBOL_DIRECTORY " dev"… in test_file_explorer_read_dir()
49 …if(lv_strcmp(lv_table_get_cell_value(file_explorer->file_table, i, 0), LV_SYMBOL_DIRECTORY " home… in test_file_explorer_read_dir()
57 lv_obj_send_event(file_explorer->file_table, LV_EVENT_VALUE_CHANGED, NULL); in test_file_explorer_read_dir()
62 …if(lv_strcmp(lv_table_get_cell_value(file_explorer->file_table, i, 0), LV_SYMBOL_DIRECTORY " shm"… in test_file_explorer_read_dir()
68 lv_obj_send_event(file_explorer->file_table, LV_EVENT_VALUE_CHANGED, NULL); in test_file_explorer_read_dir()
73 lv_obj_send_event(file_explorer->file_table, LV_EVENT_VALUE_CHANGED, NULL); in test_file_explorer_read_dir()
[all …]
/lvgl-latest/docs/details/other-components/
Dindex.rst10 file_explorer
Dfile_explorer.rst218 .. include:: ../../examples/others/file_explorer/index.rst
/lvgl-latest/env_support/qnx/
Dcommon.mk66 $(SRC_ROOT)/others/file_explorer \