fix syntaxhihtlight

This commit is contained in:
Krasilnikov Sergei 2023-01-17 14:09:18 +03:00
parent 05177da97b
commit 1b7a8b4cf0
3 changed files with 4 additions and 9 deletions

View File

@ -61,7 +61,7 @@ VerilogA_File_Info::VerilogA_File_Info (QString File, bool isfile)
File.remove(i, j-i+2);
}
QRegularExpression Expr,Expr1;
QRegularExpression Expr;//,Expr1;
//Expr.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
//Expr1.setPatternOptions(Qt::CaseSensitive);
k--;

View File

@ -180,11 +180,8 @@ void CustomSimDialog::slotFindOutputs()
QStringList outps;
QStringList strings = edtCode->toPlainText().split('\n');
if (isXyceScr) {
QRegularExpression print_ex("^\\s*\\.print\\s.*");
print_ex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
QRegularExpression file_ex("\\s*file\\s*=\\s*");
file_ex.setPatternOptions(QRegularExpression::CaseInsensitiveOption);
QRegularExpression print_ex("^\\s*\\.print\\s.*", QRegularExpression::CaseInsensitiveOption);
QRegularExpression file_ex("\\s*file\\s*=\\s*", QRegularExpression::CaseInsensitiveOption);
for (const QString& line : strings) {
if (print_ex.match(line).hasMatch()) {
//file_ex.setCaseSensitivity(Qt::CaseInsensitive);

View File

@ -249,11 +249,9 @@ void SyntaxHighlighter::highlightBlock(const QString &text) {
for (const HighlightingRule &rule : highlightingRules) {
QRegularExpression expression(rule.pattern);
QRegularExpressionMatch match = expression.match(text);
//int index = expression.indexIn(text);
while (match.hasMatch()) {
for (const QRegularExpressionMatch &match : expression.globalMatch(text)) {
int length = match.capturedLength();
setFormat(match.capturedStart(), length, rule.format);
//index = expression.indexIn(text, index + length);
}
}
}