cutter/src/common/Highlighter.h

47 lines
982 B
C
Raw Normal View History

#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:
2017-10-09 18:08:35 +00:00
CutterCore *core;
2021-01-24 14:50:13 +00:00
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;
};
2021-01-24 14:50:13 +00:00
#endif // HIGHLIGHTER_H