/lvgl-3.7.0/examples/widgets/checkbox/ |
D | lv_example_checkbox_2.c | 14 lv_obj_t * old_cb = lv_obj_get_child(cont, *active_id); in radio_event_handler() 66 lv_obj_add_state(lv_obj_get_child(cont1, 0), LV_STATE_CHECKED); in lv_example_checkbox_2() 80 lv_obj_add_state(lv_obj_get_child(cont2, 0), LV_STATE_CHECKED); in lv_example_checkbox_2()
|
/lvgl-3.7.0/src/extra/widgets/calendar/ |
D | lv_calendar_header_dropdown.c | 79 child = lv_obj_get_child(parent, idx); in lv_calendar_header_dropdown_set_year_list() 93 child = lv_obj_get_child(child, idx); in lv_calendar_header_dropdown_set_year_list() 180 lv_obj_t * year_dd = lv_obj_get_child(header, 0); in value_changed_event_cb() 190 lv_obj_t * month_dd = lv_obj_get_child(header, 1); in value_changed_event_cb()
|
D | lv_calendar_header_arrow.c | 113 if(lv_obj_get_child(header, 0) == btn) { in month_event_cb() 134 lv_obj_t * label = lv_obj_get_child(header, 1); in month_event_cb() 144 lv_obj_t * label = lv_obj_get_child(header, 1); in value_changed_event_cb()
|
D | lv_calendar.c | 162 lv_obj_t * child = lv_obj_get_child(obj, i); in lv_calendar_set_showed_date()
|
/lvgl-3.7.0/examples/widgets/menu/ |
D | lv_example_menu_5.c | 88 lv_obj_add_event_cb(lv_obj_get_child(cont, 2), switch_handler, LV_EVENT_VALUE_CHANGED, menu); in lv_example_menu_5() 110 …lv_event_send(lv_obj_get_child(lv_obj_get_child(lv_menu_get_cur_sidebar_page(menu), 0), 0), LV_EVE… in lv_example_menu_5() 133 …lv_event_send(lv_obj_get_child(lv_obj_get_child(lv_menu_get_cur_sidebar_page(menu), 0), 0), LV_EVE… in switch_handler()
|
/lvgl-3.7.0/src/core/ |
D | lv_obj_tree.c | 87 lv_obj_t * child = lv_obj_get_child(obj, 0); in lv_obj_clean() 90 child = lv_obj_get_child(obj, 0); in lv_obj_clean() 293 lv_obj_t * lv_obj_get_child(const lv_obj_t * obj, int32_t id) in lv_obj_get_child() function 329 if(lv_obj_get_child(parent, i) == obj) return i; in lv_obj_get_index() 360 lv_obj_t * child = lv_obj_get_child(obj, 0); in obj_del_core() 363 child = lv_obj_get_child(obj, 0); in obj_del_core() 442 res = walk_core(lv_obj_get_child(obj, i), cb, user_data); in walk_core()
|
D | lv_obj_tree.h | 137 struct _lv_obj_t * lv_obj_get_child(const struct _lv_obj_t * obj, int32_t id);
|
/lvgl-3.7.0/examples/scroll/ |
D | lv_example_scroll_6.c | 16 lv_obj_t * child = lv_obj_get_child(cont, i); in scroll_event_cb() 77 lv_obj_scroll_to_view(lv_obj_get_child(cont, 0), LV_ANIM_OFF); in lv_example_scroll_6()
|
/lvgl-3.7.0/src/extra/widgets/win/ |
D | lv_win.c | 79 return lv_obj_get_child(win, 0); in lv_win_get_header() 84 return lv_obj_get_child(win, 1); in lv_win_get_content()
|
/lvgl-3.7.0/examples/widgets/list/ |
D | lv_example_list_2.c | 27 lv_obj_t * child = lv_obj_get_child(parent, i); in event_handler() 105 lv_obj_t * obj = lv_obj_get_child(list1, rand() % cnt); in event_handler_swap() 134 currentButton = lv_obj_get_child(list1, 0); in lv_example_list_2()
|
/lvgl-3.7.0/examples/event/ |
D | lv_example_event_1.c | 10 lv_obj_t * label = lv_obj_get_child(btn, 0); in event_cb()
|
/lvgl-3.7.0/examples/get_started/ |
D | lv_example_get_started_1.c | 13 lv_obj_t * label = lv_obj_get_child(btn, 0); in btn_event_cb()
|
/lvgl-3.7.0/src/extra/widgets/tileview/ |
D | lv_tileview.c | 103 lv_obj_t * tile_obj = lv_obj_get_child(tv, i); in lv_obj_set_tile_id() 180 lv_obj_t * tile_obj = lv_obj_get_child(obj, i); in tileview_event_cb()
|
/lvgl-3.7.0/demos/music/ |
D | lv_demo_music_list.c | 147 lv_obj_t * btn = lv_obj_get_child(list, track_id); in _lv_demo_music_list_btn_check() 148 lv_obj_t * icon = lv_obj_get_child(btn, 0); in _lv_demo_music_list_btn_check()
|
/lvgl-3.7.0/src/extra/widgets/list/ |
D | lv_list.c | 106 lv_obj_t * child = lv_obj_get_child(btn, i); in lv_list_get_btn_text()
|
/lvgl-3.7.0/src/extra/others/gridnav/ |
D | lv_gridnav.c | 278 lv_obj_t * child = lv_obj_get_child(obj, i); in find_chid() 341 lv_obj_t * child = lv_obj_get_child(obj, i); in find_first_focusable() 353 lv_obj_t * child = lv_obj_get_child(obj, i); in find_last_focusable()
|
/lvgl-3.7.0/src/extra/widgets/tabview/ |
D | lv_tabview.c | 186 return lv_obj_get_child(tv, 1); in lv_tabview_get_content() 191 return lv_obj_get_child(tv, 0); in lv_tabview_get_tab_btns()
|
/lvgl-3.7.0/src/extra/layouts/flex/ |
D | lv_flex.c | 336 lv_obj_t * item = lv_obj_get_child(cont, item_id); in find_track_end() 376 item = lv_obj_get_child(cont, item_id); in find_track_end() 451 lv_obj_t * item = lv_obj_get_child(cont, item_first_id); in children_repos()
|
/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.c | 1045 lv_obj_set_style_opa(lv_obj_get_child(obj, i), v, 0); in color_changer_anim_cb() 1512 lv_obj_t * label = lv_obj_get_child(card, -5); in meter1_indic1_anim_cb() 1521 lv_obj_t * label = lv_obj_get_child(card, -3); in meter1_indic2_anim_cb() 1531 lv_obj_t * label = lv_obj_get_child(card, -1); in meter1_indic3_anim_cb() 1586 label = lv_obj_get_child(card, -5); in meter2_timer_cb() 1589 label = lv_obj_get_child(card, -3); in meter2_timer_cb() 1592 label = lv_obj_get_child(card, -1); in meter2_timer_cb() 1600 lv_obj_t * label = lv_obj_get_child(meter3, 0); in meter3_anim_cb()
|
/lvgl-3.7.0/demos/keypad_encoder/ |
D | lv_demo_keypad_encoder.c | 197 lv_group_focus_obj(lv_obj_get_child(t1, 0)); in msgbox_event_cb()
|
/lvgl-3.7.0/src/extra/layouts/grid/ |
D | lv_grid.c | 386 if(lv_obj_get_child(cont, 0) == NULL) { in calc() 443 lv_obj_t * item = lv_obj_get_child(cont, ci); in calc_cols() 512 lv_obj_t * item = lv_obj_get_child(cont, ci); in calc_rows()
|
/lvgl-3.7.0/docs/widgets/ |
D | obj.md | 50 To get a specific child of a parent use `lv_obj_get_child(parent, idx)`. Some examples for `idx`: 59 lv_obj_t * child = lv_obj_get_child(parent, i);
|
/lvgl-3.7.0/demos/stress/ |
D | lv_demo_stress.c | 307 lv_obj_scroll_to_view(lv_obj_get_child(obj, -1), LV_ANIM_ON); in obj_test_timer_cb()
|
/lvgl-3.7.0/src/widgets/ |
D | lv_roller.c | 755 return lv_obj_get_child(obj, 0); in get_label()
|
D | lv_dropdown.c | 1149 return lv_obj_get_child(dropdown->list, 0); in get_label()
|