#pragma once // QCodeEditor #include // Required for inheritance #include // Qt #include /** * @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 m_highlightRules; QRegularExpression m_keyRegex; };