Lines Matching refs:widget
26 - :cpp:expr:`lv_obj_get_id(widget)`,
27 - :cpp:expr:`lv_obj_get_child_by_id(widget, id)`;
42 - :cpp:expr:`lv_obj_assign_id(class_p, widget)` will be called at the end of each
44 - :cpp:expr:`lv_obj_free_id(widget)` will be called at the end of the sequence when
51 :cpp:expr:`lv_obj_assign_id(class_p, widget)`
58 :cpp:expr:`lv_obj_free_id(widget)`
73 - :cpp:expr:`lv_obj_assign_id(class_p, widget)`
74 - :cpp:expr:`lv_obj_free_id(widget)`
75 - :cpp:expr:`lv_obj_set_id(widget, id)`
76 - :cpp:expr:`lv_obj_stringify_id(widget, buf, len)`
80 created, :cpp:expr:`lv_obj_stringify_id(widget, buf, len)` will produce a unique
90 the strings produced by :cpp:expr:`lv_obj_stringify_id(widget, buf, len)` would be
116 const char * lv_obj_stringify_id(lv_obj_t * widget, char * buf, uint32_t len);
124 void lv_obj_assign_id(const lv_obj_class_t * class_p, lv_obj_t * widget);
125 void lv_obj_free_id(lv_obj_t * widget);
133 void lv_obj_set_id(lv_obj_t * widget, void * id);
139 :cpp:func:`lv_obj_stringify_id` converts the passed ``widget`` to a string
151 Widget IDs. Note that this pointer may be different than :cpp:expr:`widget->class_p`
163 :cpp:expr:`lv_obj_dump_tree(widget)` provides a "dump" of the Widget Tree for the
181 state of the Widget Tree when :cpp:expr:`lv_obj_dump_tree(widget)` was called.
193 :cpp:expr:`lv_obj_get_child_by_id(widget, id)` will perform a recursive walk through
194 ``widget``\ 's children and return the first child encountered having the given ID.