Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/core/
Dlv_obj_tree.c149 for(i = lv_obj_get_index(obj); i <= (int32_t)lv_obj_get_child_cnt(old_parent) - 2; i++) { in lv_obj_set_parent()
192 const int32_t old_index = lv_obj_get_index(obj); in lv_obj_move_to_index()
227 uint_fast32_t index1 = lv_obj_get_index(obj1); in lv_obj_swap()
228 uint_fast32_t index2 = lv_obj_get_index(obj2); in lv_obj_swap()
320 uint32_t lv_obj_get_index(const lv_obj_t * obj) in lv_obj_get_index() function
405 uint32_t id = lv_obj_get_index(obj); in obj_del_core()
Dlv_obj_tree.h152 uint32_t lv_obj_get_index(const struct _lv_obj_t * obj);
/lvgl-3.7.0/src/
Dlv_api_map.h78 return lv_obj_get_index(obj); in lv_obj_get_child_id()
/lvgl-3.7.0/examples/widgets/win/
Dlv_example_win_1.c7 LV_LOG_USER("Button %d clicked", (int)lv_obj_get_index(obj)); in event_handler()
/lvgl-3.7.0/examples/widgets/list/
Dlv_example_list_2.c53 uint32_t index = lv_obj_get_index(currentButton); in event_handler_up()
80 const uint32_t index = lv_obj_get_index(currentButton); in event_handler_dn()
/lvgl-3.7.0/examples/widgets/checkbox/
Dlv_example_checkbox_2.c22 *active_id = lv_obj_get_index(act_cb); in radio_event_handler()
/lvgl-3.7.0/examples/others/msg/
Dlv_example_msg_3.c112 if(lv_obj_get_index(btn) == 0) { /*First object is the dec. button*/ in btn_event_cb()
/lvgl-3.7.0/src/extra/themes/basic/
Dlv_theme_basic.c197 if(lv_obj_get_index(obj) == 0 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
202 … else if(lv_obj_get_index(obj) == 1 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
/lvgl-3.7.0/docs/overview/
Dlayer.md41 …: count from the top, to move forward (up): `lv_obj_move_to_index(obj, lv_obj_get_index(obj) - 1)`)
/lvgl-3.7.0/src/extra/themes/mono/
Dlv_theme_mono.c225 if(lv_obj_get_index(obj) == 0 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
231 … else if(lv_obj_get_index(obj) == 1 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
/lvgl-3.7.0/tests/src/test_cases/
Dtest_dropdown.c438 TEST_ASSERT_EQUAL_INT(2, lv_obj_get_index(list)); in test_dropdown_should_list_on_top()
/lvgl-3.7.0/docs/widgets/
Dobj.md64 `lv_obj_get_index(obj)` returns the index of the object in its parent. It is equivalent to the numb…
/lvgl-3.7.0/src/extra/themes/default/
Dlv_theme_default.c723 if(lv_obj_get_index(obj) == 0 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
729 … else if(lv_obj_get_index(obj) == 1 && lv_obj_check_type(lv_obj_get_parent(obj), &lv_win_class)) { in theme_apply()
/lvgl-3.7.0/docs/
DCHANGELOG.md949 …_obj_move_to_index(obj, index), renamed lv_obj_get_child_id(obj) to lv_obj_get_index(obj) [`2514`]…