Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
QmitkNDIAuroraWidget.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef QmitkNDIAuroraWidget_H
18 #define QmitkNDIAuroraWidget_H
19 
20 #include "ui_QmitkNDIAuroraWidget.h"
22 
23 
29 class MITKIGTUI_EXPORT QmitkNDIAuroraWidget : public QmitkNDIAbstractDeviceWidget
30 {
31  Q_OBJECT // this is needed for all Qt objects that should have a MOC object (everything that derives from QObject)
32 
33 public:
34  static const std::string VIEW_ID;
35 
36  QmitkNDIAuroraWidget(QWidget* parent = 0, Qt::WindowFlags f = 0);
38 
39  virtual void Initialize();
40 
41 private:
43  void CreateConnections();
44 
45  void CreateQtPartControl(QWidget *parent);
46 protected:
47  virtual void ResetOutput();
48  virtual void AddOutput(std::string s);
50 
51  virtual void StoreUISettings();
52  virtual void LoadUISettings();
53 
54  virtual void SetPortValueToGUI(int portValue);
55  virtual void SetPortTypeToGUI(int portType);
56 
57  virtual QmitkNDIAuroraWidget* Clone(QWidget* parent) const;
58 
59  Ui::QmitkNDIAuroraWidget* m_Controls;
60 };
61 
62 #endif
virtual void Initialize()=0
Subclass must implement this method to return a pointer to a copy of the object. Please don't forget ...
itk::SmartPointer< Self > Pointer
virtual void StoreUISettings()
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) ...
Ui::QmitkNDIAuroraWidget * m_Controls
virtual void LoadUISettings()
Optional method to store and load settings of your widget (see QmitkNDIPolarisWidget) ...
static const std::string VIEW_ID
virtual void SetPortTypeToGUI(int portType)=0
virtual void SetPortValueToGUI(int portValue)=0
virtual QmitkAbstractTrackingDeviceWidget * Clone(QWidget *parent=0) const =0
Subclass must implement this method to return a pointer to a copy of the object. Please don't forget ...
Abstract class of a configuration widget for NDI Devices. For implementations see NDIAuroraWidget or ...
virtual mitk::TrackingDevice::Pointer ConstructTrackingDevice()=0
virtual void AddOutput(std::string s)=0
Optional method to add output to a small screen in the trackingToolbox (see QmitkNDIPolarisWidget) ...
Implementation of a configuration widget for NDI Aurora Devices.