我在QThread重新实现中做了一些工作。我时不时地向用户询问是/否问题,所以我打算使用QMessageBox :: question()。问题是,我不能从线程中调用它。这不是一个大的,我可以发出一个信号连接到主GUI线程中的一个插槽,它将显示消息框,但我还需要自定义线程来阻止并等待消息框被解除并检索返回值(这里是一个QMessageBox :: StandardButton)。我该如何解决这个问题?
修改: 下面的(伪)代码会起作用吗?
class MyThread
{
public:
MyThread(QObject *parent)
{
connect(this, SIGNAL(inputRequired()), parent, SLOT(popMsgBox()), Qt::QueuedConnection);
}
void MyThread::run()
{
QMutex m;
for (...)
{
if (something)
{
m.lock();
emit inputRequired();
w.wait(&m);
m.unlock();
}
if (MyGui->ans_ == Yes) do_something();
}
}
signals:
void inputRequired();
protected:
QWaitCondition w;
};
void MyGui::popMsgBox()
{
ans_ = QMessageBox::question(this, "Question", "Yes or no?", Yes | No);
MyThread->w->wakeAll();
}
答案 0 :(得分:2)
简单回答 - 使用条件。
答案 1 :(得分:2)
如果您正在处理信号和插槽,您还可以使用Qt::BlockingQueuedConnection连接类型。此连接将一直等到插槽(在另一个线程中)完成执行。但要注意不要陷入僵局。