MNE-CPP  beta 1.0
startupwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef STARTUPWIDGET_H
37 #define STARTUPWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 
46 //*************************************************************************************************************
47 //=============================================================================================================
48 // QT INCLUDES
49 //=============================================================================================================
50 
51 #include <QWidget>
52 #include <QSharedPointer>
53 
54 
55 //*************************************************************************************************************
56 //=============================================================================================================
57 // FORWARD DECLARATIONS
58 //=============================================================================================================
59 
60 class QAction;
61 class QLabel;
62 
63 
64 //*************************************************************************************************************
65 //=============================================================================================================
66 // DEFINE NAMESPACE MNEX
67 //=============================================================================================================
68 
69 namespace MNEX
70 {
71 
72 //=============================================================================================================
78 class StartUpWidget : public QWidget
79 {
80  Q_OBJECT
81 public:
82  typedef QSharedPointer<StartUpWidget> SPtr;
83  typedef QSharedPointer<const StartUpWidget> ConstSPtr;
85  //=========================================================================================================
91  StartUpWidget(QWidget *parent = 0);
92 
93  //=========================================================================================================
98 
99 private:
100  QLabel* m_pLabel_Info;
101 };
102 
103 }//NAMESPACE
104 
105 #endif // STARTUPWIDGET_H
QSharedPointer< const StartUpWidget > ConstSPtr
Definition: startupwidget.h:83
Definition: arrow.h:75
StartUpWidget(QWidget *parent=0)
The StartUpWidget class provides the widget which is shown at start up in the central widget of the m...
Definition: startupwidget.h:78
QSharedPointer< StartUpWidget > SPtr
Definition: startupwidget.h:82