更改QTextBrowser中的最后一行

时间:2014-12-29 13:19:45

标签: c++ qt qtgui qtextbrowser qtextcursor

我有QTextBrowser,显示QStringInt行。消息看起来像这样:

  

向计数器1发送消息

     

向计数器2发送消息

     

向计数器3发送消息

     

消息b计数器1

我希望只增加最后一条消息中的Int(最后一行),而不是总是为计数器的每个增量添加一个新行。最有效的方法是什么?

我想出了这段代码,只删除QTextBrowser中的最后一行:

ui->outputText->append(messageA + QString::number(counter));
ui->outputText->moveCursor( QTextCursor::End, QTextCursor::MoveAnchor );
ui->outputText->moveCursor( QTextCursor::StartOfLine, QTextCursor::MoveAnchor );
ui->outputText->moveCursor( QTextCursor::End, QTextCursor::KeepAnchor );
ui->outputText->textCursor().removeSelectedText();
ui->outputText->append(messageA + QString::number(++counter));

不幸的是,在删除看起来非常难看的最后一行之后,这给我留下了空行。实现此目的的最佳方法是什么,不涉及清除整个QTextBroswer并再次附加每一行。

1 个答案:

答案 0 :(得分:5)

这是我的解决方案,但请注意,它至少需要C ++ 11和Qt 5.4来构建和运行。但是,您可以在不使用QTimer要求上述版本的情况下复制和粘贴的概念:

的main.cpp

#include <QApplication>
#include <QTextBrowser>
#include <QTextCursor>
#include <QTimer>

int main(int argc, char **argv)
{
    QApplication application(argc, argv);
    int count = 1;
    QString string = QStringLiteral("Message a counter %1");
    QTextBrowser *textBrowser = new QTextBrowser();
    textBrowser->setText(string.arg(count));
    QTimer::singleShot(2000, [textBrowser, string, &count](){
        QTextCursor storeCursorPos = textBrowser->textCursor();
        textBrowser->moveCursor(QTextCursor::End, QTextCursor::MoveAnchor);
        textBrowser->moveCursor(QTextCursor::StartOfLine, QTextCursor::MoveAnchor);
        textBrowser->moveCursor(QTextCursor::End, QTextCursor::KeepAnchor);
        textBrowser->textCursor().removeSelectedText();
        textBrowser->textCursor().deletePreviousChar();
        textBrowser->setTextCursor(storeCursorPos);
        textBrowser->append(string.arg(++count));
    });
    textBrowser->show();
    return application.exec();
}

main.pro

TEMPLATE = app
TARGET = main
QT += widgets
CONFIG += c++11
SOURCES += main.cpp

构建并运行

qmake && make && ./main