Lines Matching refs:is

10 - is clicked
11 - is scrolled
13 - is redrawn, etc.
16 It is not detailed below, but you can do this by changing the prefix of the functions
44 The last parameter of :cpp:func:`lv_obj_add_event` is a pointer to any custom
46 there is no need to use that data when the event is processed. You can retrieve the
122 - :cpp:enumerator:`LV_EVENT_PRESSING`: Widget is being pressed (called continuously while pressing)
123 - :cpp:enumerator:`LV_EVENT_PRESS_LOST`: Widget is still being pressed but slid cursor/finger off …
132 - :cpp:enumerator:`LV_EVENT_SCROLL_BEGIN`: Scrolling begins. The event parameter is a pointer to t…
136 - :cpp:enumerator:`LV_EVENT_GESTURE`: A gesture is detected. Get the gesture with :cpp:expr:`lv_in…
137 - :cpp:enumerator:`LV_EVENT_KEY`: A key is sent to Widget. Get the key with :cpp:expr:`lv_indev_ge…
139 - :cpp:enumerator:`LV_EVENT_DEFOCUSED`: Widget is defocused
140 - :cpp:enumerator:`LV_EVENT_LEAVE`: Widget is defocused but still selected
149 …NT_COVER_CHECK`: Check if Widget fully covers an area. The event parameter is :cpp:type:`lv_cover_…
150 …uired extra draw area around Widget (e.g. for shadow). The event parameter is :cpp:type:`int32_t` …
163 - :cpp:enumerator:`LV_EVENT_INSERT`: A text is inserted to Widget. The event data is ``char `*`` b…
171 - :cpp:enumerator:`LV_EVENT_CREATE`: Widget is being created
172 - :cpp:enumerator:`LV_EVENT_DELETE`: Widget is being deleted
176 …:`LV_EVENT_SCREEN_UNLOAD_START`: A screen unload started, fired immediately when scr_load is called
177 …:`LV_EVENT_SCREEN_LOAD_START`: A screen load started, fired when the screen change delay is expired
213 :cpp:enumerator:`LV_EVENT_REFRESH` is a special event because it's designed to let the
218 - enable a button if some conditions are met (e.g. the correct PIN is entered)
219 - add/remove styles to/from a Widget if a limit is exceeded, etc
245 :cpp:type:`lv_event_t` is the only parameter passed to the event callback and it
249 …et(e)`: get Widget to which an event was sent. I.e. the Widget whose event handler is being called.
250 …ifferent from :cpp:func:`lv_event_get_target` if :ref:`event bubbling <event_bubbling>` is enabled)
260 If :cpp:expr:`lv_obj_add_flag(widget, LV_OBJ_FLAG_EVENT_BUBBLE)` is enabled all
265 The *target* parameter of the event is always the current target Widget,