Lines Matching full:with
22 You can set/get these attributes with `lv_obj_set_...` and `lv_obj_get_...` functions. For example:
57 If the position of a parent changes, the children will move along with it.
75 lv_obj_set_pos(parent, 50, 50); /*Move the parent. The child will move with it.*/
90 This behavior can be overwritten with `lv_obj_add_flag(obj, LV_OBJ_FLAG_OVERFLOW_VISIBLE);` which a…
101 Every widget has its own **create** function with a prototype like this:
108 The return value is a pointer to the created object with `lv_obj_t *` type.
134 Screens can be created with any object type. For example, a [Base object](/widgets/obj) or an image…
151 …restricted to system-level things (e.g. mouse cursor will be placed there with `lv_indev_set_curso…
158 #### Load screen with animation
160 A new screen can be loaded with animation by using `lv_scr_load_anim(scr, transition_type, time, de…
174 The *default display* is the last registered display with `lv_disp_drv_register`. You can also expl…
215 The states are usually automatically changed by the library as the user interacts with an object (p…
223 A snapshot image can be generated for an object together with its children. Check details in [Snaps…