| 2203 | } |
| 2204 | |
| 2205 | void TOPPASScene::connectVertexSignals(TOPPASVertex* tv) |
| 2206 | { |
| 2207 | connect(tv, SIGNAL(clicked()), this, SLOT(itemClicked())); |
| 2208 | connect(tv, SIGNAL(released()), this, SLOT(itemReleased())); |
| 2209 | connect(tv, SIGNAL(hoveringEdgePosChanged(const QPointF &)), this, SLOT(updateHoveringEdgePos(const QPointF &))); |
| 2210 | connect(tv, SIGNAL(newHoveringEdge(const QPointF &)), this, SLOT(addHoveringEdge(const QPointF &))); |
| 2211 | connect(tv, SIGNAL(finishHoveringEdge()), this, SLOT(finishHoveringEdge())); |
| 2212 | connect(tv, SIGNAL(itemDragged(qreal, qreal)), this, SLOT(moveSelectedItems(qreal, qreal))); |
| 2213 | connect(tv, SIGNAL(parameterChanged(const bool)), this, SLOT(changedParameter(const bool))); |
| 2214 | } |
| 2215 | |
| 2216 | void TOPPASScene::connectToolVertexSignals(TOPPASToolVertex* ttv) |
| 2217 | { |