Skip to content
Snippets Groups Projects
Commit 88e1bde3 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Word 'Default' removed from instrument names.

parent 227e02f7
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
...@@ -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);
} }
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