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
05e020f7
Commit
05e020f7
authored
7 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Standard code beautification in ProjectionsEditor.
parent
7ad98e22
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/coregui/Views/JobWidgets/ProjectionsEditor.cpp
+12
-16
12 additions, 16 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditor.cpp
GUI/coregui/Views/JobWidgets/ProjectionsEditor.h
+5
-5
5 additions, 5 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditor.h
with
17 additions
and
21 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditor.cpp
+
12
−
16
View file @
05e020f7
...
...
@@ -23,12 +23,8 @@
#include
"minisplitter.h"
#include
"SessionModel.h"
#include
"IntensityDataItem.h"
#include
"MaskEditorFlags.h"
#include
"MaskGraphicsScene.h"
#include
<QItemSelectionModel>
#include
<QSplitter>
#include
<QVBoxLayout>
#include
<QHBoxLayout>
ProjectionsEditor
::
ProjectionsEditor
(
QWidget
*
parent
)
:
QMainWindow
(
parent
)
...
...
@@ -90,32 +86,32 @@ QList<QAction*> ProjectionsEditor::topToolBarActions()
void
ProjectionsEditor
::
setup_connections
()
{
// tool panel request is propagated from editorActions to this MaskEditor
connect
(
m_editorActions
,
SIGNAL
(
resetViewRequest
())
,
m_projectionsCanvas
,
SLOT
(
onResetViewRequest
())
);
connect
(
m_editorActions
,
&
ProjectionsEditorActions
::
resetViewRequest
,
m_projectionsCanvas
,
&
ProjectionsEditorCanvas
::
onResetViewRequest
);
// tool panel request is propagated from editorActions to this MaskEditor
connect
(
m_editorActions
,
&
ProjectionsEditorActions
::
propertyPanelRequest
,
[
=
](){
m_propertyPanel
->
setHidden
(
!
m_propertyPanel
->
isHidden
());});
// selection/drawing activity is propagated from ToolBar to graphics scene
connect
(
m_toolBar
,
SIGNAL
(
activityModeChanged
(
MaskEditorFlags
::
Activity
))
,
m_projectionsCanvas
,
SLOT
(
onActivityModeChanged
(
Mask
Editor
Flag
s
::
Activity
))
);
connect
(
m_toolBar
,
&
ProjectionsToolBar
::
activityModeChanged
,
m_projectionsCanvas
,
&
Projections
Editor
Canva
s
::
on
Activity
ModeChanged
);
// selection/drawing activity is propagated from ToolBar to Projections Widget
connect
(
m_toolBar
,
SIGNAL
(
activityModeChanged
(
MaskEditorFlags
::
Activity
))
,
m_projectionsWidget
,
SLOT
(
onActivityModeChanged
(
MaskEditorFlags
::
Activity
))
);
connect
(
m_toolBar
,
&
ProjectionsToolBar
::
activityModeChanged
,
m_projectionsWidget
,
&
ProjectionsWidget
::
onActivityModeChanged
);
// Delete request is propagated from canvas to actions
connect
(
m_projectionsCanvas
,
SIGNAL
(
deleteSelectedRequest
())
,
m_editorActions
,
SLOT
(
onDeleteAction
())
);
connect
(
m_projectionsCanvas
,
&
ProjectionsEditorCanvas
::
deleteSelectedRequest
,
m_editorActions
,
&
ProjectionsEditorActions
::
onDeleteAction
);
// space bar push (request for zoom mode) is propagated from graphics view to ToolBar
connect
(
m_projectionsCanvas
,
SIGNAL
(
changeActivityRequest
(
MaskEditorFlags
::
Activity
))
,
m_toolBar
,
SLOT
(
onChangeActivityRequest
(
MaskEditorFlags
::
Activity
))
);
connect
(
m_projectionsCanvas
,
&
ProjectionsEditorCanvas
::
change
Activity
Request
,
m_toolBar
,
&
ProjectionsToolBar
::
onChangeActivityRequest
);
// ColorMap margins changed, canvas -> projection widget
connect
(
m_projectionsCanvas
,
SIGNAL
(
marginsChanged
(
double
,
double
))
,
m_projectionsWidget
,
SLOT
(
onMarginsChanged
(
double
,
double
))
);
connect
(
m_projectionsCanvas
,
&
ProjectionsEditorCanvas
::
marginsChanged
,
m_projectionsWidget
,
&
ProjectionsWidget
::
onMarginsChanged
);
m_toolBar
->
onChangeActivityRequest
(
MaskEditorFlags
::
HORIZONTAL_LINE_MODE
);
}
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/JobWidgets/ProjectionsEditor.h
+
5
−
5
View file @
05e020f7
...
...
@@ -40,23 +40,23 @@ class BA_CORE_API_ ProjectionsEditor : public QMainWindow
Q_OBJECT
public:
ProjectionsEditor
(
QWidget
*
parent
=
0
);
ProjectionsEditor
(
QWidget
*
parent
=
nullptr
);
void
setContext
(
SessionModel
*
model
,
const
QModelIndex
&
shapeContainerIndex
,
IntensityDataItem
*
intensityItem
);
void
resetContext
();
QList
<
QAction
*>
topToolBarActions
();
QList
<
QAction
*>
topToolBarActions
();
private:
void
setup_connections
();
ProjectionsEditorActions
*
m_editorActions
;
ProjectionsToolBar
*
m_toolBar
;
//! main tool bar with bottoms at the right
ProjectionsToolBar
*
m_toolBar
;
//! main tool bar with bottoms at the right
ProjectionsEditorCanvas
*
m_projectionsCanvas
;
//! canvas with color map at the top
ProjectionsWidget
*
m_projectionsWidget
;
//! bottom widget to draw projections plot
ProjectionsPropertyPanel
*
m_propertyPanel
;
//! pannel at the right with properties
ProjectionsWidget
*
m_projectionsWidget
;
//! bottom widget to draw projections plot
ProjectionsPropertyPanel
*
m_propertyPanel
;
//! pannel at the right with properties
QItemSelectionModel
*
m_selectionModel
;
Manhattan
::
MiniSplitter
*
m_rightSplitter
;
QSplitter
*
m_bottomSplitter
;
...
...
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