| 1276 | } |
| 1277 | |
| 1278 | void TOPPASBase::toolStarted() |
| 1279 | { |
| 1280 | TOPPASToolVertex* tv = dynamic_cast<TOPPASToolVertex*>(QObject::sender()); |
| 1281 | if (tv) |
| 1282 | { |
| 1283 | String text = tv->getName(); |
| 1284 | String type = tv->getType(); |
| 1285 | if (!type.empty()) |
| 1286 | { |
| 1287 | text += " (" + type + ")"; |
| 1288 | } |
| 1289 | text += " of node #" + String(tv->getTopoNr()) + " started. Processing ..."; |
| 1290 | |
| 1291 | log_->appendNewHeader(LogWindow::LogState::NOTICE, text, ""); |
| 1292 | } |
| 1293 | updateMenu(); |
| 1294 | } |
| 1295 | |
| 1296 | void TOPPASBase::toolFinished() |
| 1297 | { |