Skip to content
Snippets Groups Projects
Commit 8a6c2859 authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

[m.0] Update projection plots on selection/moving projection (#1044) ()

Merging branch 'm.0'  into 'main'.

See merge request !2783
parents 9499d9a5 ab74cd22
No related branches found
No related tags found
1 merge request!2783Update projection plots on selection/moving projection (#1044)
Pipeline #177889 passed
...@@ -27,7 +27,7 @@ public: ...@@ -27,7 +27,7 @@ public:
virtual ~OverlayItem(); virtual ~OverlayItem();
signals: signals:
void maskGeometryChanged(); void maskGeometryChanged() const;
void maskVisibilityChanged(); void maskVisibilityChanged();
void maskToBeDestroyed(); void maskToBeDestroyed();
}; };
......
...@@ -87,11 +87,11 @@ MaskEditorCanvas::MaskEditorCanvas() ...@@ -87,11 +87,11 @@ MaskEditorCanvas::MaskEditorCanvas()
&MaskEditorCanvas::deleteCurrentItem); &MaskEditorCanvas::deleteCurrentItem);
// automatically switch to the appropriate projection tab // automatically switch to the appropriate projection tab
connect(m_scene, &MaskGraphicsScene::lineItemMoved, [this](LineItem* sender) { connect(m_scene, &MaskGraphicsScene::lineItemMoved, [this](const LineItem* sender) {
if (dynamic_cast<HorizontalLineItem*>(sender) if (dynamic_cast<const HorizontalLineItem*>(sender)
&& (m_current_activity != Canvas2DMode::VERTICAL_PRJN)) && (m_current_activity != Canvas2DMode::VERTICAL_PRJN))
emit changeProjectionsTabRequest(Canvas2DMode::HORIZONTAL_PRJN); emit changeProjectionsTabRequest(Canvas2DMode::HORIZONTAL_PRJN);
if (dynamic_cast<VerticalLineItem*>(sender) if (dynamic_cast<const VerticalLineItem*>(sender)
&& (m_current_activity != Canvas2DMode::HORIZONTAL_PRJN)) && (m_current_activity != Canvas2DMode::HORIZONTAL_PRJN))
emit changeProjectionsTabRequest(Canvas2DMode::VERTICAL_PRJN); emit changeProjectionsTabRequest(Canvas2DMode::VERTICAL_PRJN);
}); });
......
...@@ -84,6 +84,7 @@ void HorizontalLineOverlay::onChangedY() ...@@ -84,6 +84,7 @@ void HorizontalLineOverlay::onChangedY()
{ {
setBlockOnProperty(true); setBlockOnProperty(true);
m_item->setPos(y2coo(this->y())); m_item->setPos(y2coo(this->y()));
emit m_item->maskGeometryChanged();
setBlockOnProperty(false); setBlockOnProperty(false);
} }
...@@ -131,6 +132,7 @@ void VerticalLineOverlay::onChangedX() ...@@ -131,6 +132,7 @@ void VerticalLineOverlay::onChangedX()
{ {
setBlockOnProperty(true); setBlockOnProperty(true);
m_item->setPos(x2coo(this->x())); m_item->setPos(x2coo(this->x()));
emit m_item->maskGeometryChanged();
setBlockOnProperty(false); setBlockOnProperty(false);
} }
......
...@@ -374,13 +374,14 @@ IOverlay* MaskGraphicsScene::registerOverlay(OverlayItem* item, bool is_projecti ...@@ -374,13 +374,14 @@ IOverlay* MaskGraphicsScene::registerOverlay(OverlayItem* item, bool is_projecti
if (m_mouse_is_pressed) if (m_mouse_is_pressed)
gDoc->setModified(); // manual mask movement gDoc->setModified(); // manual mask movement
}); });
if (auto* line_item = dynamic_cast<LineItem*>(item)) { if (is_projection)
connect(line_item, &OverlayItem::maskGeometryChanged, [this, line_item] { if (auto* line_item = dynamic_cast<LineItem*>(item)) {
emit lineItemMoved(line_item); // -> update projections plot connect(line_item, &OverlayItem::maskGeometryChanged, [this, line_item] {
}); emit lineItemMoved(line_item); // -> update projections plot
connect(line_item, &OverlayItem::maskToBeDestroyed, });
[this, line_item] { emit lineItemDeleted(line_item); }); connect(line_item, &OverlayItem::maskToBeDestroyed,
} [this, line_item] { emit lineItemDeleted(line_item); });
}
connect(m_plot.get(), &QCustomPlot::afterReplot, overlay, &IOverlay::onGeometryChange); connect(m_plot.get(), &QCustomPlot::afterReplot, overlay, &IOverlay::onGeometryChange);
connect(item, &OverlayItem::maskGeometryChanged, overlay, &IOverlay::onGeometryChange); connect(item, &OverlayItem::maskGeometryChanged, overlay, &IOverlay::onGeometryChange);
if (auto* mask_item = dynamic_cast<MaskItem*>(item)) { if (auto* mask_item = dynamic_cast<MaskItem*>(item)) {
...@@ -523,6 +524,11 @@ void MaskGraphicsScene::onProjSetChanged() ...@@ -523,6 +524,11 @@ void MaskGraphicsScene::onProjSetChanged()
connectOverlaySelection(false); connectOverlaySelection(false);
selectOnlyGivenItem(m_mask2overlay[m_prjns->currentItem()]); selectOnlyGivenItem(m_mask2overlay[m_prjns->currentItem()]);
connectOverlaySelection(true); connectOverlaySelection(true);
// switch projection plot
const auto* line_item = dynamic_cast<const LineItem*>(m_prjns->currentItem());
ASSERT(line_item);
emit lineItemMoved(line_item);
} }
void MaskGraphicsScene::onSceneSelectionChanged() void MaskGraphicsScene::onSceneSelectionChanged()
...@@ -544,6 +550,13 @@ void MaskGraphicsScene::onSceneSelectionChanged() ...@@ -544,6 +550,13 @@ void MaskGraphicsScene::onSceneSelectionChanged()
MasksSet* current_set = modelOfMaskItem(selected_item); MasksSet* current_set = modelOfMaskItem(selected_item);
current_set->setCurrentIndex(current_set->index_of(selected_item)); current_set->setCurrentIndex(current_set->index_of(selected_item));
unselectOtherModelThan(current_set); unselectOtherModelThan(current_set);
// switch projection plot
if (current_set == m_prjns) {
const auto* line_item = dynamic_cast<const LineItem*>(selected_item);
ASSERT(line_item);
emit lineItemMoved(line_item);
}
} }
connectMaskSet(true); connectMaskSet(true);
connectProjSet(true); connectProjSet(true);
......
...@@ -54,7 +54,7 @@ signals: ...@@ -54,7 +54,7 @@ signals:
void mouseSelectionChanged(); void mouseSelectionChanged();
void itemContextMenuRequest(const QPoint& point); void itemContextMenuRequest(const QPoint& point);
void lineItemProcessed(); void lineItemProcessed();
void lineItemMoved(LineItem* sender); void lineItemMoved(const LineItem* sender);
void lineItemDeleted(const LineItem* sender); void lineItemDeleted(const LineItem* sender);
public slots: public slots:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment