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
88e1bde3
Commit
88e1bde3
authored
7 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Word 'Default' removed from instrument names.
parent
227e02f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/coregui/Models/ApplicationModels.cpp
+1
-1
1 addition, 1 deletion
GUI/coregui/Models/ApplicationModels.cpp
GUI/coregui/Views/InstrumentWidgets/InstrumentViewActions.cpp
+10
-6
10 additions, 6 deletions
...coregui/Views/InstrumentWidgets/InstrumentViewActions.cpp
with
11 additions
and
7 deletions
GUI/coregui/Models/ApplicationModels.cpp
+
1
−
1
View file @
88e1bde3
...
@@ -100,7 +100,7 @@ void ApplicationModels::resetModels()
...
@@ -100,7 +100,7 @@ void ApplicationModels::resetModels()
m_instrumentModel
->
clear
();
m_instrumentModel
->
clear
();
SessionItem
*
instrument
=
m_instrumentModel
->
insertNewItem
(
Constants
::
GISASInstrumentType
);
SessionItem
*
instrument
=
m_instrumentModel
->
insertNewItem
(
Constants
::
GISASInstrumentType
);
instrument
->
setItemName
(
"
Default
GISAS"
);
instrument
->
setItemName
(
"GISAS"
);
}
}
//! creates and initializes models, order is important
//! creates and initializes models, order is important
...
...
This diff is collapsed.
Click to expand it.
GUI/coregui/Views/InstrumentWidgets/InstrumentViewActions.cpp
+
10
−
6
View file @
88e1bde3
...
@@ -77,13 +77,13 @@ void InstrumentViewActions::onAddInstrument()
...
@@ -77,13 +77,13 @@ void InstrumentViewActions::onAddInstrument()
if
(
instrumentType
==
Constants
::
GISASInstrumentType
)
{
if
(
instrumentType
==
Constants
::
GISASInstrumentType
)
{
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
instrument
->
setItemName
(
suggestInstrumentName
(
"
Default
GISAS"
));
instrument
->
setItemName
(
suggestInstrumentName
(
"GISAS"
));
}
else
if
(
instrumentType
==
Constants
::
OffSpecInstrumentType
)
{
}
else
if
(
instrumentType
==
Constants
::
OffSpecInstrumentType
)
{
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
instrument
->
setItemName
(
suggestInstrumentName
(
"
Default
OffSpec"
));
instrument
->
setItemName
(
suggestInstrumentName
(
"OffSpec"
));
}
else
if
(
instrumentType
==
Constants
::
SpecularInstrumentType
)
{
}
else
if
(
instrumentType
==
Constants
::
SpecularInstrumentType
)
{
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
auto
instrument
=
m_model
->
insertNewItem
(
instrumentType
);
instrument
->
setItemName
(
suggestInstrumentName
(
"
Default
Specular"
));
instrument
->
setItemName
(
suggestInstrumentName
(
"Specular"
));
}
else
{
}
else
{
qInfo
()
<<
"InstrumentViewActions::onAddInstrument() -> Not supported instrument type"
qInfo
()
<<
"InstrumentViewActions::onAddInstrument() -> Not supported instrument type"
<<
instrumentType
;
<<
instrumentType
;
...
@@ -188,17 +188,21 @@ QMap<QString, int> InstrumentViewActions::mapOfNames()
...
@@ -188,17 +188,21 @@ QMap<QString, int> InstrumentViewActions::mapOfNames()
void
InstrumentViewActions
::
initAddInstrumentMenu
()
void
InstrumentViewActions
::
initAddInstrumentMenu
()
{
{
m_addInstrumentMenu
=
new
QMenu
(
"Add new instrument"
);
m_addInstrumentMenu
=
new
QMenu
(
"Add new instrument"
);
m_addInstrumentMenu
->
setToolTipsVisible
(
true
);
auto
action
=
m_addInstrumentMenu
->
addAction
(
"
Default
GISAS"
);
auto
action
=
m_addInstrumentMenu
->
addAction
(
"GISAS"
);
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
GISASInstrumentType
));
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
GISASInstrumentType
));
action
->
setToolTip
(
"Add GISAS instrument with default settings"
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
m_addInstrumentMenu
->
setDefaultAction
(
action
);
m_addInstrumentMenu
->
setDefaultAction
(
action
);
action
=
m_addInstrumentMenu
->
addAction
(
"
Default
OffSpec"
);
action
=
m_addInstrumentMenu
->
addAction
(
"OffSpec"
);
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
OffSpecInstrumentType
));
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
OffSpecInstrumentType
));
action
->
setToolTip
(
"Add OffSpec instrument with default settings"
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
action
=
m_addInstrumentMenu
->
addAction
(
"
Default
Specular"
);
action
=
m_addInstrumentMenu
->
addAction
(
"Specular"
);
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
SpecularInstrumentType
));
action
->
setData
(
QVariant
::
fromValue
(
Constants
::
SpecularInstrumentType
));
action
->
setToolTip
(
"Add Specular instrument with default settings"
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
connect
(
action
,
&
QAction
::
triggered
,
this
,
&
InstrumentViewActions
::
onAddInstrument
);
}
}
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