Computer Assisted Medical Intervention Tool Kit  version 5.2
AnglesAndTranslationAction.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2024 Univ. Grenoble Alpes, CNRS, Grenoble INP - UGA, TIMC, 38000 Grenoble, France
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 #ifndef ANGLESANDTRANSLATIONACTION_H
26 #define ANGLESANDTRANSLATIONACTION_H
27 
28 // CamiTK stuff
29 #include <QObject>
30 #include <Action.h>
32 #include <MedicalImageViewer.h>
33 
34 #include "ArbitrarySliceAPI.h"
35 
43 
44  Q_OBJECT
45 
46 public:
47 
50 
52  virtual ~AnglesAndTranslationAction();
53 
55  virtual QWidget* getWidget();
56 
58  virtual bool event(QEvent* e);
59 
61  void resetTransform();
62 
63 public slots:
68  return SUCCESS;
69  }
70 
71  // Update the translation and the corresponding slider whenever the arbitrary slice viewer slider has changed
72  void updateTranslation();
73 
74 private:
77  void update();
78 
80  camitk::ArbitrarySingleImageComponent* currentImageComp;
81 
83  bool blockEvent;
84 };
85 
86 #endif // ANGLESANDTRANSLATIONACTION_H
87 
#define ARBITRARY_SLICE_API
Definition: ArbitrarySliceAPI.h:8
This action simply display the widget allowing the user to select an angle to orientate the arbitrary...
Definition: AnglesAndTranslationAction.h:42
virtual camitk::Action::ApplyStatus apply()
This method returns always SUCCESS as the action aims at displaying its widget to be used in order to...
Definition: AnglesAndTranslationAction.h:67
This class describes what is a generic Action extension.
Definition: ActionExtension.h:57
Action class is an abstract class that enables you to build a action (generally on a component).
Definition: Action.h:209
ApplyStatus
describes what happened during the application of an algorithm (i.e. results of the apply method)
Definition: Action.h:225
@ SUCCESS
everything went according to plan
Definition: Action.h:226
virtual QWidget * getWidget()
This method has to be redefined in your Action only if:
Definition: Action.cpp:168
This Component manages the specific case of arbitrary orientation of a sub-component of the image com...
Definition: ArbitrarySingleImageComponent.h:65