/** * @file lv_xml_tabview_parser.h * */ #ifndef LV_TABVIEW_XML_PARSER_H #define LV_TABVIEW_XML_PARSER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "../lv_xml.h" #if LV_USE_XML /********************** * TYPEDEFS **********************/ /********************** * GLOBAL PROTOTYPES **********************/ void * lv_xml_tabview_create(lv_xml_parser_state_t * state, const char ** attrs); void lv_xml_tabview_apply(lv_xml_parser_state_t * state, const char ** attrs); void * lv_xml_tabview_tab_bar_create(lv_xml_parser_state_t * state, const char ** attrs); void lv_xml_tabview_tab_bar_apply(lv_xml_parser_state_t * state, const char ** attrs); void * lv_xml_tabview_tab_create(lv_xml_parser_state_t * state, const char ** attrs); void lv_xml_tabview_tab_apply(lv_xml_parser_state_t * state, const char ** attrs); /********************** * MACROS **********************/ #endif /* LV_USE_XML */ #ifdef __cplusplus } /*extern "C"*/ #endif #endif /*LV_TABVIEW_XML_PARSE_H*/