#ifndef VSTYLEPARSER_H #define VSTYLEPARSER_H #include #include #include #include "hgmarkdownhighlighter.h" extern "C" { #include #include } class QColor; class QBrush; class VStyleParser { public: VStyleParser(); ~VStyleParser(); void parseMarkdownStyle(const QString &styleStr); QVector fetchMarkdownStyles(const QFont &baseFont) const; void fetchMarkdownEditorStyles(QPalette &palette, QFont &font) const; private: QColor QColorFromPmhAttr(pmh_attr_argb_color *attr) const; QBrush QBrushFromPmhAttr(pmh_attr_argb_color *attr) const; QTextCharFormat QTextCharFormatFromAttrs(pmh_style_attribute *attrs, const QFont &baseFont) const; QString filterAvailableFontFamily(const QString &familyList) const; pmh_style_collection *markdownStyles; }; #endif // VSTYLEPARSER_H