Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
24b62e99
Commit
24b62e99
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
merge fct updateScene
parent
88a11286
No related branches found
No related tags found
1 merge request
!2453
simplify graphics scene update, and fix segfault upon opening second file
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/View/Scene/MaskGraphicsScene.cpp
+14
-20
14 additions, 20 deletions
GUI/View/Scene/MaskGraphicsScene.cpp
GUI/View/Scene/MaskGraphicsScene.h
+1
-2
1 addition, 2 deletions
GUI/View/Scene/MaskGraphicsScene.h
with
15 additions
and
22 deletions
GUI/View/Scene/MaskGraphicsScene.cpp
+
14
−
20
View file @
24b62e99
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.
GUI/View/Scene/MaskGraphicsScene.h
+
1
−
2
View file @
24b62e99
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment