mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 21:06:10 +00:00
41 lines
826 B
C
41 lines
826 B
C
|
#ifndef ASCIIHIGHLIGHTER_H
|
||
|
#define ASCIIHIGHLIGHTER_H
|
||
|
|
||
|
#include <QSyntaxHighlighter>
|
||
|
|
||
|
#include <QHash>
|
||
|
#include <QTextCharFormat>
|
||
|
|
||
|
class QTextDocument;
|
||
|
|
||
|
class AsciiHighlighter : public QSyntaxHighlighter
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
AsciiHighlighter(QTextDocument *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
void highlightBlock(const QString &text);
|
||
|
|
||
|
private:
|
||
|
struct HighlightingRule
|
||
|
{
|
||
|
QRegExp pattern;
|
||
|
QTextCharFormat format;
|
||
|
};
|
||
|
QVector<HighlightingRule> highlightingRules;
|
||
|
|
||
|
QRegExp commentStartExpression;
|
||
|
QRegExp commentEndExpression;
|
||
|
|
||
|
QTextCharFormat keywordFormat;
|
||
|
QTextCharFormat classFormat;
|
||
|
QTextCharFormat singleLineCommentFormat;
|
||
|
QTextCharFormat multiLineCommentFormat;
|
||
|
QTextCharFormat quotationFormat;
|
||
|
QTextCharFormat asciiFormat;
|
||
|
};
|
||
|
|
||
|
#endif // ASCIIHIGHLIGHTER_H
|