BornAgain  1.19.79
Simulate and fit neutron and x-ray scattering at grazing incidence
WelcomeView.h
Go to the documentation of this file.
1 // ************************************************************************************************
2 //
3 // BornAgain: simulate and fit reflection and scattering
4 //
5 //! @file GUI/View/Toplevel/WelcomeView.h
6 //! @brief Defines class WelcomeView
7 //!
8 //! @homepage http://www.bornagainproject.org
9 //! @license GNU General Public License v3 or higher (see COPYING)
10 //! @copyright Forschungszentrum Jülich GmbH 2018
11 //! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
12 //
13 // ************************************************************************************************
14 
15 #ifndef BORNAGAIN_GUI_VIEW_TOPLEVEL_WELCOMEVIEW_H
16 #define BORNAGAIN_GUI_VIEW_TOPLEVEL_WELCOMEVIEW_H
17 
18 #include <QWidget>
19 
20 class ProjectManager;
21 
22 namespace Ui {
23 
24 class WelcomeView;
25 }
26 
27 class WelcomeView : public QWidget {
28  Q_OBJECT
29 public:
30  WelcomeView(QWidget* parent);
31 
32 private:
35 
36  Ui::WelcomeView* m_ui;
37 };
38 
39 #endif // BORNAGAIN_GUI_VIEW_TOPLEVEL_WELCOMEVIEW_H
Handles activity related to opening/save projects.
void updateRecentProjectPanel()
Definition: WelcomeView.cpp:57
ProjectManager * projectManager()
Definition: WelcomeView.cpp:52
Ui::WelcomeView * m_ui
Definition: WelcomeView.h:36
WelcomeView(QWidget *parent)
Definition: WelcomeView.cpp:27