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