2017-03-29 10:18:37 +00:00
|
|
|
#ifndef HEXHIGHLIGHTER_H
|
|
|
|
#define HEXHIGHLIGHTER_H
|
|
|
|
|
|
|
|
#include <QSyntaxHighlighter>
|
|
|
|
|
|
|
|
#include <QHash>
|
|
|
|
#include <QTextCharFormat>
|
|
|
|
|
|
|
|
class QTextDocument;
|
|
|
|
|
|
|
|
class HexHighlighter : public QSyntaxHighlighter
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-04 07:58:32 +00:00
|
|
|
explicit HexHighlighter(QTextDocument *parent = nullptr);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void highlightBlock(const QString &text);
|
|
|
|
|
|
|
|
private:
|
2018-03-21 20:32:32 +00:00
|
|
|
struct HighlightingRule {
|
2017-03-29 10:18:37 +00:00
|
|
|
QRegExp pattern;
|
|
|
|
QTextCharFormat format;
|
|
|
|
};
|
|
|
|
QVector<HighlightingRule> highlightingRules;
|
|
|
|
|
|
|
|
QRegExp commentStartExpression;
|
|
|
|
QRegExp commentEndExpression;
|
|
|
|
|
|
|
|
QTextCharFormat keywordFormat;
|
|
|
|
QTextCharFormat classFormat;
|
|
|
|
QTextCharFormat singleLineCommentFormat;
|
|
|
|
QTextCharFormat multiLineCommentFormat;
|
|
|
|
QTextCharFormat quotationFormat;
|
|
|
|
QTextCharFormat functionFormat;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HEXHIGHLIGHTER_H
|