1 /****************************************************************************
3 ** Copyright (C) 2005-2006 Trolltech ASA. All rights reserved.
5 ** This file is part of the example classes of the Qt Toolkit.
7 ** This file may be used under the terms of the GNU General Public
8 ** License version 2.0 as published by the Free Software Foundation
9 ** and appearing in the file LICENSE.GPL included in the packaging of
10 ** this file. Please review the following information to ensure GNU
11 ** General Public Licensing requirements will be met:
12 ** http://www.trolltech.com/products/qt/opensource.html
14 ** If you are unsure which license is appropriate for your use, please
15 ** review the following information:
16 ** http://www.trolltech.com/products/qt/licensing.html or contact the
17 ** sales department at sales@trolltech.com.
19 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
20 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 ****************************************************************************/
24 // highlighting rules have been adapted by Uwe Drechsel to match vym syntax
29 #include "highlighter.h"
31 Highlighter::Highlighter(QTextDocument *parent)
32 : QSyntaxHighlighter(parent)
34 HighlightingRule rule;
36 keywordFormat.setForeground(Qt::darkBlue);
37 keywordFormat.setFontWeight(QFont::Bold);
38 QStringList keywordPatterns;
39 keywordPatterns << "\\baddBranch\\b"
40 << "\\baddBranchBefore\\b"
41 << "\\baddMapInsert\\b"
42 << "\\baddMapReplace\\b"
43 << "\\bcolorBranch\\b"
44 << "\\bcolorSubtree\\b"
48 << "\\bdeleteKeepChilds\\b"
49 << "\\bdeleteChilds\\b"
50 << "\\bexportASCII\\b"
51 << "\\bexportImage\\b"
52 << "\\bexportXHTML\\b"
57 << "\\bmoveBranchUp\\b"
58 << "\\bmoveBranchDown\\b"
67 << "\\bselectLastBranch\\b"
68 << "\\bselectLastImage\\b"
69 << "\\bselectLatestAdded\\b"
70 << "\\bsetFrameType\\b"
71 << "\\bsetFramePenColor\\b"
72 << "\\bsetFrameBrushColor\\b"
73 << "\\bsetFramePadding\\b"
74 << "\\bsetFrameBorderWidth\\b"
75 << "\\bsetHideLinkUnselected\\b"
76 << "\\bsetMapAuthor\\b"
77 << "\\bsetMapComment\\b"
78 << "\\bsetMapBackgroundColor\\b"
79 << "\\bsetMapDefLinkColor\\b"
80 << "\\bsetMapDefLinkStyle\\b"
82 << "\\bsetHideExport\\b"
83 << "\\bsetIncludeImagesHorizontally\\b"
84 << "\\bsetIncludeImagesVertically\\b"
90 << "\\bunscrollChilds\\b"
93 foreach (QString pattern, keywordPatterns) {
94 rule.pattern = QRegExp(pattern);
95 rule.format = keywordFormat;
96 highlightingRules.append(rule);
101 classFormat.setFontWeight(QFont::Bold);
102 classFormat.setForeground(Qt::darkMagenta);
103 rule.pattern = QRegExp("\\bQ[A-Za-z]+\\b");
104 rule.format = classFormat;
105 highlightingRules.append(rule);
108 // Single line comments
109 singleLineCommentFormat.setForeground(Qt::red);
110 rule.pattern = QRegExp("#[^\n]*");
111 rule.format = singleLineCommentFormat;
112 highlightingRules.append(rule);
114 // multiline comments
115 multiLineCommentFormat.setForeground(Qt::red);
116 commentStartExpression = QRegExp("/\\*");
117 commentEndExpression = QRegExp("\\*/");
120 quotationFormat.setForeground(Qt::darkGreen);
121 rule.pattern = QRegExp("\".*\"");
122 rule.format = quotationFormat;
123 highlightingRules.append(rule);
125 QStringList valuePatterns;
126 valuePatterns << "\\btrue\\b" << "\\bfalse\\b";
127 foreach (QString pattern, valuePatterns) {
128 rule.pattern = QRegExp(pattern);
129 rule.format = quotationFormat;
130 highlightingRules.append(rule);
137 functionFormat.setFontItalic(true);
138 functionFormat.setForeground(Qt::blue);
139 rule.pattern = QRegExp("\\b[A-Za-z0-9_]+(?=\\()");
140 rule.format = functionFormat;
141 highlightingRules.append(rule);
146 void Highlighter::highlightBlock(const QString &text)
148 foreach (HighlightingRule rule, highlightingRules) {
149 QRegExp expression(rule.pattern);
150 int index = text.indexOf(expression);
152 int length = expression.matchedLength();
153 setFormat(index, length, rule.format);
154 index = text.indexOf(expression, index + length);
157 setCurrentBlockState(0);
160 if (previousBlockState() != 1)
161 startIndex = text.indexOf(commentStartExpression);
163 while (startIndex >= 0) {
164 int endIndex = text.indexOf(commentEndExpression, startIndex);
166 if (endIndex == -1) {
167 setCurrentBlockState(1);
168 commentLength = text.length() - startIndex;
170 commentLength = endIndex - startIndex
171 + commentEndExpression.matchedLength();
173 setFormat(startIndex, commentLength, multiLineCommentFormat);
174 startIndex = text.indexOf(commentStartExpression,
175 startIndex + commentLength);