]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/CutModule/interface/vtkInteractorStyleCutter.h
#3109 creaMaracasVisu Bug New Normal - branch vtk7itk4 compilation with vtk7
[creaMaracasVisu.git] / lib / maracasVisuLib / src / CutModule / interface / vtkInteractorStyleCutter.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*=========================================================================
27
28   Program:   Visualization Toolkit
29   Module:    $RCSfile: vtkInteractorStyleCutter.h,v $
30   Language:  C++
31   Date:      $Date: 2012/11/15 14:16:20 $
32   Version:   $Revision: 1.2 $
33
34   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
35   All rights reserved.
36   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
37
38      This software is distributed WITHOUT ANY WARRANTY; without even 
39      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
40      PURPOSE.  See the above copyright notice for more information.
41
42 =========================================================================*/
43 // .NAME vtkInteractorStyleCutter - 
44 // .SECTION Description
45 // This interactor style allows the user to draw a rectangle in the render
46 // window using the left mouse button.  
47
48 #ifndef __vtkInteractorStyleCutter_h
49 #define __vtkInteractorStyleCutter_h
50
51 #include <vtkInteractorStyle.h>
52
53 class vtkPoints;
54 class vtkActor2D;
55 class vtkCellArray;
56
57 class vtkInteractorStyleCutter : public vtkInteractorStyle
58 {
59 public:
60   // Description:
61   // Instantiate the object.
62   static vtkInteractorStyleCutter *New();
63
64 //EED 2017-01-01 Migration VTK7
65 #if VTK_MAJOR_VERSION <= 5
66   vtkTypeRevisionMacro(vtkInteractorStyleCutter, vtkInteractorStyle);
67 #else
68   vtkTypeMacro(vtkInteractorStyleCutter, vtkInteractorStyle);
69 #endif
70
71
72   void PrintSelf(ostream& os, vtkIndent indent);
73   bool Finished();
74   
75   // Description:
76   // Event bindings controlling the effects of pressing mouse buttons
77   // or moving the mouse.
78   virtual void OnMouseMove();
79   virtual void OnLeftButtonDown();
80   virtual void OnRightButtonDown();
81   void VisibilityOff();
82   
83   vtkGetObjectMacro(LoopPoints,vtkPoints);
84   vtkGetVector3Macro(Direction,double);
85   
86 protected:
87   vtkInteractorStyleCutter();
88   ~vtkInteractorStyleCutter();
89
90   //This method is designed for vtkImplicitSelectionLoop where the loop
91   //should not be closed, the function is virtual to override this behavior
92   virtual void EndLoop();
93   void Initialize();  
94
95   int CurrentPosition[2];
96   double Direction[3];
97
98   //Points selected by the user
99   vtkPoints *Points;
100
101   //Current point id:
102   vtkIdType PointID;
103
104   //bool which determine if user has press the left button first
105   int Moving;
106   
107   vtkActor2D    *BboxActor;
108   vtkCellArray  *Lines;
109   vtkPoints             *LoopPoints;
110   bool                  finished;
111   
112 private:
113   vtkInteractorStyleCutter(const vtkInteractorStyleCutter&);  // Not implemented
114   void operator=(const vtkInteractorStyleCutter&);  // Not implemented
115 };
116
117 #endif