Skip to content
Snippets Groups Projects
Commit 24b62e99 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

merge fct updateScene

parent 88a11286
No related branches found
No related tags found
1 merge request!2453simplify graphics scene update, and fix segfault upon opening second file
...@@ -64,7 +64,20 @@ void MaskGraphicsScene::associateItems(Data2DItem* data_item) ...@@ -64,7 +64,20 @@ void MaskGraphicsScene::associateItems(Data2DItem* data_item)
m_masks_qmodel = masks_qmodel; m_masks_qmodel = masks_qmodel;
connect(masks_qmodel->set(), &MasksSet::setChanged, this, &MaskGraphicsScene::updateOverlays); connect(masks_qmodel->set(), &MasksSet::setChanged, this, &MaskGraphicsScene::updateOverlays);
updateScene();
ASSERT(m_data_item);
ASSERT(m_masks);
clear(); // removes and deletes all items from the scene
m_mask2overlay.clear();
m_plot = std::make_unique<ColorMap>();
m_plot->itemToMap(m_data_item);
m_proxy = new MaskGraphicsProxy(this, m_plot.get());
addItem(m_proxy);
updateOverlays();
} }
void MaskGraphicsScene::updateSize(const QSize& newSize) void MaskGraphicsScene::updateSize(const QSize& newSize)
...@@ -235,25 +248,6 @@ void MaskGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEvent* event) ...@@ -235,25 +248,6 @@ void MaskGraphicsScene::contextMenuEvent(QGraphicsSceneContextMenuEvent* event)
// private modifying functions // private modifying functions
// ************************************************************************************************ // ************************************************************************************************
//! Main method to update scene on various changes in the model.
void MaskGraphicsScene::updateScene()
{
ASSERT(m_data_item);
ASSERT(m_masks);
clear();
m_mask2overlay.clear();
m_plot = std::make_unique<ColorMap>();
m_plot->itemToMap(m_data_item);
m_proxy = std::make_unique<MaskGraphicsProxy>(this, m_plot.get());
addItem(m_proxy.get());
updateOverlays();
}
//! Runs through the model and creates corresponding views. //! Runs through the model and creates corresponding views.
void MaskGraphicsScene::updateOverlays() void MaskGraphicsScene::updateOverlays()
......
...@@ -62,7 +62,6 @@ private: ...@@ -62,7 +62,6 @@ private:
void drawForeground(QPainter* painter, const QRectF& rect) override; void drawForeground(QPainter* painter, const QRectF& rect) override;
void contextMenuEvent(QGraphicsSceneContextMenuEvent* event) override; void contextMenuEvent(QGraphicsSceneContextMenuEvent* event) override;
void updateScene();
void updateOverlays(); void updateOverlays();
IOverlay* registerOverlay(OverlayItem* item); IOverlay* registerOverlay(OverlayItem* item);
void removeOverlay(OverlayItem* item); void removeOverlay(OverlayItem* item);
...@@ -87,7 +86,7 @@ private: ...@@ -87,7 +86,7 @@ private:
PolygonOverlay* currentPolygon() const; PolygonOverlay* currentPolygon() const;
std::unique_ptr<ColorMap> m_plot; std::unique_ptr<ColorMap> m_plot;
std::unique_ptr<MaskGraphicsProxy> m_proxy; MaskGraphicsProxy* m_proxy = nullptr;
MasksQModel* m_masks_qmodel = nullptr; MasksQModel* m_masks_qmodel = nullptr;
MasksSet* m_masks = nullptr; MasksSet* m_masks = nullptr;
QMap<const OverlayItem*, IOverlay*> m_mask2overlay; QMap<const OverlayItem*, IOverlay*> m_mask2overlay;
......
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