MNE-CPP  beta 0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mnertclientsetupbabymegwidget.cpp
1 
2 //*************************************************************************************************************
3 //=============================================================================================================
4 // INCLUDES
5 //=============================================================================================================
6 
8 #include "ui_mnertclientsetupbabymeg.h"
9 
11 
12 #include "../mnertclient.h"
13 
14 
15 //*************************************************************************************************************
16 //=============================================================================================================
17 // USED NAMESPACES
18 //=============================================================================================================
19 
20 using namespace MneRtClientPlugin;
21 
22 
23 //*************************************************************************************************************
24 //=============================================================================================================
25 // DEFINE MEMBER METHODS
26 //=============================================================================================================
27 
28 MneRtClientSetupBabyMegWidget::MneRtClientSetupBabyMegWidget(MneRtClient* p_pMneRtClient, QWidget *parent)
29 : QWidget(parent)
30 , m_pMneRtClient(p_pMneRtClient)
32 {
33  ui->setupUi(this);
34 
35  //SQUID Control
36  connect(ui->m_qPushButton_SquidCtrl, &QPushButton::released, this, &MneRtClientSetupBabyMegWidget::SQUIDControlDialog);
37 
38 }
39 
40 
41 //*************************************************************************************************************
42 
43 MneRtClientSetupBabyMegWidget::~MneRtClientSetupBabyMegWidget()
44 {
45  delete ui;
46 }
47 
48 
49 //*************************************************************************************************************
50 
51 void MneRtClientSetupBabyMegWidget::SQUIDControlDialog()
52 {
53  mnertclientSQUIDControlDgl SQUIDCtrlDlg(m_pMneRtClient,this);
54  SQUIDCtrlDlg.exec();
55 }
The MneRtClientSetupBabyMegWidget class provides the BabyMEG configuration window.
Contains the declaration of the MneRtClientSQUIDControlDGL class.
The MneRtClient class provides a RT server connection.
Definition: mnertclient.h:115
Contains the declaration of the MneRtClientSetupBabyMegWidget class.
The mnertclientSQUIDControlDgl class provides the SQUID control dialog.