triage: set error line properly

This commit is contained in:
Daniel Marjamäki 2018-09-01 06:39:22 +02:00
parent f388c77042
commit 59731d70e8
2 changed files with 7 additions and 13 deletions

View File

@ -55,6 +55,12 @@ public:
void lineNumberAreaPaintEvent(QPaintEvent *event);
int lineNumberAreaWidth();
/**
* Set source code to show, goto error line and highlight that line.
* \param code The source code.
* \param errorLine line number
* \param symbols the related symbols, these are marked
*/
void setError(const QString &code, int errorLine, const QStringList &symbols);
protected:

View File

@ -134,17 +134,5 @@ void MainWindow::showResult(QListWidgetItem *item)
f.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream textStream(&f);
const QString fileData = textStream.readAll();
ui->code->setPlainText(fileData);
for (int pos = 0, line = 1; pos < fileData.size(); ++pos) {
if (fileData[pos] == '\n') {
++line;
if (line == lineNumber) {
QTextCursor textCursor = ui->code->textCursor();
textCursor.setPosition(pos+1);
ui->code->setTextCursor(textCursor);
ui->code->centerCursor();
break;
}
}
}
ui->code->setError(fileData, lineNumber, QStringList());
}