Searched refs:lv_dropdown_set_options (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/tests/src/test_cases/ |
D | test_dropdown.c | 60 lv_dropdown_set_options(dd1, "a1\nb2\nc3\nd4\ne5\nf6"); in test_dropdown_set_options() 87 …lv_dropdown_set_options(dd1, "o1\no2"); /*Just to add some content before lv_dropdown_set_options_… in test_dropdown_set_options() 170 lv_dropdown_set_options(dd1, "1\n2\n3\n4\n5\n6\n7\n8"); in test_dropdown_keypad() 272 lv_dropdown_set_options(dd1, "1\n2\n3\n4\n5\n6\n7\n8"); in test_dropdown_encoder() 354 …lv_dropdown_set_options(dd3, "a0\na1\na2\na3\na4\na5\na6\na7\na8\na9\na10\na11\na12\na13\na14\na15… in test_dropdown_render_1() 370 lv_dropdown_set_options(dd1, "1\n2"); in test_dropdown_render_2() 376 lv_dropdown_set_options(dd2, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2() 383 … lv_dropdown_set_options(dd3, "1aaaaaaaaaaaaaaaa\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2() 389 … lv_dropdown_set_options(dd4, "1aaaaaaaaaaaaaaaa\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2() 397 lv_dropdown_set_options(dd5, "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2() [all …]
|
/lvgl-latest/src/extra/widgets/calendar/ |
D | lv_calendar_header_dropdown.c | 103 lv_dropdown_set_options(child, years_list); in lv_calendar_header_dropdown_set_year_list() 123 lv_dropdown_set_options(year_dd, year_list); in my_constructor() 128 lv_dropdown_set_options(month_dd, month_list); in my_constructor()
|
/lvgl-latest/examples/widgets/dropdown/ |
D | lv_example_dropdown_1.c | 20 lv_dropdown_set_options(dd, "Apple\n" in lv_example_dropdown_1()
|
D | lv_example_dropdown_3.c | 20 lv_dropdown_set_options(dropdown, "New project\n" in lv_example_dropdown_3()
|
/lvgl-latest/src/widgets/ |
D | lv_dropdown.h | 91 void lv_dropdown_set_options(lv_obj_t * obj, const char * options);
|
D | lv_dropdown.c | 113 void lv_dropdown_set_options(lv_obj_t * obj, const char * options) in lv_dropdown_set_options() function
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 228 lv_dropdown_set_options(obj, "Zero\nOne\nTwo\nThree\nFour\nFive\nSix\nSeven\nEight"); in obj_test_timer_cb()
|
/lvgl-latest/docs/widgets/core/ |
D | dropdown.md | 42 Options are passed to the drop-down list as a string with `lv_dropdown_set_options(dropdown, option…
|