Lines Matching full:can
14 The functions and functionalities of the Base object can be used with other widgets too. For exampl…
16 The Base object can be directly used as a simple widget: it's nothing more than a rectangle. In HTM…
23 …ject size can be modified on individual axes with `lv_obj_set_width(obj, new_width)` and `lv_obj_s…
26 You can set the position relative to the parent with `lv_obj_set_x(obj, new_x)` and `lv_obj_set_y(o…
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…
55 The children can be iterated lke this:
66 You can bring an object to the foreground or send it to the background with `lv_obj_move_foreground…
68 You can change the index of an object in its parent using `lv_obj_move_to_index(obj, index)`.
70 You can swap the position of two objects with `lv_obj_swap(obj1, obj2)`.
74 …the driver for a display device (physical display or simulator). A display can have one or more sc…
76 When you have created a screen like `lv_obj_t * screen = lv_obj_create(NULL)`, you can make it acti…
94 A new style can be added to an object with the `lv_obj_add_style(obj, &new_style, selector)` functi…
101 There are some attributes which can be enabled/disabled by `lv_obj_add/clear_flag(obj, LV_OBJ_FLAG_…
116 - `LV_OBJ_FLAG_SNAPPABLE` If scroll snap is enabled on the parent it can snap to this object
149 Objects are added to a *group* with `lv_group_add_obj(group, obj)`, and you can use `lv_obj_get_gro…
155 By default, the objects can be clicked only within their bounding area. However, this can be extend…
178 …KEY_DOWN`, `LV_KEY_LEFT`, `LV_KEY_RIGHT`) scroll the object. If the object can only scroll vertica…