| 2214 | } |
| 2215 | |
| 2216 | void TOPPASScene::connectToolVertexSignals(TOPPASToolVertex* ttv) |
| 2217 | { |
| 2218 | connect(ttv, SIGNAL(toppOutputReady(const QString &)), this, SLOT(logTOPPOutput(const QString &))); |
| 2219 | connect(ttv, SIGNAL(toolStarted()), this, SLOT(logToolStarted())); |
| 2220 | connect(ttv, SIGNAL(toolFinished()), this, SLOT(logToolFinished())); |
| 2221 | connect(ttv, SIGNAL(toolFailed()), this, SLOT(logToolFailed())); |
| 2222 | connect(ttv, SIGNAL(toolCrashed()), this, SLOT(logToolCrashed())); |
| 2223 | |
| 2224 | connect(ttv, SIGNAL(toolFailed(const QString &)), this, SLOT(pipelineErrorSlot(QString))); |
| 2225 | connect(ttv, SIGNAL(toolCrashed()), this, SLOT(pipelineErrorSlot())); |
| 2226 | connect(ttv, SIGNAL(somethingHasChanged()), this, SLOT(abortPipeline())); |
| 2227 | } |
| 2228 | |
| 2229 | void TOPPASScene::connectMergerVertexSignals(TOPPASMergerVertex* tmv) |
| 2230 | { |