mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
39 lines
797 B
C++
39 lines
797 B
C++
#ifndef MDHIGHLIGHTER_H
|
|
#define MDHIGHLIGHTER_H
|
|
|
|
#include <QSyntaxHighlighter>
|
|
|
|
#include <QHash>
|
|
#include <QTextCharFormat>
|
|
#include <QRegularExpression>
|
|
|
|
class QTextDocument;
|
|
|
|
class MdHighlighter : public QSyntaxHighlighter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MdHighlighter(QTextDocument *parent = nullptr);
|
|
|
|
protected:
|
|
void highlightBlock(const QString &text);
|
|
|
|
private:
|
|
struct HighlightingRule
|
|
{
|
|
QRegularExpression pattern;
|
|
QTextCharFormat format;
|
|
};
|
|
QVector<HighlightingRule> highlightingRules;
|
|
|
|
QTextCharFormat keywordFormat;
|
|
QTextCharFormat classFormat;
|
|
QTextCharFormat singleLineCommentFormat;
|
|
QTextCharFormat multiLineCommentFormat;
|
|
QTextCharFormat quotationFormat;
|
|
QTextCharFormat functionFormat;
|
|
};
|
|
|
|
#endif // MDHIGHLIGHTER_H
|