MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
brainmonitorrunwidget.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "brainmonitorrunwidget.h"
43 
44 #include "../brainmonitor.h"
45 
46 
47 //*************************************************************************************************************
48 //=============================================================================================================
49 // USED NAMESPACES
50 //=============================================================================================================
51 
52 using namespace BrainMonitorPlugin;
53 
54 
55 //*************************************************************************************************************
56 //=============================================================================================================
57 // DEFINE MEMBER METHODS
58 //=============================================================================================================
59 
61 : QWidget(parent)
62 , m_pBrainMonitor(p_pBrainMonitor)
63 {
64  ui.setupUi(this);
65 
66  connect(ui.m_qPushButton_About, SIGNAL(released()), this, SLOT(showAboutDialog()));
67 }
68 
69 
70 //*************************************************************************************************************
71 
73 {
74 
75 }
76 
77 
78 //*************************************************************************************************************
79 
80 void BrainMonitorRunWidget::showAboutDialog()
81 {
82  BrainMonitorAboutWidget aboutDialog(this);
83  aboutDialog.exec();
84 }
The BrainMonitor class provides a dummy algorithm structure.
Definition: brainmonitor.h:92
The BrainMonitorWidget class provides the about dialog for the DummyToolbox.
BrainMonitorRunWidget(BrainMonitor *p_pBrainMonitor, QWidget *parent=0)
Contains the declaration of the BrainMonitorAboutWidget class.
Contains the declaration of the BrainMonitorRunWidget class.