MNE-CPP  beta 1.0
rthpisetupwidget.cpp
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 //#include "dummysetupwidget.h"
42 //#include "dummyaboutwidget.h"
43 //#include "../dummytoolbox.h"
44 #include "rthpisetupwidget.h"
45 #include "rthpiaboutwidget.h"
46 #include "../rthpi.h"
47 
48 //*************************************************************************************************************
49 //=============================================================================================================
50 // QT INCLUDES
51 //=============================================================================================================
52 
53 #include <QDebug>
54 
55 
56 //*************************************************************************************************************
57 //=============================================================================================================
58 // USED NAMESPACES
59 //=============================================================================================================
60 
61 using namespace RtHpiPlugin;
62 
63 
64 //*************************************************************************************************************
65 //=============================================================================================================
66 // DEFINE MEMBER METHODS
67 //=============================================================================================================
68 
69 RtHpiSetupWidget::RtHpiSetupWidget(RtHpi* toolbox, QWidget *parent)
70 : QWidget(parent)
71 , m_pRtHpi(toolbox)
72 {
73  ui.setupUi(this);
74 
75  connect(ui.m_qPushButton_About, SIGNAL(released()), this, SLOT(showAboutDialog()));
76 }
77 
78 
79 //*************************************************************************************************************
80 
82 {
83 
84 }
85 
86 
87 //*************************************************************************************************************
88 
89 void RtHpiSetupWidget::showAboutDialog()
90 {
91  RtHpiAboutWidget aboutDialog(this);
92  aboutDialog.exec();
93 }
The RtHpiAboutWidget class provides the about dialog for the RtHpi.
The RtHpi class provides a RtHpi algorithm structure.
Definition: rthpi.h:117
Contains the declaration of the RtHpiSetupWidget class.
RtHpiSetupWidget(RtHpi *toolbox, QWidget *parent=0)
Contains the declaration of the RtHpiAboutWidget class.