diff --git a/GUI/Model/From/GUIExamplesFactory.cpp b/GUI/Model/From/GUIExamplesFactory.cpp index 6e264ee8e107e0fb29bb395a86b2e75c6b75b47c..ad188135831907ee054a0140b24794ad82a37704 100644 --- a/GUI/Model/From/GUIExamplesFactory.cpp +++ b/GUI/Model/From/GUIExamplesFactory.cpp @@ -2,8 +2,8 @@ // // BornAgain: simulate and fit reflection and scattering // -//! @file GUI/Model/From/GUIExamplesFactory.cpp -//! @brief Implements class GUIExamplesFactory +//! @file GUI/Model/From/GUI::ExamplesFactory.cpp +//! @brief Implements class GUI::ExamplesFactory //! //! @homepage http://www.bornagainproject.org //! @license GNU General Public License v3 or higher (see COPYING) @@ -63,13 +63,13 @@ const QMap<QString, std::tuple<QString, QString, std::function<MultiLayer*()>>> } // namespace -bool GUIExamplesFactory::isValidExampleName(const QString& name) +bool GUI::ExamplesFactory::isValidExampleName(const QString& name) { return builders.find(name) != builders.end(); } //! Populate sample model with -SessionItem* GUIExamplesFactory::createSampleItems(const QString& name, SampleModel* sampleModel, +SessionItem* GUI::ExamplesFactory::createSampleItems(const QString& name, SampleModel* sampleModel, MaterialModel* materialModel) { ASSERT(isValidExampleName(name)); @@ -78,12 +78,12 @@ SessionItem* GUIExamplesFactory::createSampleItems(const QString& name, SampleMo return GUIDomainSampleVisitor().populateSampleModel(sampleModel, materialModel, *sample, name); } -QStringList GUIExamplesFactory::exampleNames() +QStringList GUI::ExamplesFactory::exampleNames() { return builders.keys(); } -std::tuple<QString, QString> GUIExamplesFactory::exampleInfo(const QString& name) +std::tuple<QString, QString> GUI::ExamplesFactory::exampleInfo(const QString& name) { ASSERT(isValidExampleName(name)); auto [title, description, builder] = builders[name]; diff --git a/GUI/Model/From/GUIExamplesFactory.h b/GUI/Model/From/GUIExamplesFactory.h index 1f668e3f817e87db288066119600c5d9656f1b32..1ab0aee945230dd7089e7f91ec33a51f2f0ec273 100644 --- a/GUI/Model/From/GUIExamplesFactory.h +++ b/GUI/Model/From/GUIExamplesFactory.h @@ -3,7 +3,7 @@ // BornAgain: simulate and fit reflection and scattering // //! @file GUI/Model/From/GUIExamplesFactory.h -//! @brief Defines class GUIExamplesFactory +//! @brief Defines class GUI::ExamplesFactory //! //! @homepage http://www.bornagainproject.org //! @license GNU General Public License v3 or higher (see COPYING) @@ -22,7 +22,7 @@ class SampleModel; class MaterialModel; //! Class that generates GUI model from -namespace GUIExamplesFactory { +namespace GUI::ExamplesFactory { bool isValidExampleName(const QString& name); @@ -35,6 +35,6 @@ namespace GUIExamplesFactory { //! Returns human readable name and description std::tuple<QString, QString> exampleInfo(const QString& name); -} // namespace GUIExamplesFactory +} // namespace GUI::ExamplesFactory #endif // BORNAGAIN_GUI_MODEL_FROM_GUIEXAMPLESFACTORY_H diff --git a/GUI/Model/From/SampleListModel.cpp b/GUI/Model/From/SampleListModel.cpp index dfeee448da1dca3d010e3bcfaaa3f5cbcbb4efe7..31898bd8e16e939938a8e8bbdd360ce337fb0b25 100644 --- a/GUI/Model/From/SampleListModel.cpp +++ b/GUI/Model/From/SampleListModel.cpp @@ -146,7 +146,7 @@ QModelIndex SampleListModel::createSampleFromExamples(const QString& className, beginInsertRows(QModelIndex(), row, row); auto* sample = dynamic_cast<MultiLayerItem*>( - GUIExamplesFactory::createSampleItems(className, m_sampleModel, materialModel)); + GUI::ExamplesFactory::createSampleItems(className, m_sampleModel, materialModel)); sample->setItemName(title); sample->setDescription(description); diff --git a/GUI/View/SampleDesigner/SampleListView.cpp b/GUI/View/SampleDesigner/SampleListView.cpp index 8ba24b1dd914fb61988f8cc1d3b2b376af48f16a..1b322e941459a6cd00caa67ac0358167fe9b57e5 100644 --- a/GUI/View/SampleDesigner/SampleListView.cpp +++ b/GUI/View/SampleDesigner/SampleListView.cpp @@ -96,9 +96,9 @@ SampleListView::SampleListView(QWidget* parent, SampleModel* sampleModel) : QLis auto* menu = new QMenu(this); m_chooseFromLibraryAction->setMenu(menu); - for (const auto& exampleName : GUIExamplesFactory::exampleNames()) { + for (const auto& exampleName : GUI::ExamplesFactory::exampleNames()) { QString title, description; - std::tie(title, description) = GUIExamplesFactory::exampleInfo(exampleName); + std::tie(title, description) = GUI::ExamplesFactory::exampleInfo(exampleName); auto icon = QIcon(":/SampleDesignerToolbox/images/sample_layers2.png"); auto* action = menu->addAction(icon, title); action->setToolTip(description);