cutter/src/common/HexAsciiHighlighter.h

41 lines
914 B
C
Raw Normal View History

#ifndef ASCIIHIGHLIGHTER_H
#define ASCIIHIGHLIGHTER_H
#include <QSyntaxHighlighter>
#include <QHash>
#include <QTextCharFormat>
#include <QRegularExpression>
class QTextDocument;
class AsciiHighlighter : public QSyntaxHighlighter
{
Q_OBJECT
public:
explicit AsciiHighlighter(QTextDocument *parent = nullptr);
protected:
void highlightBlock(const QString &text);
private:
2018-03-21 20:32:32 +00:00
struct HighlightingRule {
QRegularExpression pattern;
QTextCharFormat format;
};
QVector<HighlightingRule> highlightingRules;
QRegularExpression commentStartRegularExpression;
QRegularExpression commentEndRegularExpression;
QTextCharFormat keywordFormat;
QTextCharFormat classFormat;
QTextCharFormat singleLineCommentFormat;
QTextCharFormat multiLineCommentFormat;
QTextCharFormat quotationFormat;
QTextCharFormat asciiFormat;
};
#endif // ASCIIHIGHLIGHTER_H