Lines Matching refs:dd
14 lv_obj_t * dd; in lv_example_dropdown_2() local
15 dd = lv_dropdown_create(lv_screen_active()); in lv_example_dropdown_2()
16 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
17 lv_obj_align(dd, LV_ALIGN_TOP_MID, 0, 10); in lv_example_dropdown_2()
19 dd = lv_dropdown_create(lv_screen_active()); in lv_example_dropdown_2()
20 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
21 lv_dropdown_set_dir(dd, LV_DIR_BOTTOM); in lv_example_dropdown_2()
22 lv_dropdown_set_symbol(dd, LV_SYMBOL_UP); in lv_example_dropdown_2()
23 lv_obj_align(dd, LV_ALIGN_BOTTOM_MID, 0, -10); in lv_example_dropdown_2()
25 dd = lv_dropdown_create(lv_screen_active()); in lv_example_dropdown_2()
26 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
27 lv_dropdown_set_dir(dd, LV_DIR_RIGHT); in lv_example_dropdown_2()
28 lv_dropdown_set_symbol(dd, LV_SYMBOL_RIGHT); in lv_example_dropdown_2()
29 lv_obj_align(dd, LV_ALIGN_LEFT_MID, 10, 0); in lv_example_dropdown_2()
31 dd = lv_dropdown_create(lv_screen_active()); in lv_example_dropdown_2()
32 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
33 lv_dropdown_set_dir(dd, LV_DIR_LEFT); in lv_example_dropdown_2()
34 lv_dropdown_set_symbol(dd, LV_SYMBOL_LEFT); in lv_example_dropdown_2()
35 lv_obj_align(dd, LV_ALIGN_RIGHT_MID, -10, 0); in lv_example_dropdown_2()