mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
e3e070d094
* remove cutter_win32 * build without compile errors * temporary workaround for sdb problems (now compiles again at least) * totally not a hack to get sdb working seriously, don't do this but it works
46 lines
896 B
C++
46 lines
896 B
C++
#ifndef HIGHLIGHTER_H
|
|
#define HIGHLIGHTER_H
|
|
|
|
#include "cutter.h"
|
|
|
|
#include <QSyntaxHighlighter>
|
|
#include <QHash>
|
|
#include <QTextCharFormat>
|
|
|
|
class QTextDocument;
|
|
class MainWindow;
|
|
|
|
class Highlighter : public QSyntaxHighlighter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Highlighter(QTextDocument *parent = 0);
|
|
|
|
protected:
|
|
void highlightBlock(const QString &text);
|
|
|
|
private:
|
|
CutterCore *core;
|
|
|
|
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
|