mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
34 lines
696 B
C++
34 lines
696 B
C++
#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:
|
|
struct HighlightingRule {
|
|
QRegularExpression pattern;
|
|
QTextCharFormat format;
|
|
};
|
|
|
|
QVector<HighlightingRule> highlightingRules;
|
|
|
|
QRegularExpression commentStartExpression;
|
|
QRegularExpression commentEndExpression;
|
|
|
|
QTextCharFormat multiLineCommentFormat;
|
|
};
|