32 lines
692 B
C++
32 lines
692 B
C++
#ifndef CONF_HIGHLIGHTER_H
|
|
#define CONF_HIGHLIGHTER_H
|
|
|
|
#include <QSyntaxHighlighter>
|
|
#include <QTextCursor>
|
|
#include <QTextCharFormat>
|
|
|
|
class QTextDocument;
|
|
|
|
class ConfigHighlighter : public QSyntaxHighlighter
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ConfigHighlighter(QTextDocument *parent = 0);
|
|
|
|
QTextCursor cursor;
|
|
|
|
private:
|
|
void highlightBlock(const QString &text);
|
|
|
|
struct HighlightingRule {
|
|
QRegExp pattern;
|
|
QTextCharFormat format;
|
|
};
|
|
|
|
QVector<HighlightingRule> highlightingRules;
|
|
QRegExp commentStartExpression, commentEndExpression;
|
|
QTextCharFormat singleLineCommentFormat, valueNameFormat, valueFormat, equalFormat, sectionFormat, spaceFormat, substFormat;
|
|
};
|
|
|
|
#endif // CONF_HIGHTLIGHTER_H
|