Home
last modified time | relevance | path

Searched refs:LV_EVENT_SIZE_CHANGED (Results 1 – 22 of 22) sorted by relevance

/lvgl-latest/src/misc/
Dlv_event.h92 LV_EVENT_SIZE_CHANGED, /**< Object coordinates/size have changed */ enumerator
/lvgl-latest/src/core/
Dlv_obj_event.c230 if(e->code == LV_EVENT_SIZE_CHANGED) { in lv_event_get_old_size()
413 case LV_EVENT_SIZE_CHANGED: in event_is_bubbled()
Dlv_obj.c847 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_obj_event()
Dlv_obj_pos.c193 lv_obj_send_event(obj, LV_EVENT_SIZE_CHANGED, &ori); in lv_obj_refr_size()
/lvgl-latest/src/display/
Dlv_display.c1111 lv_obj_send_event(disp->screens[i], LV_EVENT_SIZE_CHANGED, &prev_coords); in update_resolution()
1116 lv_obj_send_event(disp->top_layer, LV_EVENT_SIZE_CHANGED, &prev_coords); in update_resolution()
1120 lv_obj_send_event(disp->sys_layer, LV_EVENT_SIZE_CHANGED, &prev_coords); in update_resolution()
1124 lv_obj_send_event(disp->bottom_layer, LV_EVENT_SIZE_CHANGED, &prev_coords); in update_resolution()
/lvgl-latest/env_support/pikascript/
Dpika_lvgl.c113 obj_setInt(self, "SIZE_CHANGED", LV_EVENT_SIZE_CHANGED); in pika_lvgl_EVENT___init__()
/lvgl-latest/src/widgets/msgbox/
Dlv_msgbox.c134 lv_obj_add_event_cb(obj, msgbox_size_changed_event_cb, LV_EVENT_SIZE_CHANGED, 0); in lv_msgbox_create()
/lvgl-latest/src/widgets/tabview/
Dlv_tabview.c297 if(code == LV_EVENT_SIZE_CHANGED) { in lv_tabview_event()
/lvgl-latest/src/widgets/roller/
Dlv_roller.c381 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_roller_event()
503 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_roller_label_event()
/lvgl-latest/src/widgets/slider/
Dlv_slider.c306 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_slider_event()
/lvgl-latest/src/others/file_explorer/
Dlv_file_explorer.c541 else if(code == LV_EVENT_SIZE_CHANGED) { in browser_file_event_handler()
/lvgl-latest/src/layouts/flex/
Dlv_flex.c421 lv_obj_send_event(item, LV_EVENT_SIZE_CHANGED, &old_coords); in children_repos()
/lvgl-latest/src/layouts/grid/
Dlv_grid.c547 lv_obj_send_event(item, LV_EVENT_SIZE_CHANGED, &old_coords); in item_repos()
/lvgl-latest/docs/details/base-widget/
Devent.rst180 - :cpp:enumerator:`LV_EVENT_SIZE_CHANGED`: Widget coordinates/size have changed
Dobj.rst588 - :cpp:enumerator:`LV_EVENT_SIZE_CHANGED` Object coordinates/size have changed
/lvgl-latest/src/widgets/buttonmatrix/
Dlv_buttonmatrix.c420 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_buttonmatrix_event()
/lvgl-latest/src/widgets/span/
Dlv_span.c673 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_spangroup_event()
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.c760 else if(code == LV_EVENT_SIZE_CHANGED) { in lv_dropdown_event()
/lvgl-latest/src/widgets/label/
Dlv_label.c761 if((code == LV_EVENT_STYLE_CHANGED) || (code == LV_EVENT_SIZE_CHANGED)) { in lv_label_event()
/lvgl-latest/src/widgets/textarea/
Dlv_textarea.c1038 if(code == LV_EVENT_STYLE_CHANGED || code == LV_EVENT_SIZE_CHANGED) { in label_event_cb()
/lvgl-latest/docs/details/main-components/
Ddisplay.rst390 When changing the rotation, the :cpp:enumerator:`LV_EVENT_SIZE_CHANGED` event is
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c873 lv_obj_add_event_cb(scale3, scale3_size_changed_event_cb, LV_EVENT_SIZE_CHANGED, NULL); in analytics_create()