MNE-CPP  beta 1.0
averagingsetupwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef AVERAGINGSETUPWIDGET_H
37 #define AVERAGINGSETUPWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 #include "../ui_averagingsetup.h"
46 
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // QT INCLUDES
51 //=============================================================================================================
52 
53 #include <QtWidgets>
54 
55 
56 //*************************************************************************************************************
57 //=============================================================================================================
58 // USED NAMESPACES
59 //=============================================================================================================
60 
61 
62 //*************************************************************************************************************
63 //=============================================================================================================
64 // DEFINE NAMESPACE AveragingPlugin
65 //=============================================================================================================
66 
67 namespace AveragingPlugin
68 {
69 
70 
71 //*************************************************************************************************************
72 //=============================================================================================================
73 // FORWARD DECLARATIONS
74 //=============================================================================================================
75 
76 class Averaging;
77 
78 
79 //=============================================================================================================
85 class AveragingSetupWidget : public QWidget
86 {
87  Q_OBJECT
88 
89 public:
90 
91  //=========================================================================================================
98  AveragingSetupWidget(Averaging* toolbox, QWidget *parent = 0);
99 
100  //=========================================================================================================
106 
107 
108 private slots:
109  //=========================================================================================================
114  void showAboutDialog();
115 
116 private:
117 
118  Averaging* m_pAveraging;
121 };
122 
123 } // NAMESPACE
124 
125 #endif // AVERAGINGSETUPWIDGET_H
The AveragingSetupWidget class provides the AveragingToolbox configuration window.
The Averaging class provides a Averaging algorithm structure.
Definition: averaging.h:109
AveragingSetupWidget(Averaging *toolbox, QWidget *parent=0)