Home
last modified time | relevance | path

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

/lvgl-latest/src/core/
Dlv_group.c437 lv_obj_t ** obj_next = group->obj_focus; in focus_next_core() local
443 if(obj_next == NULL) { in focus_next_core()
446 obj_next = begin(&group->obj_ll); in focus_next_core()
457 obj_sentinel = obj_next; in focus_next_core()
462 obj_next = move(&group->obj_ll, obj_next); in focus_next_core()
465 if(obj_next == obj_sentinel) return focus_changed; in focus_next_core()
470 if(obj_next == NULL) continue; in focus_next_core()
471 if(lv_obj_get_state(*obj_next) & LV_STATE_DISABLED) continue; in focus_next_core()
475 lv_obj_t * parent = *obj_next; in focus_next_core()
487 …if(obj_next == group->obj_focus) return focus_changed; /*There's only one visible object and it's … in focus_next_core()
[all …]