mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +00:00
47 lines
982 B
C++
47 lines
982 B
C++
#ifndef HIGHLIGHTER_H
|
|
#define HIGHLIGHTER_H
|
|
|
|
#include "core/Cutter.h"
|
|
|
|
#include <QSyntaxHighlighter>
|
|
#include <QHash>
|
|
#include <QTextCharFormat>
|
|
#include <QRegularExpression>
|
|
|
|
class QTextDocument;
|
|
class MainWindow;
|
|
|
|
class Highlighter : public QSyntaxHighlighter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Highlighter(QTextDocument *parent = nullptr);
|
|
|
|
protected:
|
|
void highlightBlock(const QString &text);
|
|
|
|
private:
|
|
CutterCore *core;
|
|
|
|
struct HighlightingRule
|
|
{
|
|
QRegularExpression pattern;
|
|
QTextCharFormat format;
|
|
};
|
|
QVector<HighlightingRule> highlightingRules;
|
|
|
|
QRegularExpression commentStartRegularExpression;
|
|
QRegularExpression commentEndRegularExpression;
|
|
|
|
QTextCharFormat keywordFormat;
|
|
QTextCharFormat regFormat;
|
|
QTextCharFormat classFormat;
|
|
QTextCharFormat singleLineCommentFormat;
|
|
QTextCharFormat multiLineCommentFormat;
|
|
QTextCharFormat quotationFormat;
|
|
QTextCharFormat functionFormat;
|
|
};
|
|
|
|
#endif // HIGHLIGHTER_H
|