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
7ad98e22
"README.md" did not exist on "4cfc28ed6fcaada66440393d27376021db3c9e08"
Commit
7ad98e22
authored
7 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Rearranged parentship in ProjectionEditorActions
parent
ef915b93
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/ProjectionsEditorActions.cpp
+6
-7
6 additions, 7 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditorActions.cpp
GUI/coregui/Views/JobWidgets/ProjectionsEditorActions.h
+2
-2
2 additions, 2 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditorActions.h
with
8 additions
and
9 deletions
GUI/coregui/Views/JobWidgets/ProjectionsEditorActions.cpp
+
6
−
7
View file @
7ad98e22
...
@@ -24,27 +24,26 @@ ProjectionsEditorActions::ProjectionsEditorActions(QWidget* parent)
...
@@ -24,27 +24,26 @@ ProjectionsEditorActions::ProjectionsEditorActions(QWidget* parent)
:
QObject
(
parent
)
:
QObject
(
parent
)
,
m_resetViewAction
(
new
QAction
(
this
))
,
m_resetViewAction
(
new
QAction
(
this
))
,
m_togglePanelAction
(
new
QAction
(
this
))
,
m_togglePanelAction
(
new
QAction
(
this
))
,
m_deleteAction
(
new
QAction
(
"Remove selected"
,
this
))
,
m_model
(
nullptr
)
,
m_model
(
nullptr
)
,
m_selectionModel
(
nullptr
)
,
m_selectionModel
(
nullptr
)
{
{
// Actions for top toolbar
// Actions for top toolbar
m_resetViewAction
=
new
QAction
(
this
);
m_resetViewAction
->
setText
(
"Reset"
);
m_resetViewAction
->
setText
(
"Reset"
);
m_resetViewAction
->
setIcon
(
QIcon
(
":/images/toolbar16light_refresh.svg"
));
m_resetViewAction
->
setIcon
(
QIcon
(
":/images/toolbar16light_refresh.svg"
));
m_resetViewAction
->
setToolTip
(
"Reset View"
);
m_resetViewAction
->
setToolTip
(
"Reset View"
);
connect
(
m_resetViewAction
,
SIGNAL
(
triggered
()),
this
,
SIGNAL
(
resetViewRequest
()));
connect
(
m_resetViewAction
,
&
QAction
::
triggered
,
this
,
&
ProjectionsEditorActions
::
resetViewRequest
);
m_togglePanelAction
=
new
QAction
(
this
);
m_togglePanelAction
->
setText
(
"Properties"
);
m_togglePanelAction
->
setText
(
"Properties"
);
m_togglePanelAction
->
setIcon
(
QIcon
(
":/images/toolbar16light_propertypanel.svg"
));
m_togglePanelAction
->
setIcon
(
QIcon
(
":/images/toolbar16light_propertypanel.svg"
));
m_togglePanelAction
->
setToolTip
(
"Toggle Property Panel"
);
m_togglePanelAction
->
setToolTip
(
"Toggle Property Panel"
);
connect
(
m_togglePanelAction
,
SIGNAL
(
triggered
()),
this
,
SIGNAL
(
propertyPanelRequest
()));
connect
(
m_togglePanelAction
,
&
QAction
::
triggered
,
this
,
&
ProjectionsEditorActions
::
propertyPanelRequest
);
m_deleteAction
=
new
QAction
(
QStringLiteral
(
"Remove selected"
),
parent
);
m_deleteAction
->
setToolTip
(
"Remove selected (Del)"
);
m_deleteAction
->
setToolTip
(
"Remove selected (Del)"
);
m_deleteAction
->
setShortcuts
(
QKeySequence
::
Delete
);
m_deleteAction
->
setShortcuts
(
QKeySequence
::
Delete
);
parent
->
addAction
(
m_deleteAction
);
connect
(
m_deleteAction
,
&
QAction
::
triggered
,
this
,
&
ProjectionsEditorActions
::
onDeleteAction
);
connect
(
m_deleteAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
onDeleteAction
()));
}
}
void
ProjectionsEditorActions
::
setModel
(
SessionModel
*
maskModel
,
const
QModelIndex
&
rootIndex
)
void
ProjectionsEditorActions
::
setModel
(
SessionModel
*
maskModel
,
const
QModelIndex
&
rootIndex
)
...
...
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/JobWidgets/ProjectionsEditorActions.h
+
2
−
2
View file @
7ad98e22
...
@@ -51,9 +51,9 @@ private:
...
@@ -51,9 +51,9 @@ private:
QAction
*
m_resetViewAction
;
QAction
*
m_resetViewAction
;
QAction
*
m_togglePanelAction
;
QAction
*
m_togglePanelAction
;
QAction
*
m_deleteAction
;
QAction
*
m_deleteAction
;
SessionModel
*
m_model
;
SessionModel
*
m_model
;
QModelIndex
m_rootIndex
;
//! Index in the model corresponding to IntensityDataItem
QModelIndex
m_rootIndex
;
//! Index in the model corresponding to IntensityDataItem
QItemSelectionModel
*
m_selectionModel
;
QItemSelectionModel
*
m_selectionModel
;
};
};
#endif // PROJECTIONSEDITORACTIONS_H
#endif // PROJECTIONSEDITORACTIONS_H
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