MNE-CPP  beta 1.0
averagingsetupwidget.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "averagingsetupwidget.h"
42 #include "averagingaboutwidget.h"
43 
44 #include "../averaging.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 AveragingPlugin;
61 
62 
63 //*************************************************************************************************************
64 //=============================================================================================================
65 // DEFINE MEMBER METHODS
66 //=============================================================================================================
67 
69 : QWidget(parent)
70 , m_pAveraging(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 AveragingSetupWidget::showAboutDialog()
89 {
90  AveragingAboutWidget aboutDialog(this);
91  aboutDialog.exec();
92 }
The Averaging class provides a Averaging algorithm structure.
Definition: averaging.h:109
The AveragingAboutWidget class provides the about dialog for the AveragingToolbox.
AveragingSetupWidget(Averaging *toolbox, QWidget *parent=0)
Contains the declaration of the AveragingAboutWidget class.
Contains the declaration of the AveragingSetupWidget class.