Searched refs:lv_obj_get_index (Results 1 – 14 of 14) sorted by relevance
/lvgl-3.7.0/src/core/ |
D | lv_obj_tree.c | 149 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()
|
D | lv_obj_tree.h | 152 uint32_t lv_obj_get_index(const struct _lv_obj_t * obj);
|
/lvgl-3.7.0/src/ |
D | lv_api_map.h | 78 return lv_obj_get_index(obj); in lv_obj_get_child_id()
|
/lvgl-3.7.0/examples/widgets/win/ |
D | lv_example_win_1.c | 7 LV_LOG_USER("Button %d clicked", (int)lv_obj_get_index(obj)); in event_handler()
|
/lvgl-3.7.0/examples/widgets/list/ |
D | lv_example_list_2.c | 53 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/ |
D | lv_example_checkbox_2.c | 22 *active_id = lv_obj_get_index(act_cb); in radio_event_handler()
|
/lvgl-3.7.0/examples/others/msg/ |
D | lv_example_msg_3.c | 112 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/ |
D | lv_theme_basic.c | 197 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/ |
D | layer.md | 41 …: 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/ |
D | lv_theme_mono.c | 225 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/ |
D | test_dropdown.c | 438 TEST_ASSERT_EQUAL_INT(2, lv_obj_get_index(list)); in test_dropdown_should_list_on_top()
|
/lvgl-3.7.0/docs/widgets/ |
D | obj.md | 64 `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/ |
D | lv_theme_default.c | 723 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/ |
D | CHANGELOG.md | 949 …_obj_move_to_index(obj, index), renamed lv_obj_get_child_id(obj) to lv_obj_get_index(obj) [`2514`]…
|