Searched refs:child (Results 1 – 5 of 5) sorted by relevance
/lvgl-2.7.6/src/lv_widgets/ |
D | lv_cont.c | 349 lv_obj_t * child; in lv_cont_layout_col() local 379 _LV_LL_READ_BACK(cont->child_ll, child) { in lv_cont_layout_col() 380 …if(lv_obj_get_hidden(child) != false || lv_obj_is_protected(child, LV_PROTECT_POS) != false) conti… in lv_cont_layout_col() 381 lv_style_int_t mtop = lv_obj_get_style_margin_top(child, LV_OBJ_PART_MAIN); in lv_cont_layout_col() 382 lv_style_int_t mbottom = lv_obj_get_style_margin_bottom(child, LV_OBJ_PART_MAIN); in lv_cont_layout_col() 383 lv_style_int_t mleft = lv_obj_get_style_margin_left(child, LV_OBJ_PART_MAIN); in lv_cont_layout_col() 384 lv_obj_align(child, cont, align, hpad_corr + mleft, last_cord + mtop); in lv_cont_layout_col() 385 last_cord += lv_obj_get_height(child) + inner + mtop + mbottom; in lv_cont_layout_col() 399 lv_obj_t * child; in lv_cont_layout_row() local 435 _LV_LL_READ_BACK(cont->child_ll, child) { in lv_cont_layout_row() [all …]
|
D | lv_win.c | 146 lv_obj_t * child; in lv_win_create() local 147 child = lv_obj_get_child_back(copy_ext->header, NULL); in lv_win_create() 148 child = lv_obj_get_child_back(copy_ext->header, child); /*Sip the title*/ in lv_win_create() 149 while(child != NULL) { in lv_win_create() 150 lv_obj_t * btn = lv_btn_create(ext->header, child); in lv_win_create() 151 lv_img_create(btn, lv_obj_get_child(child, NULL)); in lv_win_create() 152 child = lv_obj_get_child_back(copy_ext->header, child); in lv_win_create() 618 lv_obj_t * child; in lv_win_signal() local 619 child = lv_obj_get_child(win, NULL); in lv_win_signal() 620 while(child != NULL) { in lv_win_signal() [all …]
|
D | lv_page.c | 795 lv_obj_t * child; in lv_page_signal() local 807 child = lv_obj_get_child(page, NULL); in lv_page_signal() 808 while(child != NULL) { in lv_page_signal() 809 if(lv_obj_is_protected(child, LV_PROTECT_PARENT) == false) { in lv_page_signal() 810 lv_obj_t * tmp = child; in lv_page_signal() 811 … child = lv_obj_get_child(page, child); /*Get the next child before move this*/ in lv_page_signal() 834 child = lv_obj_get_child(page, child); in lv_page_signal()
|
/lvgl-2.7.6/src/lv_core/ |
D | lv_obj.c | 528 lv_obj_t * child = lv_obj_get_child(obj, NULL); in lv_obj_clean() local 529 while(child) { in lv_obj_clean() 530 lv_obj_del(child); in lv_obj_clean() 531 child = lv_obj_get_child(obj, NULL); /*Get the new first child*/ in lv_obj_clean() 1925 lv_obj_t * child = lv_obj_get_child(obj, NULL); in lv_event_send_refresh_recursive() local 1926 while(child) { in lv_event_send_refresh_recursive() 1927 lv_event_send_refresh_recursive(child); in lv_event_send_refresh_recursive() 1929 child = lv_obj_get_child(obj, child); in lv_event_send_refresh_recursive() 2159 lv_obj_t * lv_obj_get_child(const lv_obj_t * obj, const lv_obj_t * child) in lv_obj_get_child() argument 2165 if(child == NULL) { in lv_obj_get_child() [all …]
|
D | lv_obj.h | 960 lv_obj_t * lv_obj_get_child(const lv_obj_t * obj, const lv_obj_t * child); 969 lv_obj_t * lv_obj_get_child_back(const lv_obj_t * obj, const lv_obj_t * child);
|