2021-05-26 22:04:10 +02:00
|
|
|
/**
|
|
|
|
* @file lv_example_event.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_EXAMPLE_EVENT_H
|
|
|
|
#define LV_EXAMPLE_EVENT_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
2024-09-12 09:27:25 +02:00
|
|
|
void lv_example_event_click(void);
|
|
|
|
void lv_example_event_streak(void);
|
|
|
|
void lv_example_event_button(void);
|
|
|
|
void lv_example_event_bubble(void);
|
|
|
|
void lv_example_event_draw(void);
|
2021-05-26 22:04:10 +02:00
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /*extern "C"*/
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*LV_EXAMPLE_EVENT_H*/
|