1 #ifndef __HIGHLIGHTER_H 2 #define __HIGHLIGHTER_H 4 #include <QSyntaxHighlighter> 16 void highlightBlock(
const QString &text);
19 struct HighlightingRule
22 QTextCharFormat format;
24 QVector<HighlightingRule> highlightingRules;
26 QTextCharFormat predefinedVars;
27 QTextCharFormat keywordFormat;
28 QTextCharFormat nonTerminalSymbol;
29 QTextCharFormat singleLineCommentFormat;
30 QTextCharFormat expandVar;
31 QTextCharFormat expandPredefVar;
34 #endif // HIGHLIGHTER_H Definition: highlighter.h:8