]> Creatis software - bbtk.git/blob - packages/kw/src/vtkKWSlicer.h
Feature #1774
[bbtk.git] / packages / kw / src / vtkKWSlicer.h
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 #ifdef USE_KWWIDGETS
29
30 #ifndef __vtkKWSlicer_h
31 #define __vtkKWSlicer_h
32
33
34 #include "vtkKWCompositeWidget.h"
35
36 class vtkImageData;
37 class vtkKWRenderWidget;
38 class vtkImageViewer2;
39 class vtkKWScale;
40 class vtkKWWindowLevelPresetSelector;
41 class vtkKWSimpleAnimationWidget;
42 class vtkKWMenu;
43 class vtkKWSplitFrame;
44 class vtkKWCornerAnnotationEditor;
45 //namespace bbkw {
46
47 class vtkKWSlicer : public vtkKWCompositeWidget
48 {
49 public:
50   static vtkKWSlicer* New();
51   vtkTypeRevisionMacro(vtkKWSlicer,vtkKWCompositeWidget);
52
53   void SetImage(vtkImageData*);
54   void UpdateImage();
55
56   // Description:
57   // Callbacks
58   virtual void SetSliceFromScaleCallback(double value);
59   virtual void SetSliceCallback(int slice);
60   virtual int  GetSliceCallback();
61   virtual int  GetSliceMinCallback();
62   virtual int  GetSliceMaxCallback();
63   virtual void SetSliceOrientationToXYCallback();
64   virtual void SetSliceOrientationToXZCallback();
65   virtual void SetSliceOrientationToYZCallback();
66   virtual void WindowLevelPresetApplyCallback(int id);
67   virtual int  WindowLevelPresetAddCallback();
68   virtual void WindowLevelPresetUpdateCallback(int id);
69   virtual void WindowLevelPresetHasChangedCallback(int id);
70
71   void ProcessCallbackCommandEvents(vtkObject *caller, 
72                                     unsigned long event, 
73                                     void *calldata);
74 protected:
75   vtkKWSlicer();
76   ~vtkKWSlicer();
77
78   // Description:
79   // Create the widget.
80   virtual void CreateWidget();
81   vtkKWSplitFrame                     *Frame;
82   vtkImageData                   *Image;
83   vtkImageViewer2                *ImageViewer; 
84   vtkKWScale                     *SliceScale;
85   vtkKWWindowLevelPresetSelector *WindowLevelPresetSelector;
86   vtkKWRenderWidget              *RenderWidget;
87   vtkKWSimpleAnimationWidget     *AnimationWidget;
88   vtkKWMenu                      *OrientationMenu;
89   vtkKWCornerAnnotationEditor    *AnnotationEditor;
90
91   virtual void UpdateSliceRanges();
92
93 private:
94   vtkKWSlicer(const vtkKWSlicer&);   // Not implemented.
95   void operator=(const vtkKWSlicer&);  // Not implemented.
96 };
97
98 //}
99 #endif
100 #endif