Files
lvgl/src/others/xml/parsers/lv_xml_scale_parser.h
Gabor Kiss-Vamosi a535063308 feat(xml): add support scale, span, roller and bar
Also add some backward compatible API changes
2025-02-05 22:48:59 +01:00

42 lines
881 B
C

/**
* @file lv_xml_scale_parser.h
*
*/
#ifndef LV_SCALE_XML_PARSER_H
#define LV_SCALE_XML_PARSER_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lv_xml.h"
#if LV_USE_XML
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void * lv_xml_scale_create(lv_xml_parser_state_t * state, const char ** attrs);
void lv_xml_scale_apply(lv_xml_parser_state_t * state, const char ** attrs);
void * lv_xml_scale_section_create(lv_xml_parser_state_t * state, const char ** attrs);
void lv_xml_scale_section_apply(lv_xml_parser_state_t * state, const char ** attrs);
/**********************
* MACROS
**********************/
#endif /* LV_USE_XML */
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_SCALE_XML_PARSE_H*/