MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
QmitkToFTutorialView.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 QmitkToFTutorialView_h
14#define QmitkToFTutorialView_h
15
16#include <berryISelectionListener.h>
17
18#include <QmitkAbstractView.h>
19
20#include "ui_QmitkToFTutorialViewControls.h"
21
22
23
29class QmitkToFTutorialView : public QmitkAbstractView
30{
31 // this is needed for all Qt objects that should have a Qt meta-object
32 // (everything that derives from QObject and wants to have signal/slots)
33 Q_OBJECT
34
35 public:
36
37 static const std::string VIEW_ID;
38
40 ~QmitkToFTutorialView() override;
41
42 void CreateQtPartControl(QWidget *parent) override;
43
47 void SetFocus() override;
48
49 protected slots:
50
52 void OnStep1();
54 void OnStep2();
55
56 protected:
57
59
60 Ui::QmitkToFTutorialViewControls* m_Controls;
61
62};
63
64
65
66#endif
QmitkToFTutorialView is a tutorial showing the basic implementation techniques of MITK-ToF Step 1 sho...
void OnStep2()
Called when the user clicks the Step 2 button.
void OnStep1()
Called when the user clicks the Step 1 button.
Ui::QmitkToFTutorialViewControls * m_Controls
static const std::string VIEW_ID
void CreateQtPartControl(QWidget *parent) override