Lines Matching full:with

14 The functions and functionalities of the Base object can be used with other widgets too. For exampl…
23 …dual axes with `lv_obj_set_width(obj, new_width)` and `lv_obj_set_height(obj, new_height)`, or bot…
26 …ion relative to the parent with `lv_obj_set_x(obj, new_x)` and `lv_obj_set_y(obj, new_y)`, or both…
29 You can align the object on its parent with `lv_obj_set_align(obj, LV_ALIGN_...)`. After this every…
48 You can set a new parent for an object with `lv_obj_set_parent(obj, new_parent)`. To get the curren…
60 /*Do something with child*/
66 You can bring an object to the foreground or send it to the background with `lv_obj_move_foreground…
70 You can swap the position of two objects with `lv_obj_swap(obj1, obj2)`.
74 … display or simulator). A display can have one or more screens associated with it. Each screen con…
76 …en like `lv_obj_t * screen = lv_obj_create(NULL)`, you can make it active with `lv_scr_load(screen…
78 …erate on the most recently created display or the one explicitly selected with `lv_disp_set_defaul…
94 A new style can be added to an object with the `lv_obj_add_style(obj, &new_style, selector)` functi…
97 The base objects use `LV_PART_MAIN` style properties and `LV_PART_SCROLLBAR` with the typical backg…
108 - `LV_OBJ_FLAG_SCROLL_ELASTIC` Allow scrolling inside but with slower speed
115 - `LV_OBJ_FLAG_SCROLL_WITH_ARROW` Allow scrolling the focused object with arrow keys
149 Objects are added to a *group* with `lv_group_add_obj(group, obj)`, and you can use `lv_obj_get_gro…
155 …be clicked only within their bounding area. However, this can be extended with `lv_obj_set_ext_cli…
178 …EFT` and `LV_KEY_RIGHT` will scroll up/down instead, making it compatible with an encoder input de…