22 #ifndef _STELSCRIPTSYNTAXHIGHLIGHTER_HPP_
23 #define _STELSCRIPTSYNTAXHIGHLIGHTER_HPP_
25 #include <QSyntaxHighlighter>
27 #include <QTextCharFormat>
37 void setFormats(
void);
40 void highlightBlock(
const QString &text);
43 struct HighlightingRule
46 QTextCharFormat* format;
48 QVector<HighlightingRule> highlightingRules;
50 QTextCharFormat keywordFormat;
51 QTextCharFormat moduleFormat;
52 QTextCharFormat commentFormat;
53 QTextCharFormat constantFormat;
54 QTextCharFormat functionFormat;
57 #endif // _STELSCRIPTSYNTAXHIGHLIGHTER_HPP_