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

104 lines
1.8 KiB
C
Raw Permalink Normal View History

2021-12-16 20:49:41 +01:00
/**
* @file lv_demos.h
*
*/
#ifndef LV_DEMOS_H
#define LV_DEMOS_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lvgl.h"
#if LV_USE_DEMO_BENCHMARK
#include "benchmark/lv_demo_benchmark.h"
#endif
#if LV_USE_DEMO_KEYPAD_AND_ENCODER
#include "keypad_encoder/lv_demo_keypad_encoder.h"
#endif
#if LV_USE_DEMO_MUSIC
#include "music/lv_demo_music.h"
#endif
2021-12-16 20:49:41 +01:00
#if LV_USE_DEMO_STRESS
#include "stress/lv_demo_stress.h"
#endif
#if LV_USE_DEMO_WIDGETS
#include "widgets/lv_demo_widgets.h"
#endif
#if LV_USE_DEMO_FLEX_LAYOUT
#include "flex_layout/lv_demo_flex_layout.h"
#endif
#if LV_USE_DEMO_TRANSFORM
#include "transform/lv_demo_transform.h"
#endif
2023-07-15 23:24:58 +02:00
#if LV_USE_DEMO_SCROLL
#include "scroll/lv_demo_scroll.h"
#endif
#if LV_USE_DEMO_MULTILANG
#include "multilang/lv_demo_multilang.h"
#endif
#if LV_USE_DEMO_VECTOR_GRAPHIC && LV_USE_VECTOR_GRAPHIC
#include "vector_graphic/lv_demo_vector_graphic.h"
#endif
2023-10-25 13:38:37 +02:00
#if LV_USE_DEMO_RENDER
#include "render/lv_demo_render.h"
#endif
2024-10-14 18:47:47 +02:00
#if LV_USE_DEMO_EBIKE
#include "ebike/lv_demo_ebike.h"
#endif
#if LV_USE_DEMO_HIGH_RES
#include "high_res/lv_demo_high_res.h"
#endif
2021-12-16 20:49:41 +01:00
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Call lv_demo_xxx.
* @param info the information which contains demo name and parameters
* needs by lv_demo_xxx.
* @size size of information.
*/
bool lv_demos_create(char * info[], int size);
/**
* Show help for lv_demos.
*/
void lv_demos_show_help(void);
2021-12-16 20:49:41 +01:00
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_DEMO_H*/