Lines Matching refs:object
24 lv_obj_t * cursor_obj = lv_img_create(lv_scr_act()); /*Create an image object for the cursor …
26 lv_indev_set_cursor(mouse_indev, cursor_obj); /*Connect the image object to the driv…
29 Note that the cursor object should have `lv_obj_clear_flag(cursor_obj, LV_OBJ_FLAG_CLICKABLE)`.
33 …res to its parent, so finally the gestures can be detected on the screen object in a form of an `L…
61 To prevent passing the gesture event to the parent from an object use `lv_obj_clear_flag(obj, LV_OB…
63 Note that, gestures are not triggered if an object is being scrolled.
74 In every group there is exactly one focused object which receives the pressed keys or the encoder a…
80 To create a group use `lv_group_t * g = lv_group_create()` and to add an object to the group use `l…
86 - **LV_KEY_NEXT** Focus on the next object
87 - **LV_KEY_PREV** Focus on the previous object
110 …HT` is translated to `LV_KEY_NEXT/PREV`. Therefore, the next or previous object will be selected b…
113 In *Edit* mode, `LV_KEY_NEXT/PREV` is usually used to modify an object.
114 Depending on the object's type, a short or long press of `LV_KEY_ENTER` changes back to *Navigate* …
115 Usually, an object which cannot be pressed (like a [Slider](/widgets/core/slider)) leaves *Edit* mo…
125 If an object is focused either by clicking it via touchpad or focused via an encoder or keypad it g…
127 If an object switches to edit mode it enters the `LV_STATE_FOCUSED | LV_STATE_EDITED` states so the…