Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
QmitkNPOptitrackWidget.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 QmitkNPOptitrackWidget_H
18 #define QmitkNPOptitrackWidget_H
19 
20 #include "ui_QmitkNPOptitrackWidget.h"
22 
23 
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  QmitkNPOptitrackWidget(QWidget* parent = 0, Qt::WindowFlags f = 0);
38 
39  virtual void Initialize();
40 
41 signals:
42 
43  protected slots :
44 
45  /* @brief Opens a file dialog. The users sets the calibration file which location is then stored in the member m_OptitrackCalibrationFile.*/
46  void SetOptitrackCalibrationFileClicked();
47 
48 private:
49 
51  void CreateConnections();
52 
53  void CreateQtPartControl(QWidget *parent);
54 protected:
55  virtual QmitkNPOptitrackWidget* Clone(QWidget* parent) const;
56 
58 
59  Ui::QmitkNPOptitrackWidget* m_Controls;
60 
61 public:
62  virtual void ResetOutput();
63  virtual void AddOutput(std::string s);
65 
66  virtual bool IsDeviceInstalled();
67 };
68 #endif
itk::SmartPointer< Self > Pointer
virtual void ResetOutput()
Optional method to add output to a small screen in the trackingToolbox (see QmitkNDIPolarisWidget) ...
Ui::QmitkNPOptitrackWidget * m_Controls
Implementation of a configuration widget for NP Optitrack Tracking Devices.
virtual void AddOutput(std::string)
Optional method to add output to a small screen in the trackingToolbox (see QmitkNDIPolarisWidget) ...
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 ...
virtual void Initialize()=0
Subclass must implement this method to return a pointer to a copy of the object. Please don't forget ...
virtual mitk::TrackingDevice::Pointer ConstructTrackingDevice()=0
Abstract class to configure a tracking device. Inherited widgets should be registered in the Microser...
virtual bool IsDeviceInstalled()
Optional method to investigate if drivers etc for your device are installed. The default value is "tr...
static const std::string VIEW_ID