2016-06-08 13:25:08 +08:00
|
|
|
/**
|
|
|
|
* @file lvgl.h
|
|
|
|
* Include all LittleV GL related headers
|
|
|
|
*/
|
2021-01-11 21:28:00 +08:00
|
|
|
|
2017-03-27 15:27:45 +08:00
|
|
|
#ifndef LVGL_H
|
|
|
|
#define LVGL_H
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2017-07-09 21:32:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-08-17 15:20:35 +08:00
|
|
|
/***************************
|
|
|
|
* CURRENT VERSION OF LVGL
|
|
|
|
***************************/
|
2020-09-15 17:56:57 +08:00
|
|
|
#define LVGL_VERSION_MAJOR 7
|
2020-12-16 03:13:53 +08:00
|
|
|
#define LVGL_VERSION_MINOR 10
|
2020-12-09 21:11:14 +08:00
|
|
|
#define LVGL_VERSION_PATCH 0
|
2021-01-05 23:04:29 +08:00
|
|
|
#define LVGL_VERSION_INFO "dev"
|
2020-08-17 15:20:35 +08:00
|
|
|
|
2016-06-08 13:25:08 +08:00
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2017-01-12 18:09:18 +08:00
|
|
|
|
2019-03-17 15:33:03 +08:00
|
|
|
#include "src/lv_misc/lv_log.h"
|
|
|
|
#include "src/lv_misc/lv_task.h"
|
|
|
|
#include "src/lv_misc/lv_math.h"
|
2019-07-06 02:46:53 +08:00
|
|
|
#include "src/lv_misc/lv_async.h"
|
2019-03-17 15:33:03 +08:00
|
|
|
|
|
|
|
#include "src/lv_hal/lv_hal.h"
|
|
|
|
|
|
|
|
#include "src/lv_core/lv_obj.h"
|
|
|
|
#include "src/lv_core/lv_group.h"
|
2019-11-03 21:43:26 +08:00
|
|
|
#include "src/lv_core/lv_indev.h"
|
2019-03-17 15:33:03 +08:00
|
|
|
|
|
|
|
#include "src/lv_core/lv_refr.h"
|
|
|
|
#include "src/lv_core/lv_disp.h"
|
|
|
|
|
|
|
|
#include "src/lv_themes/lv_theme.h"
|
|
|
|
|
2019-06-06 11:55:17 +08:00
|
|
|
#include "src/lv_font/lv_font.h"
|
2020-08-07 21:56:37 +08:00
|
|
|
#include "src/lv_font/lv_font_loader.h"
|
2019-06-06 11:55:17 +08:00
|
|
|
#include "src/lv_font/lv_font_fmt_txt.h"
|
2019-11-25 20:15:12 +08:00
|
|
|
#include "src/lv_misc/lv_printf.h"
|
2019-05-29 12:40:19 +08:00
|
|
|
|
2020-02-15 05:04:00 +08:00
|
|
|
#include "src/lv_widgets/lv_btn.h"
|
|
|
|
#include "src/lv_widgets/lv_imgbtn.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_page.h"
|
|
|
|
#include "src/lv_widgets/lv_cont.h"
|
|
|
|
#include "src/lv_widgets/lv_list.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_cpicker.h"
|
|
|
|
#include "src/lv_widgets/lv_bar.h"
|
|
|
|
#include "src/lv_widgets/lv_slider.h"
|
|
|
|
#include "src/lv_widgets/lv_led.h"
|
|
|
|
#include "src/lv_widgets/lv_btnmatrix.h"
|
|
|
|
#include "src/lv_widgets/lv_keyboard.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"
|
|
|
|
#include "src/lv_widgets/lv_win.h"
|
|
|
|
#include "src/lv_widgets/lv_tabview.h"
|
|
|
|
#include "src/lv_widgets/lv_tileview.h"
|
|
|
|
#include "src/lv_widgets/lv_msgbox.h"
|
|
|
|
#include "src/lv_widgets/lv_objmask.h"
|
|
|
|
#include "src/lv_widgets/lv_gauge.h"
|
|
|
|
#include "src/lv_widgets/lv_linemeter.h"
|
|
|
|
#include "src/lv_widgets/lv_switch.h"
|
|
|
|
#include "src/lv_widgets/lv_arc.h"
|
2020-02-15 09:19:44 +08:00
|
|
|
#include "src/lv_widgets/lv_spinner.h"
|
2020-02-15 05:04:00 +08:00
|
|
|
#include "src/lv_widgets/lv_calendar.h"
|
|
|
|
#include "src/lv_widgets/lv_spinbox.h"
|
2016-12-15 23:19:23 +08:00
|
|
|
|
2019-06-22 05:45:55 +08:00
|
|
|
#include "src/lv_draw/lv_img_cache.h"
|
|
|
|
|
2019-11-04 23:56:57 +08:00
|
|
|
#include "src/lv_api_map.h"
|
|
|
|
|
2016-06-08 13:25:08 +08:00
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
2019-11-04 15:49:30 +08: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)))
|
|
|
|
|
2020-12-23 22:25:06 +08:00
|
|
|
/**
|
|
|
|
* 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 15:49:30 +08:00
|
|
|
|
2017-10-17 15:30:40 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2016-06-08 13:25:08 +08:00
|
|
|
#endif
|
2017-10-17 15:30:40 +08:00
|
|
|
|
|
|
|
#endif /*LVGL_H*/
|