50 lines
976 B
C
50 lines
976 B
C
/**
|
|
* @file lv_calendar_header_arrow.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_CALENDAR_HEADER_ARROW_H
|
|
#define LV_CALENDAR_HEADER_ARROW_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "../../../core/lv_obj.h"
|
|
#if LV_USE_CALENDAR_HEADER_ARROW
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
extern const lv_obj_class_t lv_calendar_header_arrow_class;
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**
|
|
* Create a calendar header with drop-drowns to select the year and month
|
|
* @param parent pointer to a calendar object.
|
|
* @return the created header
|
|
*/
|
|
lv_obj_t * lv_calendar_header_arrow_create(lv_obj_t * parent);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif /*LV_USE_CALENDAR_HEADER_ARROW*/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_CALENDAR_HEADER_ARROW_H*/
|