diff --git a/GUI/Model/Mask/OverlayItem.cpp b/GUI/Model/Mask/OverlayItem.cpp index d92a369f23823d33d566752f948051750bf051c7..302d1e01dbd408ba65c732e854781fd08d5d8d6f 100644 --- a/GUI/Model/Mask/OverlayItem.cpp +++ b/GUI/Model/Mask/OverlayItem.cpp @@ -18,5 +18,5 @@ OverlayItem::OverlayItem() = default; OverlayItem::~OverlayItem() { - emit maskToBeDestroyed(this); + emit maskToBeDestroyed(); } diff --git a/GUI/Model/Mask/OverlayItem.h b/GUI/Model/Mask/OverlayItem.h index 8c7a6416b1126cc016e6743290641a8e630cbb8e..086f78f28f2cbc74a19f35c84178bb9f2f2dddc3 100644 --- a/GUI/Model/Mask/OverlayItem.h +++ b/GUI/Model/Mask/OverlayItem.h @@ -17,7 +17,7 @@ #include <QObject> -//! QObject with signals used in masks +//! Something to be shown as overlay in a graphics scene. Base class for point and mask items. class OverlayItem : public QObject { Q_OBJECT @@ -28,7 +28,7 @@ public: signals: void maskGeometryChanged(); void maskVisibilityChanged(); - void maskToBeDestroyed(OverlayItem* sender = nullptr); + void maskToBeDestroyed(); }; #endif // BORNAGAIN_GUI_MODEL_MASK_OVERLAYITEM_H diff --git a/GUI/View/Canvas/ProjectionsEditorCanvas.cpp b/GUI/View/Canvas/ProjectionsEditorCanvas.cpp index 664f8b9cee70e24d876074cf908a41e6907abff4..408ed88416e4f21959822d2ac26af6add17b05bd 100644 --- a/GUI/View/Canvas/ProjectionsEditorCanvas.cpp +++ b/GUI/View/Canvas/ProjectionsEditorCanvas.cpp @@ -46,8 +46,14 @@ ProjectionsEditorCanvas::ProjectionsEditorCanvas() &ProjectionsEditorCanvas::deleteSelectedRequest); // automatically switch to the appropriate projection tab - connect(m_scene, &MaskGraphicsScene::lineItemMoved, this, - &ProjectionsEditorCanvas::onLineItemMoved, Qt::UniqueConnection); + connect(m_scene, &MaskGraphicsScene::lineItemMoved, [this](LineItem* sender) { + if (dynamic_cast<HorizontalLineItem*>(sender) + && (m_currentActivity != MaskFlags::VERTICAL_LINE_MODE)) + emit changeProjectionsTabRequest(MaskFlags::HORIZONTAL_LINE_MODE); + if (dynamic_cast<VerticalLineItem*>(sender) + && (m_currentActivity != MaskFlags::HORIZONTAL_LINE_MODE)) + emit changeProjectionsTabRequest(MaskFlags::VERTICAL_LINE_MODE); + }); } ProjectionsEditorCanvas::~ProjectionsEditorCanvas() = default; @@ -101,7 +107,7 @@ void ProjectionsEditorCanvas::onEnteringColorMap() m_liveProjection->setIsVisible(false); m_liveProjection->setParent(this); - m_data2DItem->projectionPositionChanged(m_liveProjection.get()); + emit m_data2DItem->projectionPositionChanged(m_liveProjection.get()); } m_block_update = false; @@ -154,16 +160,6 @@ void ProjectionsEditorCanvas::setProjectionsCanvasMode(MaskFlags::MaskMode mask_ onLeavingColorMap(); } -void ProjectionsEditorCanvas::onLineItemMoved(LineItem* sender) -{ - if (dynamic_cast<HorizontalLineItem*>(sender) - && (m_currentActivity != MaskFlags::VERTICAL_LINE_MODE)) - emit changeProjectionsTabRequest(MaskFlags::HORIZONTAL_LINE_MODE); - if (dynamic_cast<VerticalLineItem*>(sender) - && (m_currentActivity != MaskFlags::HORIZONTAL_LINE_MODE)) - emit changeProjectionsTabRequest(MaskFlags::VERTICAL_LINE_MODE); -} - void ProjectionsEditorCanvas::setColorMap(ColorMap* colorMap) { ASSERT(colorMap); diff --git a/GUI/View/Canvas/ProjectionsEditorCanvas.h b/GUI/View/Canvas/ProjectionsEditorCanvas.h index 85e1b96cbc1c3eff4f76c4e26a3fc468fca916d1..05eff7bc0312b7e7dfe3380ca18560d0143720e5 100644 --- a/GUI/View/Canvas/ProjectionsEditorCanvas.h +++ b/GUI/View/Canvas/ProjectionsEditorCanvas.h @@ -57,7 +57,6 @@ private slots: void onPositionChanged(double x, double y); private: - void onLineItemMoved(LineItem* sender); void setColorMap(ColorMap* colorMap); void setConnected(bool isConnected); diff --git a/GUI/View/Scene/MaskGraphicsScene.cpp b/GUI/View/Scene/MaskGraphicsScene.cpp index 79fb4d338a6346665c6262d2ab0710a33b58ec63..05421a7a9c2eb74e240c36e72e1b3a9e794c07b2 100644 --- a/GUI/View/Scene/MaskGraphicsScene.cpp +++ b/GUI/View/Scene/MaskGraphicsScene.cpp @@ -436,11 +436,11 @@ IOverlay* MaskGraphicsScene::registerOverlay(OverlayItem* item) gDoc->setModified(); // manual mask movement }); if (auto* line_item = dynamic_cast<LineItem*>(item)) { - connect(line_item, &OverlayItem::maskGeometryChanged, [&] { + connect(line_item, &OverlayItem::maskGeometryChanged, [this, line_item] { emit lineItemMoved(line_item); // -> update projections plot }); connect(line_item, &OverlayItem::maskToBeDestroyed, - [&](OverlayItem*) { emit lineItemDeleted(line_item); }); + [this, line_item] { emit lineItemDeleted(line_item); }); } connect(item, &OverlayItem::maskGeometryChanged, overlay, &IOverlay::onGeometryChange); connect(item, &OverlayItem::maskVisibilityChanged, overlay, &IOverlay::onVisibilityChange); @@ -581,6 +581,7 @@ void MaskGraphicsScene::processLineItem(QGraphicsSceneMouseEvent* event) processVerticalLineItem(click_pos); if (m_mask_mode == MaskFlags::HORIZONTAL_LINE_MODE) processHorizontalLineItem(click_pos); + ASSERT(m_active_mask); emit m_active_mask->maskGeometryChanged(); m_selection_model->clearSelection();