MNE-CPP  beta 1.0
covariancesetupwidget.h
Go to the documentation of this file.
1 //=============================================================================================================
36 #ifndef COVARIANCESETUPWIDGET_H
37 #define COVARIANCESETUPWIDGET_H
38 
39 
40 //*************************************************************************************************************
41 //=============================================================================================================
42 // INCLUDES
43 //=============================================================================================================
44 
45 #include "../ui_covariancesetup.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 CovariancePlugin
65 //=============================================================================================================
66 
67 namespace CovariancePlugin
68 {
69 
70 
71 //*************************************************************************************************************
72 //=============================================================================================================
73 // FORWARD DECLARATIONS
74 //=============================================================================================================
75 
76 class Covariance;
77 
78 
79 //=============================================================================================================
85 class CovarianceSetupWidget : public QWidget
86 {
87  Q_OBJECT
88 
89 public:
90 
91  //=========================================================================================================
98  CovarianceSetupWidget(Covariance* toolbox, QWidget *parent = 0);
99 
100  //=========================================================================================================
106 
107 
108 private slots:
109  //=========================================================================================================
114  void showAboutDialog();
115 
116 private:
117 
118  Covariance* m_pCovariance;
121 };
122 
123 } // NAMESPACE
124 
125 #endif // COVARIANCESETUPWIDGET_H
CovarianceSetupWidget(Covariance *toolbox, QWidget *parent=0)
The CovarianceSetupWidget class provides the CovarianceToolbox configuration window.
The Covariance class provides a Covariance algorithm structure.
Definition: covariance.h:107