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