Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. C++ highlighter for Python
Forum Update on Monday, May 27th 2025

C++ highlighter for Python

Scheduled Pinned Locked Moved General and Desktop
6 Posts 3 Posters 1.4k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    JeroenDierckx
    wrote on last edited by
    #1

    Hi,

    I needed a simple python syntax highlighter in C++, to use in a QTextEdit. I decided to port the code from https://wiki.python.org/moin/PyQt/Python syntax highlighting

    I thought this could be useful for someone else, so here you go:

    PythonHighlighter.h

    #ifndef PYTHONHIGHLIGHTER_H
    #define PYTHONHIGHLIGHTER_H
    
    #include <QSyntaxHighlighter>
    #include <QRegExp>
    
    // Started from Qt Syntax Highlighter example and then ported https://wiki.python.org/moin/PyQt/Python%20syntax%20highlighting
    class PythonHighlighter : public QSyntaxHighlighter
    {
    public:
        explicit PythonHighlighter(QTextDocument *parent = nullptr);
    
        // Helper
        static QTextCharFormat format(const QString &colorName, const QString &style = QString());
    
    protected:
        void highlightBlock(const QString &text) override;
    
    private:
        struct HighlightingRule
        {
            QRegExp pattern;
            QTextCharFormat format;
            int matchIndex = 0;
    
            HighlightingRule() { }
            HighlightingRule(const QRegExp &r, int i, const QTextCharFormat &f) : pattern(r), format(f), matchIndex(i) { }
            HighlightingRule(const QString &p, int i, const QTextCharFormat &f) : pattern(QRegExp(p)), format(f), matchIndex(i) { }
        };
    
        void initialize();
        void highlightPythonBlock(const QString &text);
        bool matchMultiLine(const QString &text, const HighlightingRule &rule);
    
        QVector<HighlightingRule> _pythonHighlightingRules;
        HighlightingRule _triSingle, _triDouble;
    };
    
    #endif // PYTHONHIGHLIGHTER_H
    

    PythonHighlighter.cpp

    #include "PythonHighlighter.h"
    
    /////
    
    // Syntax styles that can be shared by all languages
    typedef QMap<QString, QTextCharFormat> FormatMap;
    //static FormatMap STYLES;
    static const FormatMap STYLES = {
        { "keyword", PythonHighlighter::format("blue") },
        { "operator", PythonHighlighter::format("red") },
        { "brace", PythonHighlighter::format("darkGray") },
        { "defclass", PythonHighlighter::format("black", "bold") },
        { "string", PythonHighlighter::format("magenta") },
        { "string2", PythonHighlighter::format("darkMagenta") },
        { "comment", PythonHighlighter::format("darkGreen", "italic") },
        { "self", PythonHighlighter::format("black", "italic") },
        { "numbers", PythonHighlighter::format("brown") }
    };
    
    // Python keywords
    static const QStringList keywords = {
        "and", "assert", "break", "class", "continue", "def",
        "del", "elif", "else", "except", "exec", "finally",
        "for", "from", "global", "if", "import", "in",
        "is", "lambda", "not", "or", "pass", "print",
        "raise", "return", "try", "while", "yield",
        "None", "True", "False"
    };
    
    // Python operators
    static const QStringList operators = {
        "=",
        // Comparison
        "==", "!=", "<", "<=", ">", ">=",
        // Arithmetic
        "\\+", "-", "\\*", "/", "//", "\\%", "\\*\\*",
        // In-place
        "\\+=", "-=", "\\*=", "/=", "\\%=",
        // Bitwise
        "\\^", "\\|", "\\&", "\\~", ">>", "<<"
    };
    
    // Python braces
    static const QStringList braces = {
        "\\{", "\\}", "\\(", "\\)", "\\[", "\\]"
    };
    
    /////
    
    PythonHighlighter::PythonHighlighter(QTextDocument *parent)
        : QSyntaxHighlighter(parent)
    {
        initialize();
    }
    
    void PythonHighlighter::highlightBlock(const QString &text)
    {
        highlightPythonBlock(text);
    }
    
    /////
    
    void PythonHighlighter::initialize()
    {
        // Multi-line strings (expression, flag, style)
        // FIXME: The triple-quotes in these two lines will mess up the
        // syntax highlighting from this point onward
        _triSingle = HighlightingRule("'''", 1, STYLES["string2"]);
        _triDouble = HighlightingRule("\"\"\"", 2, STYLES["string2"]);
    
        // Keyword, operator, and brace rules
        for(const QString &keyword : keywords)
        {
            QString pattern = QString("\\b%1\\b").arg(keyword);
            _pythonHighlightingRules += HighlightingRule(pattern, 0, STYLES["keyword"]);
        }
    
        for(const QString &pattern: operators)
            _pythonHighlightingRules += HighlightingRule(pattern, 0, STYLES["operator"]);
    
        for(const QString &pattern: braces)
            _pythonHighlightingRules += HighlightingRule(pattern, 0, STYLES["brace"]);
    
        // All other rules
    
        // 'self'
        _pythonHighlightingRules += HighlightingRule("\\bself\\b", 0, STYLES["self"]);
    
        // Double-quoted string, possibly containing escape sequences
        _pythonHighlightingRules += HighlightingRule("\"[^\"\\\\]*(\\\\.[^\"\\\\]*)*\"", 0, STYLES["string"]);
        // Single-quoted string, possibly containing escape sequences
        _pythonHighlightingRules += HighlightingRule("\"[^'\\\\]*(\\\\.[^'\\\\]*)*\"", 0, STYLES["string"]);
    
        // 'def' followed by an identifier
        _pythonHighlightingRules += HighlightingRule("\\bdef\\b\\s*(\\w+)", 1, STYLES["defclass"]);
        // 'class' followed by an identifier
        _pythonHighlightingRules += HighlightingRule("\\bclass\\b\\s*(\\w+)", 1, STYLES["defclass"]);
    
        // From '#' until a newline
        _pythonHighlightingRules += HighlightingRule("#[^\\n]*", 0, STYLES["comment"]);
    
        // Numeric literals
        _pythonHighlightingRules += HighlightingRule("\\b[+-]?[0-9]+[lL]?\\b", 0, STYLES["numbers"]);
        _pythonHighlightingRules += HighlightingRule("\\b[+-]?0[xX][0-9A-Fa-f]+[lL]?\\b", 0, STYLES["numbers"]);
        _pythonHighlightingRules += HighlightingRule("\\b[+-]?[0-9]+(?:\\.[0-9]+)?(?:[eE][+-]?[0-9]+)?\\b", 0, STYLES["numbers"]);
    }
    
    void PythonHighlighter::highlightPythonBlock(const QString &text)
    {
        if(text.isEmpty())
            return;
    
        int index = -1;
    
        // Do other syntax formatting
        for(const auto &rule : _pythonHighlightingRules)
        {
            index = rule.pattern.indexIn(text, 0);
    
            // We actually want the index of the nth match
            while(index >= 0)
            {
                index = rule.pattern.pos(rule.matchIndex);
                int length = rule.pattern.cap(rule.matchIndex).length();
                if(length > 0)
                {
                    setFormat(index, length, rule.format);
                    index = rule.pattern.indexIn(text, index + length);
                }
            }
        }
    
        setCurrentBlockState(0);
    
        // Do multi-line strings
        bool in_multiline = matchMultiLine(text, _triSingle);
        if(!in_multiline)
            in_multiline = matchMultiLine(text, _triDouble);
    }
    
    // Return a QTextCharFormat with the given attributes.
    QTextCharFormat PythonHighlighter::format(const QString &colorName, const QString &style)
    {
        QColor color;
        color.setNamedColor(colorName);
    
        QTextCharFormat format;
        format.setForeground(color);
    
        if(style.contains("bold"))
            format.setFontWeight(QFont::Bold);
        if(style.contains("italic"))
            format.setFontItalic(true);
    
        return format;
    }
    
    /*Do highlighting of multi-line strings. ``delimiter`` should be a
    ``QRegExp`` for triple-single-quotes or triple-double-quotes, and
    ``in_state`` should be a unique integer to represent the corresponding
    state changes when inside those strings. Returns True if we're still
    inside a multi-line string when this function is finished.
    */
    bool PythonHighlighter::matchMultiLine(const QString &text, const HighlightingRule &rule)
    {
        int start, add, end, length;
    
        // If inside triple-single quotes, start at 0
        if(previousBlockState() == rule.matchIndex)
        {
            start = 0;
            add = 0;
        }
        // Otherwise, look for the delimiter on this line
        else
        {
            start = rule.pattern.indexIn(text);
            // Move past this match
            add = rule.pattern.matchedLength();
        }
    
        // As long as there's a delimiter match on this line...
        while(start >= 0)
        {
            // Look for the ending delimiter
            end = rule.pattern.indexIn(text, start + add);
            // Ending delimiter on this line?
            if(end >= add)
            {
                length = end - start + add + rule.pattern.matchedLength();
                setCurrentBlockState(0);
            }
            // No; multi-line string
            else
            {
                setCurrentBlockState(rule.matchIndex);
                length = text.length() - start + add;
            }
    
            // Apply formatting
            setFormat(start, length, rule.format);
    
            // Look for the next match
            start = rule.pattern.indexIn(text, start + length);
        }
    
        // Return True if still inside a multi-line string, False otherwise
        if(currentBlockState() == rule.matchIndex)
            return true;
        else
            return false;
    }
    
    1 Reply Last reply
    2
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Thanks for sharing !

      One small thing though, please port it to QRegularExpression as QRegExp should be considered deprecated.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      1
      • J Offline
        J Offline
        JeroenDierckx
        wrote on last edited by
        #3

        Hi,

        I will update when I get the chance, but are busy trying to meet other deadlines now.
        I needed this quickly for a demo so I ported the code as verbatim as possible.

        Kind regards,
        Jeroen

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          Sure thing, no pressure.

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • E Offline
            E Offline
            Eugene Zelenko
            wrote on last edited by
            #5

            Thank you for port!

            What is license for it?

            1 Reply Last reply
            0
            • J Offline
              J Offline
              JeroenDierckx
              wrote on last edited by
              #6

              The license is "don't make money off this without giving back to the community" ;-)

              1 Reply Last reply
              1

              • Login

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • Users
              • Groups
              • Search
              • Get Qt Extensions
              • Unsolved