Home
last modified time | relevance | path

Searched refs:lv_dropdown_set_options (Results 1 – 15 of 15) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_dropdown.c62 lv_dropdown_set_options(dd1, "a1\nb2\nc3\nd4\ne5\nf6"); in test_dropdown_set_options()
89lv_dropdown_set_options(dd1, "o1\no2"); /*Just to add some content before lv_dropdown_set_options_… in test_dropdown_set_options()
172 lv_dropdown_set_options(dd1, "1\n2\n3\n4\n5\n6\n7\n8"); in test_dropdown_keypad()
274 lv_dropdown_set_options(dd1, "1\n2\n3\n4\n5\n6\n7\n8"); in test_dropdown_encoder()
356lv_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()
372 lv_dropdown_set_options(dd1, "1\n2"); in test_dropdown_render_2()
378 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()
386lv_dropdown_set_options(dd3, "1aaaaaaaaaaaaaaaa\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2()
392lv_dropdown_set_options(dd4, "1aaaaaaaaaaaaaaaa\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15"); in test_dropdown_render_2()
400 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/widgets/calendar/
Dlv_calendar_header_dropdown.c92 lv_dropdown_set_options(year_dropdown, years_list); in lv_calendar_header_dropdown_set_year_list()
112 lv_dropdown_set_options(year_dd, year_list); in my_constructor()
117 lv_dropdown_set_options(month_dd, month_list); in my_constructor()
/lvgl-latest/examples/widgets/dropdown/
Dlv_example_dropdown_1.c20 lv_dropdown_set_options(dd, "Apple\n" in lv_example_dropdown_1()
Dlv_example_dropdown_3.c20 lv_dropdown_set_options(dropdown, "New project\n" in lv_example_dropdown_3()
/lvgl-latest/src/others/xml/parsers/
Dlv_xml_dropdown_parser.c58 if(lv_streq("options", name)) lv_dropdown_set_options(item, value); in lv_xml_dropdown_apply()
/lvgl-latest/examples/others/observer/
Dlv_example_observer_3.c90 lv_dropdown_set_options(format_dropdown, "12\n24"); in set_btn_clicked_event_cb()
96 lv_dropdown_set_options(am_pm_dropdown, "am\npm"); in set_btn_clicked_event_cb()
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.h83 void lv_dropdown_set_options(lv_obj_t * obj, const char * options);
Dlv_dropdown.c74 .setter = lv_dropdown_set_options,
179 void lv_dropdown_set_options(lv_obj_t * obj, const char * options) in lv_dropdown_set_options() function
/lvgl-latest/tests/src/test_cases/
Dtest_bindings.c65 lv_dropdown_set_options(dropdown, "Lines\nBars"); in create_ui()
/lvgl-latest/demos/ebike/
Dlv_demo_ebike_settings.c180 lv_dropdown_set_options(dd, options); in dropdown_create()
/lvgl-latest/demos/stress/
Dlv_demo_stress.c210 lv_dropdown_set_options(obj, "Zero\nOne\nTwo\nThree\nFour\nFive\nSix\nSeven\nEight"); in obj_test_task_cb()
/lvgl-latest/docs/details/widgets/
Dcalendar.rst91 Drop-Down List Widget via :cpp:func:`lv_dropdown_set_options` so the passed string
Ddropdown.rst76 as the ``options`` argument to :cpp:expr:`lv_dropdown_set_options(dropdown, options)`.
/lvgl-latest/env_support/pikascript/
Dpika_lv_wegit.c196 lv_dropdown_set_options(lv_obj, options); in pika_lvgl_dropdown_set_options()
/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch_settings.c207 lv_dropdown_set_options(dropdown, options); in lv_demo_smartwatch_settings_add_dropdown()