MNE-CPP  beta 1.0
covariancesetupwidget.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "covariancesetupwidget.h"
42 #include "covarianceaboutwidget.h"
43 
44 #include "../covariance.h"
45 
46 
47 //*************************************************************************************************************
48 //=============================================================================================================
49 // QT INCLUDES
50 //=============================================================================================================
51 
52 #include <QDebug>
53 
54 
55 //*************************************************************************************************************
56 //=============================================================================================================
57 // USED NAMESPACES
58 //=============================================================================================================
59 
60 using namespace CovariancePlugin;
61 
62 
63 //*************************************************************************************************************
64 //=============================================================================================================
65 // DEFINE MEMBER METHODS
66 //=============================================================================================================
67 
69 : QWidget(parent)
70 , m_pCovariance(toolbox)
71 {
72  ui.setupUi(this);
73 
74  connect(ui.m_qPushButton_About, SIGNAL(released()), this, SLOT(showAboutDialog()));
75 }
76 
77 
78 //*************************************************************************************************************
79 
81 {
82 
83 }
84 
85 
86 //*************************************************************************************************************
87 
88 void CovarianceSetupWidget::showAboutDialog()
89 {
90  CovarianceAboutWidget aboutDialog(this);
91  aboutDialog.exec();
92 }
Contains the declaration of the CovarianceSetupWidget class.
CovarianceSetupWidget(Covariance *toolbox, QWidget *parent=0)
The CovarianceAboutWidget class provides the about dialog for the CovarianceToolbox.
The Covariance class provides a Covariance algorithm structure.
Definition: covariance.h:107
Contains the declaration of the CovarianceAboutWidget class.