]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxWidgetMesure2D_Plane.h
02dc429bc98571cfcab26ec9a163fd9aca52ef0b
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxWidgetMesure2D_Plane.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 #ifndef WXWIDGETMESURE2D_PLANE_H_
27 #define WXWIDGETMESURE2D_PLANE_H_
28
29 #include "wxWidgetMesure2D.h"
30 #include "wxVtk2DBaseView.h"
31
32 class wxWidgetMesure2D_Plane : public wxWidgetMesure2D
33 {
34 public:
35          wxWidgetMesure2D_Plane(wxWindow *parent);
36          ~wxWidgetMesure2D_Plane();
37         void                    OnActiveLine(wxCommandEvent& event);
38         void                    OnActiveCirlcle(wxCommandEvent& event);
39         virtual void    ConfigureA(wxVtk2DBaseView *wxvtk2Dbaseview);
40         void                    ConfigureCircleLine();
41         void                    CircleLine();
42
43 protected:
44         virtual wxWindow                *CreateWin1a(wxWindow *parent);
45 private:
46         wxCheckBox                              *_cb_line; 
47         wxCheckBox                              *_cb_circle; 
48
49         // Circle 1
50         vtkPoints                                       *_ptsCircle1;
51         vtkActor                                        *_circle1Actor;
52         vtkPolyDataMapper                       *_circle1Mapper;
53     vtkPolyData                                 *_pdCircle1;
54         // Circle 2
55         vtkPoints                                       *_ptsCircle2;
56         vtkActor                                        *_circle2Actor;
57         vtkPolyDataMapper                       *_circle2Mapper;
58     vtkPolyData                                 *_pdCircle2;
59         // line reference 1
60         vtkPoints                                       *_ptsLineRef1;
61         vtkActor                                        *_lineRef1Actor;
62         vtkPolyDataMapper                       *_lineRef1Mapper;
63     vtkPolyData                                 *_pdLineRef1;
64         // line reference 2
65         vtkPoints                                       *_ptsLineRef2;
66         vtkActor                                        *_lineRef2Actor;
67         vtkPolyDataMapper                       *_lineRef2Mapper;
68     vtkPolyData                                 *_pdLineRef2;
69
70         void SetVisibleCircle( bool ok );
71
72 };
73
74 #endif /*WXWIDGETMESURE2D_PLANE_H_*/