1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#pragma once
// QCodeEditor
#include <QStyleSyntaxHighlighter> // Required for inheritance
#include <QHighlightRule>
// Qt
#include <QVector>
/**
* @brief Class, that describes JSON code
* highlighter.
*/
class QJSONHighlighter : public QStyleSyntaxHighlighter
{
Q_OBJECT
public:
/**
* @brief Constructor.
* @param document Pointer to document.
*/
explicit QJSONHighlighter(QTextDocument* document=nullptr);
protected:
void highlightBlock(const QString& text) override;
private:
QVector<QHighlightRule> m_highlightRules;
QRegularExpression m_keyRegex;
};
|