]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/Contour/ContourVOIWidget.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / Contour / ContourVOIWidget.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 __ContourVOIWidget_h_INCLUDED_H__
27 #define __ContourVOIWidget_h_INCLUDED_H__
28
29
30 #include "manualContourModelRoi.h"
31 #include "manualRoiControler.h"
32 #include "manualViewRoi.h"
33 #include "wxVtkBaseView.h"
34 #include "wxVtk2DBaseView.h"
35 #include "mBarRange.h"
36 #include "marTypes.h"
37   
38 #include "vtkImageMapToColors.h"
39 #include "vtkImageActor.h"
40
41
42
43
44   class ContourVOIWidget;
45   //------------------------------------------------------------------------------------------------------------------------------------
46   // Event handling auxiliar class
47   //------------------------------------------------------------------------------------------------------------------------------------
48   class wxWidgetSliderMinMaxVOI : wxEvtHandler
49   {
50   public:
51           //--------------------------------------------------------------------------------------------------------------------------------
52           // Constructors ans destructors
53           //--------------------------------------------------------------------------------------------------------------------------------
54                 wxWidgetSliderMinMaxVOI(ContourVOIWidget *contourtool,mBarRange * modelBarRange);
55                 ~wxWidgetSliderMinMaxVOI();             
56
57           //--------------------------------------------------------------------------------------------------------------------------------
58           // Min-Max Barrange received events
59           //--------------------------------------------------------------------------------------------------------------------------------
60                 void onBarrange(wxCommandEvent& event);
61                 void onActualChange_Bar(wxCommandEvent& event);
62                 void onStartChange_Bar(wxCommandEvent& event);
63                 void onEndChange_Bar(wxCommandEvent& event);
64                 void onSelectionEnd(wxCommandEvent& event);
65                 void onMovedBar(wxCommandEvent& event);
66
67   private:
68           //--------------------------------------------------------------------------------------------------------------------------------
69           // Attributes
70           //--------------------------------------------------------------------------------------------------------------------------------
71           ContourVOIWidget      *mcontourtool;
72           mBarRange                     *modBarRange;
73   };
74
75
76 //--------------------------------------------------------------------------------------------------------------------------------
77 //--------------------------------------------------------------------------------------------------------------------------------
78 //--------------------------------------------------------------------------------------------------------------------------------
79
80   class creaMaracasVisu_EXPORT ContourVOIWidget : public wxPanel
81   {
82   public:
83         ContourVOIWidget( wxWindow *parent, wxVtkBaseView *wxvtkbaseview , vtkImageData* imagedata);
84     ~ContourVOIWidget();
85     void ConfigureVTK();
86
87         wxVtkBaseView *GetWxVtkBaseView();
88         void GetVOI( int voi[6] );
89
90
91   private:
92         mBarRange                               *mbarrange;
93
94         vtkImageData                    *imagedata;
95         wxVtkBaseView                   *wxvtkbaseview;
96
97         manualRoiControler              *_manRoiControl;
98         manualContourModel              *_mContourModel;
99         manualViewRoi                   *_mViewRoi;
100
101   };
102
103 #endif  // __ContourVOIWidget_h_INCLUDED_H__
104