| 379 | } |
| 380 | |
| 381 | static void |
| 382 | connectProcessSlots(ProgressTaskInfo* task, |
| 383 | ProcessHandler* process) |
| 384 | { |
| 385 | QObject::connect( task, SIGNAL(taskCanceled()), process, SLOT(onProcessCanceled()) ); |
| 386 | QObject::connect( process, SIGNAL(processCanceled()), task, SLOT(onProcessCanceled()) ); |
| 387 | QObject::connect( process, SIGNAL(frameRendered(int,double)), task, SLOT(onRenderEngineFrameComputed(int,double)) ); |
| 388 | QObject::connect( process, SIGNAL(processFinished(int)), task, SLOT(onRenderEngineStopped(int)) ); |
| 389 | } |
| 390 | |
| 391 | void |
| 392 | ProgressPanel::onTaskRestarted(const NodePtr& node, |
no outgoing calls
no test coverage detected