MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
brainmonitorsetupwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef BRAINMONITORSETUPWIDGET_H
37 #define BRAINMONITORSETUPWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 #include "../ui_brainmonitorsetup.h"
46 
47 #include <xMeas/Nomenclature/nomenclature.h>
48 
49 
50 //*************************************************************************************************************
51 //=============================================================================================================
52 // QT INCLUDES
53 //=============================================================================================================
54 
55 #include <QtWidgets>
56 
57 
58 //*************************************************************************************************************
59 //=============================================================================================================
60 // USED NAMESPACES
61 //=============================================================================================================
62 
63 using namespace XMEASLIB;
64 
65 
66 //*************************************************************************************************************
67 //=============================================================================================================
68 // DEFINE NAMESPACE BrainMonitorPlugin
69 //=============================================================================================================
70 
71 namespace BrainMonitorPlugin
72 {
73 
74 
75 //*************************************************************************************************************
76 //=============================================================================================================
77 // FORWARD DECLARATIONS
78 //=============================================================================================================
79 
80 class BrainMonitor;
81 
82 
83 //=============================================================================================================
89 class BrainMonitorSetupWidget : public QWidget
90 {
91  Q_OBJECT
92 
93 public:
94 
95  //=========================================================================================================
102  BrainMonitorSetupWidget(BrainMonitor* p_pBrainMonitor, QWidget *parent = 0);
103 
104  //=========================================================================================================
110 
111 
112 private slots:
113  //=========================================================================================================
118  void showAboutDialog();
119 
120 private:
121 
122  BrainMonitor* m_pBrainMonitor;
124  Ui::BrainMonitorSetupWidgetClass ui;
125 };
126 
127 } // NAMESPACE
128 
129 #endif // BrainMonitorSetupWidget_H
The BrainMonitor class provides a dummy algorithm structure.
Definition: brainmonitor.h:92
The BrainMonitorSetupWidget class provides the DummyToolbox configuration window. ...