-
Notifications
You must be signed in to change notification settings - Fork 1
/
htmlhighlighter.cpp
138 lines (128 loc) · 5.22 KB
/
htmlhighlighter.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include "htmlhighlighter.h"
#include <QDebug>
HtmlHighlighter::HtmlHighlighter(QTextDocument *document) : QSyntaxHighlighter(document) {
QColor yellow(233, 247, 158);
QColor orange(222, 121, 51);
QColor gray(73, 108, 132);
QColor darkCyan(38, 162, 158);
QTextCharFormat entityFormat;
entityFormat.setForeground(QColor(0, 128, 0));
entityFormat.setFontWeight(QFont::Bold);
setFormatFor(Entity, entityFormat);
QTextCharFormat tagFormat;
tagFormat.setForeground(darkCyan);
tagFormat.setFontWeight(QFont::Bold);
setFormatFor(Tag, tagFormat);
QTextCharFormat commentFormat;
commentFormat.setForeground(gray);
commentFormat.setFontItalic(true);
setFormatFor(Comment, commentFormat);
QTextCharFormat attributeFormat;
attributeFormat.setForeground(orange);
attributeFormat.setFontWeight(QFont::Bold);
setFormatFor(Attribute, attributeFormat);
QTextCharFormat valueFormat;
valueFormat.setForeground(yellow);
valueFormat.setFontWeight(QFont::Bold);
setFormatFor(Value, valueFormat);
}
void HtmlHighlighter::setFormatFor(Construct construct, const QTextCharFormat &format) {
m_formats[construct] = format;
rehighlight();
}
void HtmlHighlighter::highlightBlock(const QString &text) {
static const QLatin1Char tab = QLatin1Char('\t');
static const QLatin1Char space = QLatin1Char(' ');
static const QLatin1Char amp = QLatin1Char('&');
static const QLatin1Char startTag = QLatin1Char('<');
static const QLatin1Char endTag = QLatin1Char('>');
static const QLatin1Char quot = QLatin1Char('"');
static const QLatin1Char apos = QLatin1Char('\'');
static const QLatin1Char semicolon = QLatin1Char(';');
static const QLatin1Char equals = QLatin1Char('=');
static const QLatin1String startComment("<!--");
static const QLatin1String endComment("-->");
static const QLatin1String endElement("/>");
int state = previousBlockState();
int len = text.length();
int start = 0;
int pos = 0;
while (pos < len) {
switch (state) {
case NormalState:
default:
while (pos < len) {
QChar ch = text.at(pos);
if (ch == startTag) {
if (text.mid(pos, 4) == startComment) {
state = InComment;
} else {
state = InTag;
start = pos;
while (pos < len && text.at(pos) != space && text.at(pos) != endTag && text.at(pos) != tab && text.mid(pos, 2) != endElement)
++pos;
if (text.mid(pos, 2) == endElement)
++pos;
setFormat(start, pos - start,m_formats[Tag]);
break;
}
break;
} else if (ch == amp) {
start = pos;
while (pos < len && text.at(pos++) != semicolon);
setFormat(start, pos - start, m_formats[Entity]);
} else {
++pos;
}
}
break;
case InComment:
start = pos;
while (pos < len) {
if (text.mid(pos, 3) == endComment) {
pos += 3;
state = NormalState;
break;
} else {
++pos;
}
}
setFormat(start, pos - start, m_formats[Comment]);
break;
case InTag:
QChar quote = QChar::Null;
while (pos < len) {
QChar ch = text.at(pos);
if (quote.isNull()) {
start = pos;
if (ch == apos || ch == quot) {
quote = ch;
} else if (ch == endTag) {
++pos;
setFormat(start, pos - start, m_formats[Tag]);
state = NormalState;
break;
} else if (text.mid(pos, 2) == endElement) {
pos += 2;
setFormat(start, pos - start, m_formats[Tag]);
state = NormalState;
break;
} else if (ch != space && text.at(pos) != tab) {
++pos;
while (pos < len && text.at(pos) != space && text.at(pos) != tab && text.at(pos) != equals) {
++pos;
}
setFormat(start, pos - start, m_formats[Attribute]);
start = pos;
}
} else if (ch == quote) {
quote = QChar::Null;
setFormat(start, (pos - start)+1, m_formats[Value]);
}
++pos;
}
break;
}
}
setCurrentBlockState(state);
}