APIPublic API
lvgl.h
API reference for lvgl.h
See Also: Private HeaderThis header has a companion private implementation with internal data structures.lvgl_private.h
Summary
Functions
public/lvgl.h:259function
lv_version_major
Wrapper functions for VERSION macros
static int lv_version_major(void)public/lvgl.h:264function
lv_version_minor
static int lv_version_minor(void)public/lvgl.h:269function
lv_version_patch
static int lv_version_patch(void)public/lvgl.h:274function
lv_version_info
static const char * lv_version_info(void)Macros
public/lvgl.h:253macro
LV_VERSION_CHECK
#define LV_VERSION_CHECK(x, y, z) \
(x == LVGL_VERSION_MAJOR && (y < LVGL_VERSION_MINOR || (y == LVGL_VERSION_MINOR && z <= LVGL_VERSION_PATCH)))Gives 1 if the x.y.z version is supported in the current version
Usage:
Require v6:
#if LV_VERSION_CHECK(6, 0, 0)
new_func_in_v6();
#endifRequire at least v5.3:
#if LV_VERSION_CHECK(5, 3, 0)
new_feature_from_v5_3();
#endifRequire v5.3.2 bugfixes:
#if LV_VERSION_CHECK(5, 3, 2)
bugfix_in_v5_3_2();
#endif| Name | Description |
|---|---|
x | major version to check against |
y | minor version to check against |
z | patch version to check against |
Dependencies
lv_version.hlv_3dmath.hlv_gltf_environment.hlv_gltf_model.hlv_gltf_model_loader.hlv_gltf_model_node.hlv_conf_internal.hlv_conf_kconfig.hlv_anim.hlv_anim_timeline.hlv_area.hlv_event.hlv_ext_data.hlv_group.hlv_init.hlv_matrix.hlv_obj.hlv_obj_class.hlv_obj_draw.hlv_obj_event.hlv_obj_pos.hlv_obj_property.hlv_obj_property_names.hlv_obj_scroll.hlv_obj_style.hlv_obj_style_gen.hlv_obj_tree.hlv_observer.hlv_refr.hlv_style.hlv_style_gen.hlv_style_properties.hlv_timer.hlv_translation.hlv_assert.hlv_check_arg.hlv_check_obj.hlv_monkey.hlv_sysmon.hlv_profiler.hlv_profiler_builtin.hlv_test.hlv_test_display.hlv_test_fs.hlv_test_helpers.hlv_test_indev.hlv_test_indev_gesture.hlv_test_screenshot_compare.hlv_display.hlv_color.hlv_color_op.hlv_draw.hlv_draw_3d.hlv_draw_arc.hlv_draw_blur.hlv_draw_buf.hlv_draw_image.hlv_draw_label.hlv_draw_line.hlv_draw_mask.hlv_draw_rect.hlv_draw_triangle.hlv_draw_vector.hlv_grad.hlv_image_dsc.hlv_palette.hlv_snapshot.hlv_draw_utils.hlv_linux_drm.hlv_draw_eve_display.hlv_draw_eve_display_defines.hlv_draw_eve_target.hlv_linux_fbdev.hlv_ft81x.hlv_ili9341.hlv_lcd_generic_mipi.hlv_lovyan_gfx.hlv_nv3007.hlv_nxp_elcdif.hlv_renesas_glcdc.hlv_st7735.hlv_st7789.hlv_st7796.hlv_st_ltdc.hlv_tft_espi.hlv_evdev.hlv_libinput.hlv_xkb.hlv_nuttx_entry.hlv_nuttx_fbdev.hlv_nuttx_lcd.hlv_nuttx_libuv.hlv_nuttx_touchscreen.hlv_opengles_driver.hlv_opengles_glfw.hlv_opengles_texture.hlv_opengles_window.hlv_qnx.hlv_sdl_keyboard.hlv_sdl_mouse.hlv_sdl_mousewheel.hlv_sdl_window.hlv_uefi.hlv_uefi_context.hlv_uefi_display.hlv_uefi_edk2.hlv_uefi_gnu_efi.hlv_uefi_indev.hlv_wayland.hlv_wayland_keyboard.hlv_wayland_pointer.hlv_wayland_pointer_axis.hlv_wayland_touch.hlv_wayland_window.hlv_windows_display.hlv_windows_input.hlv_x11.hlv_bidi.hlv_binfont_loader.hlv_font.hlv_font_fmt_txt.hlv_font_manager.hlv_freetype.hlv_imgfont.hlv_symbol_def.hlv_text.hlv_tiny_ttf.hlv_fs.hlv_fsdrv.hlv_bin_decoder.hlv_bmp.hlv_libjpeg_turbo.hlv_libpng.hlv_libwebp.hlv_lodepng.hlv_image_decoder.hlv_svg.hlv_tjpgd.hlv_gridnav.hlv_indev.hlv_indev_gesture.hlv_flex.hlv_grid.hlv_layout.hlv_log.hlv_types.hlv_async.hlv_math.hlv_ll.hlv_os.hlv_file_explorer.hlv_fragment.hlv_mem.hlv_sprintf.hlv_string.hlv_theme.hlv_theme_default.hlv_theme_mono.hlv_theme_simple.hlv_tick.hlv_3dtexture.hlv_animimage.hlv_arc.hlv_arclabel.hlv_bar.hlv_barcode.hlv_button.hlv_buttonmatrix.hlv_calendar.hlv_calendar_chinese.hlv_calendar_header_arrow.hlv_calendar_header_dropdown.hlv_canvas.hlv_chart.hlv_checkbox.hlv_dropdown.hlv_ffmpeg.hlv_gif.hlv_gltf.hlv_gstreamer.hlv_image.hlv_imagebutton.hlv_ime_pinyin.hlv_keyboard.hlv_label.hlv_led.hlv_line.hlv_list.hlv_lottie.hlv_menu.hlv_msgbox.hlv_qrcode.hlv_rlottie.hlv_roller.hlv_scale.hlv_slider.hlv_span.hlv_spinbox.hlv_spinner.hlv_switch.hlv_table.hlv_tabview.hlv_textarea.hlv_tileview.hlv_win.hlv_api_map_v8.hlv_api_map_v9_0.hlv_api_map_v9_1.hlv_api_map_v9_2.hlv_api_map_v9_3.hlv_api_map_v9_4.hlv_api_map_v9_5.h
lv_group.hlv_obj.hlv_obj_class.hlv_obj_draw.hlv_obj_event.hlv_obj_pos.hlv_obj_property.hlv_obj_scroll.hlv_obj_style.hlv_obj_style_gen.hlv_obj_tree.hlv_observer.hlv_refr.hlv_monkey.hlv_sysmon.hlv_test.hlv_test_display.hlv_test_fs.hlv_test_helpers.hlv_test_indev.hlv_test_indev_gesture.hlv_test_screenshot_compare.hlv_display.hlv_draw_eve_target.hlv_draw.hlv_draw_3d.hlv_draw_arc.hlv_draw_blur.hlv_draw_buf.hlv_draw_image.hlv_draw_label.hlv_draw_line.hlv_draw_mask.hlv_draw_rect.hlv_draw_triangle.hlv_draw_vector.hlv_image_decoder.hlv_image_dsc.hlv_snapshot.hlv_draw_sw_utils.hlv_linux_drm.hlv_linux_fbdev.hlv_ft81x.hlv_ili9341.hlv_lcd_generic_mipi.hlv_lovyan_gfx.hlv_nv3007.hlv_nxp_elcdif.hlv_renesas_glcdc.hlv_st7735.hlv_st7789.hlv_st7796.hlv_st_ltdc.hlv_tft_espi.hlv_draw_eve_display.hlv_draw_eve_display_defines.hlv_evdev.hlv_libinput.hlv_xkb.hlv_drivers.hlv_nuttx_entry.hlv_nuttx_fbdev.hlv_nuttx_lcd.hlv_nuttx_libuv.hlv_nuttx_touchscreen.hlv_opengles_driver.hlv_opengles_glfw.hlv_opengles_texture.hlv_opengles_window.hlv_qnx.hlv_sdl_keyboard.hlv_sdl_mouse.hlv_sdl_mousewheel.hlv_sdl_window.hlv_uefi.hlv_uefi_context.hlv_uefi_display.hlv_uefi_edk2.hlv_uefi_gnu_efi.hlv_uefi_indev.hlv_wayland.hlv_wayland_keyboard.hlv_wayland_pointer.hlv_wayland_pointer_axis.hlv_wayland_touch.hlv_wayland_window.hlv_windows_display.hlv_windows_input.hlv_x11.hlv_binfont_loader.hlv_font_fmt_txt.hlv_font_manager.hlv_imgfont.hlv_font.hlv_symbol_def.hlv_svg.hlv_gridnav.hlv_indev.hlv_indev_gesture.hlv_flex.hlv_grid.hlv_layout.hlv_barcode.hlv_bin_decoder.hlv_bmp.hlv_ffmpeg.hlv_freetype.hlv_fsdrv.hlv_gltf_model.hlv_gltf_model_loader.hlv_gltf_model_node.hlv_gltf_environment.hlv_gltf.hlv_3dmath.hlv_gstreamer.hlv_libjpeg_turbo.hlv_libpng.hlv_libwebp.hlv_lodepng.hlv_qrcode.hlv_rlottie.hlv_tiny_ttf.hlv_tjpgd.hlv_api_map_v8.hlv_api_map_v9_0.hlv_api_map_v9_1.hlv_api_map_v9_2.hlv_api_map_v9_3.hlv_api_map_v9_4.hlv_api_map_v9_5.hlv_conf_internal.hlv_conf_kconfig.hlv_init.hlvgl_public.hlv_anim.hlv_anim_timeline.hlv_area.hlv_assert.hlv_async.hlv_bidi.hlv_check_arg.hlv_color.hlv_color_op.hlv_event.hlv_ext_data.hlv_fs.hlv_grad.hlv_ll.hlv_log.hlv_math.hlv_matrix.hlv_palette.hlv_profiler.hlv_profiler_builtin.hlv_style.hlv_style_gen.hlv_text.hlv_timer.hlv_types.hlv_os.hlv_file_explorer.hlv_fragment.hlv_translation.hlv_mem.hlv_sprintf.hlv_string.hlv_theme_default.hlv_theme.hlv_theme_mono.hlv_theme_simple.hlv_tick.hlv_3dtexture.hlv_animimage.hlv_arc.hlv_arclabel.hlv_bar.hlv_button.hlv_buttonmatrix.hlv_calendar.hlv_calendar_chinese.hlv_calendar_header_arrow.hlv_calendar_header_dropdown.hlv_canvas.hlv_chart.hlv_checkbox.hlv_dropdown.hlv_gif.hlv_image.hlv_imagebutton.hlv_ime_pinyin.hlv_keyboard.hlv_label.hlv_led.hlv_line.hlv_list.hlv_lottie.hlv_menu.hlv_msgbox.hlv_obj_property_names.hlv_style_properties.hlv_roller.hlv_scale.hlv_slider.hlv_span.hlv_spinbox.hlv_spinner.hlv_switch.hlv_table.hlv_tabview.hlv_textarea.hlv_tileview.hlv_win.h
Last updated on