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