在我的主线程中考虑这个SLOT
,由一个按钮触发,该按钮从QTreeWidgetItem
获取QTreeWidget
列表。它使用QtConcurrent::map()
调用来执行长任务。 watcher
连接到QProgressDialog
以显示进度。
void Main::on_actionButton_triggered() {
qRegisterMetaType<QVector<int> >("QVector<int>");
//Setting up a progress dialog
QProgressDialog progressDialog;
//Holds the list
QList<QTreeWidgetItem*> list;
//Setup watcher
QFutureWatcher<void> watcher;
//Setting up connections
//Progress dialog
connect(&watcher, SIGNAL(progressValueChanged(int)), &progressDialog, SLOT(setValue(int)));
connect(&watcher, SIGNAL(progressRangeChanged(int, int)), &progressDialog, SLOT(setRange(int,int)));
connect(&watcher, SIGNAL(progressValueChanged(int)), ui->progressBar, SLOT(setValue(int)));
connect(&watcher, SIGNAL(progressRangeChanged(int, int)), ui->progressBar, SLOT(setRange(int,int)));
connect(&watcher, SIGNAL(finished()), &progressDialog, SLOT(reset()));
connect(&progressDialog, SIGNAL(canceled()), &watcher, SLOT(cancel()));
connect(&watcher, SIGNAL(started()), this, SLOT(processStarted()));
connect(&watcher, SIGNAL(finished()), this, SLOT(processFinished()));
//Gets the list filled
for (int i = 0; i < ui->listTreeWidget->topLevelItemCount(); i++) {
list.append(ui->listTreeWidget->topLevelItem(i));
}
//And start
watcher.setFuture(QtConcurrent::map(list, processRoutine));
//Show the dialog
progressDialog.exec();
}
extern void processRoutine(QTreeWidgetItem* item) {
qDebug() << item->text(4);
}
我还在UI(包含所有以前的小部件)中添加了一个具有相同SIGNALS / SLOTS的QProgressBar
。保持像以前一样的代码按预期工作:进度对话框显示,进度条与对话框完全一致。
相反,如果我评论
//progressDialog.exec();
或者我以某种方式隐藏对话框,进程崩溃(并非总是如此,有时它会顺利)。看qDebug() << item->text(4);
它崩溃,输出显示随机混合文本(它们应该是文件名)。此外,即使计算没有崩溃,当QProgressDialog
未显示时,进度条也不会自动更新。
注意:我之前在另一个函数中遇到过类似的问题,我通过设置
来解决它QThreadPool::globalInstance()->setMaxThreadCount(1);
仅在Windows上,OSX还可以。
那么,QProgressDialog
背后的诀窍是什么让所有事情都正确?有没有办法可以使用QProgressBar
代替QProgressDialog
?
注意
这是流程完成时没有麻烦的输出:
"C:/Users/Utente/Pictures/Originals/unsplash_52cee67a5c618_1.jpg"
"C:/Users/Utente/Pictures/Originals/photo-1428278953961-a8bc45e05f72.jpg"
"C:/Users/Utente/Pictures/Originals/photo-1429152937938-07b5f2828cdd.jpg"
"C:/Users/Utente/Pictures/Originals/photo-1429277158984-614d155e0017.jpg"
"C:/Users/Utente/Pictures/Originals/photo-1430598825529-927d770c194f.jpg"
"C:/Users/Utente/Pictures/Originals/photo-1433838552652-f9a46b332c40.jpg"
答案 0 :(得分:1)
当您评论progressDialog.exec();
时
你的on_actionButton_triggered()
函数完成后会破坏progressDialog
,因此你的信号正在使用无处指针。
在执行所有映射之前或之后,watcher
也被销毁,并且它不会停止线程,因此它们也无处可用。