1 /** 2 * @file lv_xml_tabview_parser.h 3 * 4 */ 5 6 #ifndef LV_TABVIEW_XML_PARSER_H 7 #define LV_TABVIEW_XML_PARSER_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 #include "../lv_xml.h" 17 #if LV_USE_XML 18 19 /********************** 20 * TYPEDEFS 21 **********************/ 22 23 /********************** 24 * GLOBAL PROTOTYPES 25 **********************/ 26 27 void * lv_xml_tabview_create(lv_xml_parser_state_t * state, const char ** attrs); 28 void lv_xml_tabview_apply(lv_xml_parser_state_t * state, const char ** attrs); 29 void * lv_xml_tabview_tab_bar_create(lv_xml_parser_state_t * state, const char ** attrs); 30 void lv_xml_tabview_tab_bar_apply(lv_xml_parser_state_t * state, const char ** attrs); 31 void * lv_xml_tabview_tab_create(lv_xml_parser_state_t * state, const char ** attrs); 32 void lv_xml_tabview_tab_apply(lv_xml_parser_state_t * state, const char ** attrs); 33 34 /********************** 35 * MACROS 36 **********************/ 37 38 #endif /* LV_USE_XML */ 39 40 #ifdef __cplusplus 41 } /*extern "C"*/ 42 #endif 43 44 #endif /*LV_TABVIEW_XML_PARSE_H*/ 45