mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
45 lines
906 B
C
45 lines
906 B
C
|
#ifndef HIGHLIGHTER_H
|
||
|
#define HIGHLIGHTER_H
|
||
|
|
||
|
#include <QSyntaxHighlighter>
|
||
|
|
||
|
#include <QHash>
|
||
|
#include <QTextCharFormat>
|
||
|
|
||
|
class QTextDocument;
|
||
|
class MainWindow;
|
||
|
|
||
|
class Highlighter : public QSyntaxHighlighter
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
Highlighter(MainWindow *main, QTextDocument *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
void highlightBlock(const QString &text);
|
||
|
|
||
|
private:
|
||
|
MainWindow *main;
|
||
|
|
||
|
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
|