]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/CutModule/interface/vtkInteractorStyleCutter.h
Support #1768 CREATIS Licence insertion
[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   vtkTypeRevisionMacro(vtkInteractorStyleCutter, vtkInteractorStyle);
64   void PrintSelf(ostream& os, vtkIndent indent);
65   bool Finished();
66   
67   // Description:
68   // Event bindings controlling the effects of pressing mouse buttons
69   // or moving the mouse.
70   virtual void OnMouseMove();
71   virtual void OnLeftButtonDown();
72   virtual void OnRightButtonDown();
73   void VisibilityOff();
74   
75   vtkGetObjectMacro(LoopPoints,vtkPoints);
76   vtkGetVector3Macro(Direction,double);
77   
78 protected:
79   vtkInteractorStyleCutter();
80   ~vtkInteractorStyleCutter();
81
82   //This method is designed for vtkImplicitSelectionLoop where the loop
83   //should not be closed, the function is virtual to override this behavior
84   virtual void EndLoop();
85   void Initialize();  
86
87   int CurrentPosition[2];
88   double Direction[3];
89
90   //Points selected by the user
91   vtkPoints *Points;
92
93   //Current point id:
94   vtkIdType PointID;
95
96   //bool which determine if user has press the left button first
97   int Moving;
98   
99   vtkActor2D    *BboxActor;
100   vtkCellArray  *Lines;
101   vtkPoints             *LoopPoints;
102   bool                  finished;
103   
104 private:
105   vtkInteractorStyleCutter(const vtkInteractorStyleCutter&);  // Not implemented
106   void operator=(const vtkInteractorStyleCutter&);  // Not implemented
107 };
108
109 #endif