我想在按下QT按钮时执行非常耗时的操作但失败了,有人可以帮我解释一下吗?谢谢! 代码是:
bool eventFilter(QObject *target, QEvent *event)
{
if (target == ui.zoominBtn){
if (event->type() == QEvent::MouseButtonPress){
phcs[curPhcId].zoom(0.1);
renderRaytracingImage();
}
}
return QMainWindow::eventFilter(target, event);
}
现在我把耗时的部分移到了QThread:
if (target == ui.zoominBtn){
if (event->type() == QEvent::MouseButtonPress){
//phcs[curPhcId].zoom(0.1);
TracerayThread *traceThread = new TracerayThread(&scene,&(phcs[curPhcId]),this);
connect(traceThread, SIGNAL(resultReady()), this, SLOT(render()));
connect(traceThread, SIGNAL(finished()), traceThread, SLOT(deleteLater()));
traceThread->start();
}
}
我需要传递两个指向新线程的指针,我可以这样做吗?
答案 0 :(得分:0)
您可以使用QPushButton点击信号。
connect(YourButtonName, &QPushButton::clicked, this, &MainWindow::YourSlotName);
无需使用eventFilter。如果你想使用它,请不要忘记installEventFilter