6#include <QSyntaxHighlighter>
37 struct HighlightingRule
40 QTextCharFormat format;
42 QVector<HighlightingRule> highlightingRules;
44 QRegExp commentStartExpression;
45 QRegExp commentEndExpression;
47 QTextCharFormat keywordFormat;
48 QTextCharFormat classFormat;
49 QTextCharFormat singleLineCommentFormat;
50 QTextCharFormat multiLineCommentFormat;
51 QTextCharFormat quotationFormat;
52 QTextCharFormat singleQuotationFormat;
53 QTextCharFormat functionFormat;
Definition: jstextarea.h:27
void highlightBlock(const QString &text) override
Definition: jstextarea.cpp:71
Highlighter(QTextDocument *parent=0)
Definition: jstextarea.cpp:11
Definition: jstextarea.h:10
virtual void keyPressEvent(QKeyEvent *event)
Definition: jstextarea.cpp:122
void executeJS(QString code)
JSTextArea(QWidget *parent=0)
Definition: jstextarea.cpp:107