1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/lvgl.h

143 lines
2.9 KiB
C
Raw Normal View History

2016-06-08 07:25:08 +02:00
/**
* @file lvgl.h
2021-02-07 12:37:37 +01:00
* Include all LVGL related headers
2016-06-08 07:25:08 +02:00
*/
#ifndef LVGL_H
#define LVGL_H
2016-06-08 07:25:08 +02:00
2017-07-09 15:32:49 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2020-08-17 09:20:35 +02:00
/***************************
* CURRENT VERSION OF LVGL
***************************/
2020-11-17 11:40:38 +01:00
#define LVGL_VERSION_MAJOR 8
#define LVGL_VERSION_MINOR 0
2020-09-15 11:56:57 +02:00
#define LVGL_VERSION_PATCH 0
2020-11-17 11:40:38 +01:00
#define LVGL_VERSION_INFO "dev"
2020-08-17 09:20:35 +02:00
2016-06-08 07:25:08 +02:00
/*********************
* INCLUDES
*********************/
2019-03-17 08:33:03 +01:00
#include "src/lv_misc/lv_log.h"
#include "src/lv_misc/lv_timer.h"
2019-03-17 08:33:03 +01:00
#include "src/lv_misc/lv_math.h"
#include "src/lv_misc/lv_async.h"
2019-03-17 08:33:03 +01:00
#include "src/lv_hal/lv_hal.h"
#include "src/lv_core/lv_obj.h"
#include "src/lv_core/lv_group.h"
#include "src/lv_core/lv_indev.h"
2019-03-17 08:33:03 +01:00
#include "src/lv_core/lv_refr.h"
#include "src/lv_core/lv_disp.h"
#include "src/lv_core/lv_theme.h"
2019-03-17 08:33:03 +01:00
#include "src/lv_font/lv_font.h"
#include "src/lv_font/lv_font_loader.h"
#include "src/lv_font/lv_font_fmt_txt.h"
2019-11-25 13:15:12 +01:00
#include "src/lv_misc/lv_printf.h"
2019-05-29 06:40:19 +02:00
2021-02-01 14:55:08 +01:00
#include "src/lv_widgets/lv_arc.h"
2020-02-14 22:04:00 +01:00
#include "src/lv_widgets/lv_btn.h"
#include "src/lv_widgets/lv_img.h"
#include "src/lv_widgets/lv_label.h"
#include "src/lv_widgets/lv_line.h"
#include "src/lv_widgets/lv_chart.h"
#include "src/lv_widgets/lv_table.h"
#include "src/lv_widgets/lv_checkbox.h"
#include "src/lv_widgets/lv_bar.h"
#include "src/lv_widgets/lv_slider.h"
#include "src/lv_widgets/lv_btnmatrix.h"
#include "src/lv_widgets/lv_dropdown.h"
#include "src/lv_widgets/lv_roller.h"
#include "src/lv_widgets/lv_textarea.h"
#include "src/lv_widgets/lv_canvas.h"
2021-01-21 15:18:20 +01:00
#include "src/lv_widgets/lv_meter.h"
2020-02-14 22:04:00 +01:00
#include "src/lv_widgets/lv_switch.h"
#include "src/lv_draw/lv_img_cache.h"
2019-11-04 16:56:57 +01:00
#include "src/lv_api_map.h"
/*-----------------
* EXTRAS
*----------------*/
2021-02-07 22:39:54 +01:00
#include "src/extra/widgets/lv_widgets.h"
2021-02-08 09:53:03 +01:00
#include "src/extra/layouts/lv_layouts.h"
#include "src/extra/themes/lv_themes.h"
2016-06-08 07:25:08 +02:00
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
2019-11-04 08:49:30 +01:00
/** 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();
* #endif
*
*
* - Require at least v5.3
* #if LV_VERSION_CHECK(5,3,0)
* new_feature_from_v5_3();
* #endif
*
*
* - Require v5.3.2 bugfixes
* #if LV_VERSION_CHECK(5,3,2)
* bugfix_in_v5_3_2();
* #endif
*
* */
#define LV_VERSION_CHECK(x,y,z) (x == LVGL_VERSION_MAJOR && (y < LVGL_VERSION_MINOR || (y == LVGL_VERSION_MINOR && z <= LVGL_VERSION_PATCH)))
/**
* Wrapper functions for VERSION macros
*/
static inline int lv_version_major()
{
return LVGL_VERSION_MAJOR;
}
static inline int lv_version_minor()
{
return LVGL_VERSION_MINOR;
}
static inline int lv_version_patch()
{
return LVGL_VERSION_PATCH;
}
static inline const char *lv_version_info()
{
return LVGL_VERSION_INFO;
}
2019-11-04 08:49:30 +01:00
2017-10-17 15:30:40 +08:00
#ifdef __cplusplus
}
2016-06-08 07:25:08 +02:00
#endif
2017-10-17 15:30:40 +08:00
#endif /*LVGL_H*/