cutter/src/common/MdHighlighter.h

40 lines
825 B
C
Raw Normal View History

#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 = nullptr);
protected:
void highlightBlock(const QString &text);
private:
2018-03-21 20:32:32 +00:00
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