2017-03-29 10:18:37 +00:00
|
|
|
#ifndef HIGHLIGHTER_H
|
|
|
|
#define HIGHLIGHTER_H
|
|
|
|
|
|
|
|
#include <QSyntaxHighlighter>
|
|
|
|
|
2017-10-09 18:08:35 +00:00
|
|
|
#include "cutter.h"
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QTextCharFormat>
|
|
|
|
|
|
|
|
class QTextDocument;
|
|
|
|
class MainWindow;
|
|
|
|
|
|
|
|
class Highlighter : public QSyntaxHighlighter
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-10-09 18:08:35 +00:00
|
|
|
Highlighter(QTextDocument *parent = 0);
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void highlightBlock(const QString &text);
|
|
|
|
|
|
|
|
private:
|
2017-10-09 18:08:35 +00:00
|
|
|
CutterCore *core;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
|
|
|
struct HighlightingRule
|
|
|
|
{
|
|
|
|
QRegExp pattern;
|
|
|
|
QTextCharFormat format;
|
|
|
|
};
|
|
|
|
QVector<HighlightingRule> highlightingRules;
|
|
|
|
|
|
|
|
QRegExp commentStartExpression;
|
|
|
|
QRegExp commentEndExpression;
|
|
|
|
|
|
|
|
QTextCharFormat keywordFormat;
|
|
|
|
QTextCharFormat regFormat;
|
|
|
|
QTextCharFormat classFormat;
|
|
|
|
QTextCharFormat singleLineCommentFormat;
|
|
|
|
QTextCharFormat multiLineCommentFormat;
|
|
|
|
QTextCharFormat quotationFormat;
|
|
|
|
QTextCharFormat functionFormat;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HIGHLIGHTER_H
|