1 /**
2  * @file lv_calendar_header_arrow.h
3  *
4  */
5 
6 #ifndef LV_CALENDAR_HEADER_ARROW_H
7 #define LV_CALENDAR_HEADER_ARROW_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "../../../core/lv_obj.h"
17 #if LV_USE_CALENDAR_HEADER_ARROW
18 
19 /*********************
20  *      DEFINES
21  *********************/
22 
23 /**********************
24  *      TYPEDEFS
25  **********************/
26 extern const lv_obj_class_t lv_calendar_header_arrow_class;
27 
28 /**********************
29  * GLOBAL PROTOTYPES
30  **********************/
31 
32 /**
33  * Create a calendar header with drop-drowns to select the year and month
34  * @param parent    pointer to a calendar object.
35  * @return          the created header
36  */
37 lv_obj_t * lv_calendar_header_arrow_create(lv_obj_t * parent);
38 
39 /**********************
40  *      MACROS
41  **********************/
42 
43 #endif /*LV_USE_CALENDAR_HEADER_ARROW*/
44 
45 #ifdef __cplusplus
46 } /*extern "C"*/
47 #endif
48 
49 #endif /*LV_CALENDAR_HEADER_ARROW_H*/
50