MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
QmitkNDIAuroraWidget.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef QmitkNDIAuroraWidget_h
14#define QmitkNDIAuroraWidget_h
15
16#include "ui_QmitkNDIAuroraWidget.h"
18
19
26{
27 Q_OBJECT // this is needed for all Qt objects that should have a MOC object (everything that derives from QObject)
28
29public:
30 static const std::string VIEW_ID;
31
32 QmitkNDIAuroraWidget(QWidget* parent = nullptr, Qt::WindowFlags f = {});
33 ~QmitkNDIAuroraWidget() override;
34
35 void Initialize() override;
36
37private:
39 void CreateConnections();
40
41 void CreateQtPartControl(QWidget *parent);
42protected:
43 void ResetOutput() override;
44 void AddOutput(std::string s) override;
45 mitk::TrackingDevice::Pointer GetTrackingDevice() override;
46
47 void StoreUISettings() override;
48 void LoadUISettings() override;
49
50 void SetPortValueToGUI(int portValue) override;
51 void SetPortTypeToGUI(int portType) override;
52
53 QmitkNDIAuroraWidget* Clone(QWidget* parent) const override;
54
55 Ui::QmitkNDIAuroraWidget* m_Controls;
56};
57
58#endif
virtual mitk::TrackingDevice::Pointer GetTrackingDevice()=0
virtual QmitkAbstractTrackingDeviceWidget * Clone(QWidget *parent=nullptr) const =0
Subclass must implement this method to return a pointer to a copy of the object. Please don't forget ...
virtual void StoreUISettings()
Optional method to store and load settings of your widget (see QmitkNDIPolarisWidget)
virtual void LoadUISettings()
Optional method to store and load settings of your widget (see QmitkNDIPolarisWidget)
virtual void ResetOutput()
Optional method to add output to a small screen in the trackingToolbox (see QmitkNDIPolarisWidget)
Abstract class of a configuration widget for NDI Devices. For implementations see NDIAuroraWidget or ...
void AddOutput(std::string s) override=0
Optional method to add output to a small screen in the trackingToolbox (see QmitkNDIPolarisWidget)
void Initialize() override=0
Subclass must implement this method to return a pointer to a copy of the object. Please don't forget ...
virtual void SetPortValueToGUI(int portValue)=0
virtual void SetPortTypeToGUI(int portType)=0
Implementation of a configuration widget for NDI Aurora Devices.
Ui::QmitkNDIAuroraWidget * m_Controls
static const std::string VIEW_ID