Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
QmitkDotModelParametersWidget.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 #ifndef _QMITKDotModelParametersWidget_H_INCLUDED
17 #define _QMITKDotModelParametersWidget_H_INCLUDED
18 
19 //QT headers
20 #include <QWidget>
21 #include <QString>
22 #include "ui_QmitkDotModelParametersWidgetControls.h"
23 #include <org_mitk_gui_qt_diffusionimaging_Export.h>
24 
26 
29 class DIFFUSIONIMAGING_EXPORT QmitkDotModelParametersWidget : public QWidget
30 {
31  //this is needed for all Qt objects that should have a MOC object (everything that derives from QObject)
32  Q_OBJECT
33 
34 public:
35 
36  static const std::string VIEW_ID;
37 
38  QmitkDotModelParametersWidget (QWidget* parent = nullptr, Qt::WindowFlags f = nullptr);
40 
41  virtual void CreateQtPartControl(QWidget *parent);
42 
43  void SetT1(double t1){ m_Controls->m_T1box->setValue(t1); }
44  void SetT2(double t2){ m_Controls->m_T2box->setValue(t2); }
45  unsigned int GetT2(){ return m_Controls->m_T2box->value(); }
46  unsigned int GetT1(){ return m_Controls->m_T1box->value(); }
47 
48 public slots:
49 
50 protected:
51  // member variables
52  Ui::QmitkDotModelParametersWidgetControls* m_Controls;
53 
54 private:
55 
56 };
57 
58 #endif // _QMITKDotModelParametersWidget_H_INCLUDED
59 
Ui::QmitkDotModelParametersWidgetControls * m_Controls