31 HighlightingRule rule;
33 keywordFormat.setForeground(Qt::darkBlue);
34 keywordFormat.setFontWeight(QFont::Bold);
35 QStringList keywordPatterns;
36 keywordPatterns <<
"\\bfor\\b"
69 foreach (
const QString& pattern, keywordPatterns)
71 rule.pattern = QRegExp(pattern);
72 rule.format = keywordFormat;
73 highlightingRules.append(rule);
76 classFormat.setFontWeight(QFont::Bold);
77 classFormat.setForeground(Qt::darkMagenta);
78 rule.pattern = QRegExp(
"\\bQ[A-Za-z]+\\b");
79 rule.format = classFormat;
80 highlightingRules.append(rule);
82 singleLineCommentFormat.setForeground(
Qt::red);
83 rule.pattern = QRegExp(
"//[^\n]*");
84 rule.format = singleLineCommentFormat;
85 highlightingRules.append(rule);
87 multiLineCommentFormat.setForeground(
Qt::red);
89 quotationFormat.setForeground(Qt::darkGreen);
90 rule.pattern = QRegExp(
"\".*\"");
91 rule.format = quotationFormat;
92 highlightingRules.append(rule);
94 functionFormat.setFontItalic(
true);
95 functionFormat.setForeground(Qt::blue);
96 rule.pattern = QRegExp(
"\\b[A-Za-z0-9_]+(?=\\()");
97 rule.format = functionFormat;
98 highlightingRules.append(rule);
100 commentStartExpression = QRegExp(
"/\\*");
101 commentEndExpression = QRegExp(
"\\*/");
107 foreach (
const HighlightingRule& rule, highlightingRules)
109 QRegExp expression(rule.pattern);
110 int index = expression.indexIn(text);
114 int length = expression.matchedLength();
115 setFormat(
index, length, rule.format);
116 index = expression.indexIn(text,
index + length);
119 setCurrentBlockState(0);
123 if (previousBlockState() != 1)
125 startIndex = commentStartExpression.indexIn(text);
128 while (startIndex >= 0)
130 int endIndex = commentEndExpression.indexIn(text, startIndex);
135 setCurrentBlockState(1);
136 commentLength = text.length() - startIndex;
140 commentLength = endIndex - startIndex + commentEndExpression.matchedLength();
143 setFormat(startIndex, commentLength, multiLineCommentFormat);
144 startIndex = commentStartExpression.indexIn(text, startIndex + commentLength);