2022-01-28 15:56:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2022-01-28 15:56:11 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
#include "codeeditor.h"
|
2021-04-03 21:30:50 +02:00
|
|
|
|
2020-04-13 13:44:48 +02:00
|
|
|
#include "codeeditorstyle.h"
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QChar>
|
|
|
|
#include <QColor>
|
2023-12-27 10:36:18 +01:00
|
|
|
#include <QCryptographicHash>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontMetrics>
|
|
|
|
#include <QKeySequence>
|
|
|
|
#include <QLatin1Char>
|
|
|
|
#include <QList>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QPainter>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QRect>
|
|
|
|
#include <QRectF>
|
|
|
|
#include <QRegularExpressionMatchIterator>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QShortcut>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QTextBlock>
|
|
|
|
#include <QTextCursor>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QTextFormat>
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QTextDocument;
|
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
Highlighter::Highlighter(QTextDocument *parent,
|
|
|
|
CodeEditorStyle *widgetStyle) :
|
|
|
|
QSyntaxHighlighter(parent),
|
|
|
|
mWidgetStyle(widgetStyle)
|
2018-02-17 22:24:41 +01:00
|
|
|
{
|
|
|
|
HighlightingRule rule;
|
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mKeywordFormat.setForeground(mWidgetStyle->keywordColor);
|
|
|
|
mKeywordFormat.setFontWeight(mWidgetStyle->keywordWeight);
|
2018-02-17 22:24:41 +01:00
|
|
|
QStringList keywordPatterns;
|
2023-03-02 21:20:56 +01:00
|
|
|
// TODO: use Keywords::getX()
|
2021-05-05 07:35:13 +02:00
|
|
|
keywordPatterns << "alignas"
|
|
|
|
<< "alignof"
|
|
|
|
<< "asm"
|
|
|
|
<< "auto"
|
|
|
|
<< "bool"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "break"
|
|
|
|
<< "case"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "catch"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "char"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "char8_t"
|
|
|
|
<< "char16_t"
|
|
|
|
<< "char32_t"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "class"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "concept"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "const"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "consteval"
|
|
|
|
<< "constexpr"
|
|
|
|
<< "constinit"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "const_cast"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "continue"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "co_await"
|
|
|
|
<< "co_return"
|
|
|
|
<< "co_yield"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "decltype"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "default"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "delete"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "do"
|
|
|
|
<< "double"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "dynamic_cast"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "else"
|
|
|
|
<< "enum"
|
|
|
|
<< "explicit"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "export"
|
|
|
|
<< "extern"
|
|
|
|
<< "false"
|
2022-04-29 18:10:37 +02:00
|
|
|
<< "final"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "float"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "for"
|
|
|
|
<< "friend"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "goto"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "if"
|
2022-04-29 18:10:37 +02:00
|
|
|
<< "import"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "inline"
|
|
|
|
<< "int"
|
|
|
|
<< "long"
|
2022-04-29 18:10:37 +02:00
|
|
|
<< "module"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "mutable"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "namespace"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "new"
|
|
|
|
<< "noexcept"
|
|
|
|
<< "nullptr"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "operator"
|
2022-04-29 18:10:37 +02:00
|
|
|
<< "override"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "private"
|
|
|
|
<< "protected"
|
|
|
|
<< "public"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "reinterpret_cast"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "requires"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "return"
|
|
|
|
<< "short"
|
|
|
|
<< "signed"
|
|
|
|
<< "static"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "static_assert"
|
|
|
|
<< "static_cast"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "struct"
|
|
|
|
<< "switch"
|
|
|
|
<< "template"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "this"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "thread_local"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "throw"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "true"
|
|
|
|
<< "try"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "typedef"
|
2021-05-05 07:35:13 +02:00
|
|
|
<< "typeid"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "typename"
|
|
|
|
<< "union"
|
|
|
|
<< "unsigned"
|
|
|
|
<< "virtual"
|
|
|
|
<< "void"
|
|
|
|
<< "volatile"
|
2022-07-08 12:37:05 +02:00
|
|
|
<< "wchar_t"
|
2018-02-23 22:17:40 +01:00
|
|
|
<< "while";
|
2022-03-21 17:14:26 +01:00
|
|
|
for (const QString &pattern : keywordPatterns) {
|
2018-02-23 22:17:40 +01:00
|
|
|
rule.pattern = QRegularExpression("\\b" + pattern + "\\b");
|
2018-06-18 10:10:11 +02:00
|
|
|
rule.format = mKeywordFormat;
|
2019-06-23 19:04:53 +02:00
|
|
|
rule.ruleRole = RuleRole::Keyword;
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRules.append(rule);
|
2018-02-17 22:24:41 +01:00
|
|
|
}
|
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mClassFormat.setForeground(mWidgetStyle->classColor);
|
|
|
|
mClassFormat.setFontWeight(mWidgetStyle->classWeight);
|
2018-02-17 22:24:41 +01:00
|
|
|
rule.pattern = QRegularExpression("\\bQ[A-Za-z]+\\b");
|
2018-06-18 10:10:11 +02:00
|
|
|
rule.format = mClassFormat;
|
2019-06-23 19:04:53 +02:00
|
|
|
rule.ruleRole = RuleRole::Class;
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRules.append(rule);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mQuotationFormat.setForeground(mWidgetStyle->quoteColor);
|
|
|
|
mQuotationFormat.setFontWeight(mWidgetStyle->quoteWeight);
|
2022-04-29 18:10:37 +02:00
|
|
|
// We use lazy `*?` instead greed `*` quantifier to find the real end of the c-string.
|
2023-10-17 18:32:07 +02:00
|
|
|
// We use negative lookbehind assertion `(?<!\)` to ignore `\"` sequence in the c-string.
|
2022-04-29 18:10:37 +02:00
|
|
|
rule.pattern = QRegularExpression("\".*?(?<!\\\\)\"");
|
2018-06-18 10:10:11 +02:00
|
|
|
rule.format = mQuotationFormat;
|
2019-06-23 19:04:53 +02:00
|
|
|
rule.ruleRole = RuleRole::Quote;
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRules.append(rule);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mSingleLineCommentFormat.setForeground(mWidgetStyle->commentColor);
|
|
|
|
mSingleLineCommentFormat.setFontWeight(mWidgetStyle->commentWeight);
|
2018-02-17 22:24:41 +01:00
|
|
|
rule.pattern = QRegularExpression("//[^\n]*");
|
2018-06-18 10:10:11 +02:00
|
|
|
rule.format = mSingleLineCommentFormat;
|
2019-06-23 19:04:53 +02:00
|
|
|
rule.ruleRole = RuleRole::Comment;
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRules.append(rule);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRulesWithSymbols = mHighlightingRules;
|
2018-02-18 12:06:54 +01:00
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mMultiLineCommentFormat.setForeground(mWidgetStyle->commentColor);
|
|
|
|
mMultiLineCommentFormat.setFontWeight(mWidgetStyle->commentWeight);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
mSymbolFormat.setForeground(mWidgetStyle->symbolFGColor);
|
|
|
|
mSymbolFormat.setBackground(mWidgetStyle->symbolBGColor);
|
|
|
|
mSymbolFormat.setFontWeight(mWidgetStyle->symbolWeight);
|
2018-02-18 12:06:54 +01:00
|
|
|
|
2022-07-08 12:37:05 +02:00
|
|
|
// We use negative lookbehind assertion `(?<!/)`
|
|
|
|
// to ignore case: single line comment and line of asterisk
|
|
|
|
mCommentStartExpression = QRegularExpression("(?<!/)/\\*");
|
2018-06-18 10:10:11 +02:00
|
|
|
mCommentEndExpression = QRegularExpression("\\*/");
|
2018-02-17 22:24:41 +01:00
|
|
|
}
|
|
|
|
|
2018-02-18 12:06:54 +01:00
|
|
|
void Highlighter::setSymbols(const QStringList &symbols)
|
|
|
|
{
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRulesWithSymbols = mHighlightingRules;
|
2022-03-21 17:14:26 +01:00
|
|
|
for (const QString &sym : symbols) {
|
2018-02-18 12:06:54 +01:00
|
|
|
HighlightingRule rule;
|
|
|
|
rule.pattern = QRegularExpression("\\b" + sym + "\\b");
|
2018-06-18 10:10:11 +02:00
|
|
|
rule.format = mSymbolFormat;
|
2019-06-23 19:04:53 +02:00
|
|
|
rule.ruleRole = RuleRole::Symbol;
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlightingRulesWithSymbols.append(rule);
|
2018-02-18 12:06:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 15:29:15 +02:00
|
|
|
void Highlighter::setStyle(const CodeEditorStyle &newStyle)
|
2019-06-23 19:04:53 +02:00
|
|
|
{
|
2019-06-25 15:29:15 +02:00
|
|
|
mKeywordFormat.setForeground(newStyle.keywordColor);
|
|
|
|
mKeywordFormat.setFontWeight(newStyle.keywordWeight);
|
|
|
|
mClassFormat.setForeground(newStyle.classColor);
|
|
|
|
mClassFormat.setFontWeight(newStyle.classWeight);
|
|
|
|
mSingleLineCommentFormat.setForeground(newStyle.commentColor);
|
|
|
|
mSingleLineCommentFormat.setFontWeight(newStyle.commentWeight);
|
|
|
|
mMultiLineCommentFormat.setForeground(newStyle.commentColor);
|
|
|
|
mMultiLineCommentFormat.setFontWeight(newStyle.commentWeight);
|
|
|
|
mQuotationFormat.setForeground(newStyle.quoteColor);
|
|
|
|
mQuotationFormat.setFontWeight(newStyle.quoteWeight);
|
|
|
|
mSymbolFormat.setForeground(newStyle.symbolFGColor);
|
|
|
|
mSymbolFormat.setBackground(newStyle.symbolBGColor);
|
|
|
|
mSymbolFormat.setFontWeight(newStyle.symbolWeight);
|
|
|
|
for (HighlightingRule& rule : mHighlightingRules) {
|
|
|
|
applyFormat(rule);
|
2019-06-23 19:04:53 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 15:29:15 +02:00
|
|
|
for (HighlightingRule& rule : mHighlightingRulesWithSymbols) {
|
|
|
|
applyFormat(rule);
|
2019-06-23 19:04:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
void Highlighter::highlightBlock(const QString &text)
|
|
|
|
{
|
2022-03-21 17:14:26 +01:00
|
|
|
for (const HighlightingRule &rule : mHighlightingRulesWithSymbols) {
|
2018-02-17 22:24:41 +01:00
|
|
|
QRegularExpressionMatchIterator matchIterator = rule.pattern.globalMatch(text);
|
|
|
|
while (matchIterator.hasNext()) {
|
|
|
|
QRegularExpressionMatch match = matchIterator.next();
|
|
|
|
setFormat(match.capturedStart(), match.capturedLength(), rule.format);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrentBlockState(0);
|
|
|
|
|
|
|
|
int startIndex = 0;
|
|
|
|
if (previousBlockState() != 1)
|
2018-06-18 10:10:11 +02:00
|
|
|
startIndex = text.indexOf(mCommentStartExpression);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
|
|
|
while (startIndex >= 0) {
|
2018-06-18 10:10:11 +02:00
|
|
|
QRegularExpressionMatch match = mCommentEndExpression.match(text, startIndex);
|
2022-10-02 07:12:40 +02:00
|
|
|
const int endIndex = match.capturedStart();
|
2018-02-17 22:24:41 +01:00
|
|
|
int commentLength = 0;
|
|
|
|
if (endIndex == -1) {
|
|
|
|
setCurrentBlockState(1);
|
|
|
|
commentLength = text.length() - startIndex;
|
|
|
|
} else {
|
|
|
|
commentLength = endIndex - startIndex
|
|
|
|
+ match.capturedLength();
|
|
|
|
}
|
2018-06-18 10:10:11 +02:00
|
|
|
setFormat(startIndex, commentLength, mMultiLineCommentFormat);
|
|
|
|
startIndex = text.indexOf(mCommentStartExpression, startIndex + commentLength);
|
2018-02-17 22:24:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 15:29:15 +02:00
|
|
|
void Highlighter::applyFormat(HighlightingRule &rule)
|
2018-02-17 22:24:41 +01:00
|
|
|
{
|
2019-06-25 15:29:15 +02:00
|
|
|
switch (rule.ruleRole) {
|
|
|
|
case RuleRole::Keyword:
|
|
|
|
rule.format = mKeywordFormat;
|
|
|
|
break;
|
|
|
|
case RuleRole::Class:
|
|
|
|
rule.format = mClassFormat;
|
|
|
|
break;
|
|
|
|
case RuleRole::Comment:
|
|
|
|
rule.format = mSingleLineCommentFormat;
|
|
|
|
break;
|
|
|
|
case RuleRole::Quote:
|
|
|
|
rule.format = mQuotationFormat;
|
|
|
|
break;
|
|
|
|
case RuleRole::Symbol:
|
|
|
|
rule.format = mSymbolFormat;
|
|
|
|
break;
|
2019-06-23 19:04:53 +02:00
|
|
|
}
|
|
|
|
}
|
2019-06-08 07:23:48 +02:00
|
|
|
|
2019-06-23 19:04:53 +02:00
|
|
|
CodeEditor::CodeEditor(QWidget *parent) :
|
|
|
|
QPlainTextEdit(parent),
|
2019-06-25 15:29:15 +02:00
|
|
|
mWidgetStyle(new CodeEditorStyle(defaultStyleLight))
|
2019-06-23 19:04:53 +02:00
|
|
|
{
|
2018-06-18 10:10:11 +02:00
|
|
|
mLineNumberArea = new LineNumberArea(this);
|
2019-06-25 15:29:15 +02:00
|
|
|
mHighlighter = new Highlighter(document(), mWidgetStyle);
|
2018-02-17 22:24:41 +01:00
|
|
|
mErrorPosition = -1;
|
|
|
|
|
2019-06-25 15:29:15 +02:00
|
|
|
QFont font("Monospace");
|
|
|
|
font.setStyleHint(QFont::TypeWriter);
|
|
|
|
setFont(font);
|
2019-06-25 20:22:02 +02:00
|
|
|
mLineNumberArea->setFont(font);
|
2019-06-23 19:04:53 +02:00
|
|
|
|
2019-06-08 07:23:48 +02:00
|
|
|
// set widget coloring by overriding widget style sheet
|
|
|
|
setObjectName("CodeEditor");
|
2019-06-25 15:29:15 +02:00
|
|
|
setStyleSheet(generateStyleString());
|
2018-02-18 12:06:54 +01:00
|
|
|
|
2022-04-15 18:49:24 +02:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
2024-01-05 13:22:37 +01:00
|
|
|
auto *copyText = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_C),this);
|
|
|
|
auto *allText = new QShortcut(QKeySequence(Qt::CTRL | Qt::Key_A),this);
|
2022-04-15 18:49:24 +02:00
|
|
|
#else
|
2024-01-05 13:22:37 +01:00
|
|
|
const auto *copyText = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_C),this);
|
|
|
|
const auto *allText = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_A),this);
|
2022-04-15 18:49:24 +02:00
|
|
|
#endif
|
2019-06-28 17:17:24 +02:00
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
connect(this, SIGNAL(blockCountChanged(int)), this, SLOT(updateLineNumberAreaWidth(int)));
|
|
|
|
connect(this, SIGNAL(updateRequest(QRect,int)), this, SLOT(updateLineNumberArea(QRect,int)));
|
2019-06-28 17:17:24 +02:00
|
|
|
connect(copyText, SIGNAL(activated()), this, SLOT(copy()));
|
|
|
|
connect(allText, SIGNAL(activated()), this, SLOT(selectAll()));
|
2018-02-17 22:24:41 +01:00
|
|
|
|
|
|
|
updateLineNumberAreaWidth(0);
|
|
|
|
}
|
|
|
|
|
2019-06-23 19:04:53 +02:00
|
|
|
CodeEditor::~CodeEditor()
|
|
|
|
{
|
|
|
|
// NOTE: not a Qt Object - delete manually
|
|
|
|
delete mWidgetStyle;
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
static int getPos(const QString &fileData, int lineNumber)
|
|
|
|
{
|
2018-02-18 12:06:54 +01:00
|
|
|
if (lineNumber <= 1)
|
|
|
|
return 0;
|
2018-02-17 22:24:41 +01:00
|
|
|
for (int pos = 0, line = 1; pos < fileData.size(); ++pos) {
|
|
|
|
if (fileData[pos] != '\n')
|
|
|
|
continue;
|
|
|
|
++line;
|
2018-02-18 12:06:54 +01:00
|
|
|
if (line >= lineNumber)
|
2018-02-17 22:24:41 +01:00
|
|
|
return pos + 1;
|
|
|
|
}
|
|
|
|
return fileData.size();
|
|
|
|
}
|
|
|
|
|
2019-06-23 19:04:53 +02:00
|
|
|
void CodeEditor::setStyle(const CodeEditorStyle& newStyle)
|
|
|
|
{
|
|
|
|
*mWidgetStyle = newStyle;
|
|
|
|
// apply new styling
|
2019-06-25 15:29:15 +02:00
|
|
|
setStyleSheet(generateStyleString());
|
|
|
|
mHighlighter->setStyle(newStyle);
|
2019-06-23 19:04:53 +02:00
|
|
|
mHighlighter->rehighlight();
|
|
|
|
highlightErrorLine();
|
|
|
|
}
|
|
|
|
|
2018-02-18 12:06:54 +01:00
|
|
|
void CodeEditor::setError(const QString &code, int errorLine, const QStringList &symbols)
|
2018-02-17 22:24:41 +01:00
|
|
|
{
|
2018-06-18 10:10:11 +02:00
|
|
|
mHighlighter->setSymbols(symbols);
|
2018-02-18 12:06:54 +01:00
|
|
|
|
|
|
|
setPlainText(code);
|
|
|
|
|
|
|
|
mErrorPosition = getPos(code, errorLine);
|
2018-02-17 22:24:41 +01:00
|
|
|
QTextCursor tc = textCursor();
|
|
|
|
tc.setPosition(mErrorPosition);
|
|
|
|
setTextCursor(tc);
|
|
|
|
centerCursor();
|
2018-02-21 22:49:50 +01:00
|
|
|
|
|
|
|
highlightErrorLine();
|
2018-02-17 22:24:41 +01:00
|
|
|
}
|
|
|
|
|
2020-07-18 18:14:55 +02:00
|
|
|
void CodeEditor::setError(int errorLine, const QStringList &symbols)
|
|
|
|
{
|
|
|
|
mHighlighter->setSymbols(symbols);
|
|
|
|
|
|
|
|
mErrorPosition = getPos(toPlainText(), errorLine);
|
|
|
|
QTextCursor tc = textCursor();
|
|
|
|
tc.setPosition(mErrorPosition);
|
|
|
|
setTextCursor(tc);
|
|
|
|
centerCursor();
|
|
|
|
|
|
|
|
highlightErrorLine();
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:24:41 +01:00
|
|
|
int CodeEditor::lineNumberAreaWidth()
|
|
|
|
{
|
|
|
|
int digits = 1;
|
|
|
|
int max = qMax(1, blockCount());
|
|
|
|
while (max >= 10) {
|
|
|
|
max /= 10;
|
|
|
|
++digits;
|
|
|
|
}
|
|
|
|
|
2022-02-01 17:26:16 +01:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0))
|
2022-10-02 07:12:40 +02:00
|
|
|
const int space = 3 + fontMetrics().horizontalAdvance(QLatin1Char('9')) * digits;
|
2022-02-01 17:26:16 +01:00
|
|
|
#else
|
2022-10-02 07:12:40 +02:00
|
|
|
const int space = 3 + fontMetrics().width(QLatin1Char('9')) * digits;
|
2022-02-01 17:26:16 +01:00
|
|
|
#endif
|
2018-02-17 22:24:41 +01:00
|
|
|
return space;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeEditor::updateLineNumberAreaWidth(int /* newBlockCount */)
|
|
|
|
{
|
|
|
|
setViewportMargins(lineNumberAreaWidth(), 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeEditor::updateLineNumberArea(const QRect &rect, int dy)
|
|
|
|
{
|
|
|
|
if (dy)
|
2018-06-18 10:10:11 +02:00
|
|
|
mLineNumberArea->scroll(0, dy);
|
2018-02-17 22:24:41 +01:00
|
|
|
else
|
2018-06-18 10:10:11 +02:00
|
|
|
mLineNumberArea->update(0, rect.y(), mLineNumberArea->width(), rect.height());
|
2018-02-17 22:24:41 +01:00
|
|
|
|
|
|
|
if (rect.contains(viewport()->rect()))
|
|
|
|
updateLineNumberAreaWidth(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CodeEditor::resizeEvent(QResizeEvent *event)
|
|
|
|
{
|
|
|
|
QPlainTextEdit::resizeEvent(event);
|
|
|
|
QRect cr = contentsRect();
|
2018-06-18 10:10:11 +02:00
|
|
|
mLineNumberArea->setGeometry(QRect(cr.left(), cr.top(), lineNumberAreaWidth(), cr.height()));
|
2018-02-17 22:24:41 +01:00
|
|
|
}
|
|
|
|
|
2018-02-21 22:49:50 +01:00
|
|
|
void CodeEditor::highlightErrorLine()
|
2018-02-17 22:24:41 +01:00
|
|
|
{
|
|
|
|
QList<QTextEdit::ExtraSelection> extraSelections;
|
|
|
|
|
|
|
|
QTextEdit::ExtraSelection selection;
|
|
|
|
|
2019-06-08 07:24:38 +02:00
|
|
|
selection.format.setBackground(mWidgetStyle->highlightBGColor);
|
2018-02-17 22:24:41 +01:00
|
|
|
selection.format.setProperty(QTextFormat::FullWidthSelection, true);
|
2018-02-21 22:49:50 +01:00
|
|
|
selection.cursor = QTextCursor(document());
|
2019-06-25 15:29:15 +02:00
|
|
|
if (mErrorPosition >= 0) {
|
2019-06-23 19:04:53 +02:00
|
|
|
selection.cursor.setPosition(mErrorPosition);
|
|
|
|
} else {
|
|
|
|
selection.cursor.setPosition(0);
|
|
|
|
}
|
2018-02-17 22:24:41 +01:00
|
|
|
selection.cursor.clearSelection();
|
|
|
|
extraSelections.append(selection);
|
|
|
|
|
|
|
|
setExtraSelections(extraSelections);
|
|
|
|
}
|
|
|
|
|
2023-11-20 07:23:45 +01:00
|
|
|
void CodeEditor::lineNumberAreaPaintEvent(const QPaintEvent *event)
|
2018-02-17 22:24:41 +01:00
|
|
|
{
|
2018-06-18 10:10:11 +02:00
|
|
|
QPainter painter(mLineNumberArea);
|
2019-06-08 07:24:38 +02:00
|
|
|
painter.fillRect(event->rect(), mWidgetStyle->lineNumBGColor);
|
2018-02-17 22:24:41 +01:00
|
|
|
|
|
|
|
QTextBlock block = firstVisibleBlock();
|
|
|
|
int blockNumber = block.blockNumber();
|
|
|
|
int top = (int) blockBoundingGeometry(block).translated(contentOffset()).top();
|
|
|
|
int bottom = top + (int) blockBoundingRect(block).height();
|
|
|
|
|
|
|
|
while (block.isValid() && top <= event->rect().bottom()) {
|
|
|
|
if (block.isVisible() && bottom >= event->rect().top()) {
|
|
|
|
QString number = QString::number(blockNumber + 1);
|
2019-06-08 07:24:38 +02:00
|
|
|
painter.setPen(mWidgetStyle->lineNumFGColor);
|
2018-06-18 10:10:11 +02:00
|
|
|
painter.drawText(0, top, mLineNumberArea->width(), fontMetrics().height(),
|
2018-02-17 22:24:41 +01:00
|
|
|
Qt::AlignRight, number);
|
|
|
|
}
|
|
|
|
|
|
|
|
block = block.next();
|
|
|
|
top = bottom;
|
|
|
|
bottom = top + (int) blockBoundingRect(block).height();
|
|
|
|
++blockNumber;
|
|
|
|
}
|
|
|
|
}
|
2019-06-23 19:04:53 +02:00
|
|
|
|
|
|
|
QString CodeEditor::generateStyleString()
|
|
|
|
{
|
|
|
|
QString bgcolor = QString("background:rgb(%1,%2,%3);")
|
2023-12-27 10:36:18 +01:00
|
|
|
.arg(mWidgetStyle->widgetBGColor.red(),
|
|
|
|
mWidgetStyle->widgetBGColor.green(),
|
|
|
|
mWidgetStyle->widgetBGColor.blue());
|
2019-06-23 19:04:53 +02:00
|
|
|
QString fgcolor = QString("color:rgb(%1,%2,%3);")
|
2023-12-27 10:36:18 +01:00
|
|
|
.arg(mWidgetStyle->widgetFGColor.red(),
|
|
|
|
mWidgetStyle->widgetFGColor.green(),
|
|
|
|
mWidgetStyle->widgetFGColor.blue());
|
2019-06-23 19:04:53 +02:00
|
|
|
QString style = QString("%1 %2")
|
2023-12-27 10:36:18 +01:00
|
|
|
.arg(bgcolor, fgcolor);
|
2019-06-23 19:04:53 +02:00
|
|
|
return style;
|
|
|
|
}
|