cutter/src/utils/SyntaxHighlighter.h

34 lines
696 B
C
Raw Normal View History

#pragma once
#include <QSyntaxHighlighter>
#include <QVector>
#include <QTextDocument>
#include <QRegularExpression>
#include <QTextCharFormat>
class SyntaxHighlighter : public QSyntaxHighlighter
{
Q_OBJECT
public:
SyntaxHighlighter(QTextDocument *parent = nullptr);
virtual ~SyntaxHighlighter() = default;
protected:
void highlightBlock(const QString &text) override;
private:
2018-03-21 20:32:32 +00:00
struct HighlightingRule {
QRegularExpression pattern;
QTextCharFormat format;
};
QVector<HighlightingRule> highlightingRules;
QRegularExpression commentStartExpression;
QRegularExpression commentEndExpression;
QTextCharFormat multiLineCommentFormat;
};