Events¶
Events are triggered in LVGL when something happens which might be interesting to the user, e.g. if an object:
is clicked
is dragged
its value has changed, etc.
The user can assign a callback function to an object to see these events. In practice, it looks like this:
lv_obj_t * btn = lv_btn_create(lv_scr_act(), NULL);
lv_obj_set_event_cb(btn, my_event_cb); /*Assign an event callback*/
...
static void my_event_cb(lv_obj_t * obj, lv_event_t event)
{
switch(event) {
case LV_EVENT_PRESSED:
printf("Pressed\n");
break;
case LV_EVENT_SHORT_CLICKED:
printf("Short clicked\n");
break;
case LV_EVENT_CLICKED:
printf("Clicked\n");
break;
case LV_EVENT_LONG_PRESSED:
printf("Long press\n");
break;
case LV_EVENT_LONG_PRESSED_REPEAT:
printf("Long press repeat\n");
break;
case LV_EVENT_RELEASED:
printf("Released\n");
break;
}
/*Etc.*/
}
More objects can use the same event callback.
Event types¶
The following event types exist:
Generic events¶
All objects (such as Buttons/Labels/Sliders etc.) receive these generic events regardless of their type.
General events¶
Other general events sent by the library.
LV_EVENT_DELETE The object is being deleted. Free the related user-allocated data.
Special events¶
These events are specific to a particular object type.
LV_EVENT_VALUE_CHANGED The object value has changed (e.g. for a Slider)
LV_EVENT_INSERT Something is inserted to the object. (Typically to a Text area)
LV_EVENT_APPLY "Ok", "Apply" or similar specific button has clicked. (Typically from a Keyboard object)
LV_EVENT_CANCEL "Close", "Cancel" or similar specific button has clicked. (Typically from a Keyboard object)
LV_EVENT_REFRESH Query to refresh the object. Never sent by the library but can be sent by the user.
Visit particular Object type's documentation to understand which events are used by an object type.
Custom data¶
Some events might contain custom data. For example, LV_EVENT_VALUE_CHANGED
in some cases tells the new value. For more information, see the particular Object type's documentation.
To get the custom data in the event callback use lv_event_get_data()
.
The type of the custom data depends on the sending object but if it's a
single number then it's
uint32_t *
orint32_t *
text then
char *
orconst char *
Send events manually¶
Arbitrary events¶
To manually send events to an object, use lv_event_send(obj, LV_EVENT_..., &custom_data)
.
For example, it can be used to manually close a message box by simulating a button press (although there are simpler ways of doing this):
/*Simulate the press of the first button (indexes start from zero)*/
uint32_t btn_id = 0;
lv_event_send(mbox, LV_EVENT_VALUE_CHANGED, &btn_id);
Refresh event¶
LV_EVENT_REFRESH
is special event because it's designed to be used by the user to notify an object to refresh itself. Some examples:
notify a label to refresh its text according to one or more variables (e.g. current time)
refresh a label when the language changes
enable a button if some conditions are met (e.g. the correct PIN is entered)
add/remove styles to/from an object if a limit is exceeded, etc
To simplest way to handle similar cases is utilizing the following functions.
lv_event_send_refresh(obj)
is just a wrapper to lv_event_send(obj, LV_EVENT_REFRESH, NULL)
. So it simply sends an LV_EVENT_REFRESH
to an object.
lv_event_send_refresh_recursive(obj)
sends LV_EVENT_REFRESH
event to an object and all of its children. If NULL
is passed as parameter all objects of all displays will be refreshed.