MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
brainmonitorsetupwidget.cpp
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
43 
44 #include "../brainmonitor.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 BrainMonitorPlugin;
61 
62 
63 //*************************************************************************************************************
64 //=============================================================================================================
65 // DEFINE MEMBER METHODS
66 //=============================================================================================================
67 
69 : QWidget(parent)
70 , m_pBrainMonitor(p_pBrainMonitor)
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 BrainMonitorSetupWidget::showAboutDialog()
89 {
90  BrainMonitorAboutWidget aboutDialog(this);
91  aboutDialog.exec();
92 }
The BrainMonitor class provides a dummy algorithm structure.
Definition: brainmonitor.h:92
Contains the declaration of the BrainMonitorSetupWidget class.
The BrainMonitorWidget class provides the about dialog for the DummyToolbox.
BrainMonitorSetupWidget(BrainMonitor *p_pBrainMonitor, QWidget *parent=0)
Contains the declaration of the BrainMonitorAboutWidget class.