在setText()/ insertPlainText()

时间:2019-06-14 23:53:29

标签: qt qt5 qtextedit

我在专用插槽中有一个QTextEdit小部件,我会定期使用setText()和insertPlainText()进行更新。

我发现setText()/ insertPlainText()不会立即更新QTextEdit小部件。相反,当插槽函数返回时,将更新QTextWidget。为了测试这一点,我在setText()/ insertPlainText()之后放置了sleep()。

class MyWindow : public Widget
{
    MyWindow()
    {
        my_button = new QPushButton(this);
        my_edit   = new QTextEdit(this);

        connect(my_button, 
                &QPushButton::clicked, 
                this, 
                &MyWindow::my_callback);
    }

    private slots:

        void my_callback()
        {
            my_edit->setText("sample text");

            // nothing happens; the QTextEdit 
            // widget does not show "sample text"

            sleep(10); 

            // the QTextEdit widget will show
            // "sample text" AFTER the sleep,
            // when my_callback returns.
         }

    private:
        QPushButton* my_button;
        QTextEdit*   my_edit;
}

这对我来说是个问题,因为在启动耗时的过程(使用QProcess)之前,我需要在QTextEdit小部件中打印一条消息。当前,此消息直到QProcess进程返回后才打印。

有人知道我怎样才能让QTextEdit小部件在setText()/ insertPlainText()之后显示其内容吗?

在Fedora 29上使用Qt5。

2 个答案:

答案 0 :(得分:2)

请不要执行在GUI线程中消耗大量时间的任务。通常,解决方案是在另一个线程中执行该任务,但是在您的情况下,它表明您使用的是QProcess,所以我假设您使用的是方法waitForFinished(),waitForStarted()或waitForReadyRead()中的一种,而是应该使用以下信号:

#include <QtWidgets>

class Widget: public QWidget{
    Q_OBJECT
public:
    Widget(QWidget *parent=nullptr):
        QWidget(parent)
    {
        button.setText("Press me");
        QVBoxLayout *lay = new QVBoxLayout{this};
        lay->addWidget(&button);
        lay->addWidget(&textedit);
        connect(&button, &QPushButton::clicked, this, &Widget::onClicked);
        connect(&process, &QProcess::readyReadStandardError, this, &Widget::onReadyReadStandardError);
        connect(&process, &QProcess::readyReadStandardOutput, this, &Widget::onReadAllStandardOutput);
    }
private Q_SLOTS:
    void onClicked(){
        textedit.setText("sample text");
        process.start("ping 8.8.8.8");
    }
    void onReadyReadStandardError(){
        textedit.append(process.readAllStandardError());
    }
    void onReadAllStandardOutput(){
        textedit.append(process.readAllStandardOutput());
    }
private:
    QPushButton button;
    QTextEdit textedit;
    QProcess process;
};

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();
    return a.exec();
}
#include "main.moc"

答案 1 :(得分:0)

我想打电话给

QCoreApplication::processEvents() 

-> setText(“ sample text”)后面的内容可以解决您的问题。