1 #ifndef HTMLHIGHLIGHTER_H 2 #define HTMLHIGHLIGHTER_H 4 #include <QSyntaxHighlighter> 26 QTextCharFormat format;
28 QVector<HighlightingRule> m_startTagRules;
29 QVector<HighlightingRule> m_endTagRules;
33 QTextCharFormat m_edgeTagFormat;
34 QTextCharFormat m_insideTagFormat;
36 QRegExp m_commentStartExpression;
37 QRegExp m_commentEndExpression;
38 QTextCharFormat m_multiLineCommentFormat;
41 QTextCharFormat m_quotationFormat;
42 QTextCharFormat m_tagsFormat;
45 #endif // HTMLHIGHLIGHTER_H Definition: htmlhighlighter.h:6
Definition: htmlhighlighter.h:24
void highlightBlock(const QString &text) Q_DECL_OVERRIDE
Definition: htmlhighlighter.cpp:100