cutter/src/utils/HexAsciiHighlighter.cpp

56 lines
1.6 KiB
C++
Raw Normal View History

#include <QtGui>
2017-10-01 19:09:42 +00:00
#include "utils/HexAsciiHighlighter.h"
AsciiHighlighter::AsciiHighlighter(QTextDocument *parent)
: QSyntaxHighlighter(parent)
{
HighlightingRule rule;
asciiFormat.setForeground(QColor(65, 131, 215));
rule.pattern = QRegExp("\\b[A-Za-z0-9]+\\b");
rule.format = asciiFormat;
highlightingRules.append(rule);
commentStartExpression = QRegExp("/\\*");
commentEndExpression = QRegExp("\\*/");
}
void AsciiHighlighter::highlightBlock(const QString &text)
{
2017-04-09 19:55:06 +00:00
foreach (const HighlightingRule &rule, highlightingRules)
{
QRegExp expression(rule.pattern);
int index = expression.indexIn(text);
2017-04-09 19:55:06 +00:00
while (index >= 0)
{
int length = expression.matchedLength();
setFormat(index, length, rule.format);
index = expression.indexIn(text, index + length);
}
}
setCurrentBlockState(0);
int startIndex = 0;
if (previousBlockState() != 1)
startIndex = commentStartExpression.indexIn(text);
2017-04-09 19:55:06 +00:00
while (startIndex >= 0)
{
int endIndex = commentEndExpression.indexIn(text, startIndex);
int commentLength;
2017-04-09 19:55:06 +00:00
if (endIndex == -1)
{
setCurrentBlockState(1);
commentLength = text.length() - startIndex;
2017-04-09 19:55:06 +00:00
}
else
{
commentLength = endIndex - startIndex
+ commentEndExpression.matchedLength();
}
setFormat(startIndex, commentLength, multiLineCommentFormat);
startIndex = commentStartExpression.indexIn(text, startIndex + commentLength);
}
}