MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
brainmonitorrunwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef BRAINMONITORRUNWIDGET_H
37 #define BRAINMONITORRUNWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 #include "../ui_brainmonitorrun.h"
46 
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // QT INCLUDES
51 //=============================================================================================================
52 
53 #include <QtWidgets>
54 
55 
56 //*************************************************************************************************************
57 //=============================================================================================================
58 // DEFINE NAMESPACE BrainMonitorPlugin
59 //=============================================================================================================
60 
61 namespace BrainMonitorPlugin
62 {
63 
64 
65 //*************************************************************************************************************
66 //=============================================================================================================
67 // FORWARD DECLARATIONS
68 //=============================================================================================================
69 
70 class BrainMonitor;
71 
72 
73 //*************************************************************************************************************
74 //=============================================================================================================
75 // USED NAMESPACES
76 //=============================================================================================================
77 
78 
79 //=============================================================================================================
85 class BrainMonitorRunWidget : public QWidget
86 {
87  Q_OBJECT
88 
89 public:
90 
91  //=========================================================================================================
98  BrainMonitorRunWidget(BrainMonitor* p_pBrainMonitor, QWidget *parent = 0);
99 
100  //=========================================================================================================
106 
107 private slots:
108  //=========================================================================================================
113  void showAboutDialog();
114 
115 private:
116 
117  BrainMonitor* m_pBrainMonitor;
119  Ui::BrainMonitorRunWidgetClass ui;
120 };
121 
122 } // NAMESPACE
123 
124 #endif // BRAINMONITORRUNWIDGET_H
The BrainMonitor class provides a dummy algorithm structure.
Definition: brainmonitor.h:92
The BrainMonitorRunWidget class provides the DummyToolbox configuration window for the run mode...
BrainMonitorRunWidget(BrainMonitor *p_pBrainMonitor, QWidget *parent=0)