]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.h
a26343843979618652779f4ad38353b6f7fafdd9
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / ThresholdImageView / ColorLayerImageViewPanel.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  *  \file
28  *  \brief Class ThresholdImageViewPanel .
29  */
30
31 /**
32  * \class ThresholdImageViewPanel
33  * \brief
34  */
35
36 #ifndef __ColorLayerImageViewPanel_h__
37 #define __ColorLayerImageViewPanel_h__
38
39
40 #include <wx/wx.h>
41 #include <wx/button.h>
42 #include "ColorLayerImageViewManager.h"
43 #include "Histogram.h"
44 #include "HistogramBase.h"
45
46 // Borrame
47 // #include "mBarRange2.h"
48
49 //-----------------------------------------------------
50
51 //EED 21-08-2010
52 class wxDlgTransformByDimensionBySpacingByPixel
53         {
54         public:
55                 wxDlgTransformByDimensionBySpacingByPixel();
56                 ~wxDlgTransformByDimensionBySpacingByPixel();
57                 void GetTransformType(wxWindow *parent,
58                                                                         double baseSpc[3],
59                                                                         double layerSpc[3],
60                                                                         int baseDim[3],
61                                                                         int layerDim[3],
62                                                                         wxString message,
63                                                                         int &typeOfTransformation,
64                                                                         bool &dlgWxOK) ;
65         };
66
67
68
69 //-----------------------------------------------------
70
71 class ColorLayerImageViewPanel
72                 : public wxPanel
73                 {
74                 public:
75                         ColorLayerImageViewPanel(wxWindow * parent, int min, int max, int type);
76                         ~ColorLayerImageViewPanel();
77                         void onThresholdStop();
78                         ColorLayerImageViewManager* GetColorLayerImageViewManager();
79 //EED01                 ColorLayerImageView* GetColorLayerImageView();
80 //EED01                 void SetColorLayerImageView(ColorLayerImageView* colorLayerImageView);
81                         bool IsVisible();
82                         void SetBaseSpacing(double spc[3]);
83                         void SetBaseDimension(int dim[3]);
84                         void SetOriginalSpacing(double spc[3]);
85                         void SetImage(vtkImageData *img);
86                         void SetFittingMode(int fitting_mode);
87                         int  GetFittingMode();
88                         void SetActive(bool active);
89
90                 private:
91                         bool                                                    _active;
92                         int                                                             _fitting_mode;
93                         int                                                             _dimBase[3];
94                         double                                                  _spcBase[3];
95                         double                                                  _spcOrg[3];
96                         bool                                                    _thresholdGo;
97                         ColorLayerImageViewManager      *_colorLayerImageViewManager;
98                         wxButton                                                *_btn_ReadImage;
99                         wxSlider                                                *_opacity;
100                         wxCheckBox                                              *_interpolationCheckBox;
101                         wxCheckBox                                              *_cb_ShowHide;
102                         wxCheckBox                                              *_cb_SliceFixDinamic;
103                         wxSlider                                                *_sl_SliceImageX;
104                         wxSlider                                                *_sl_SliceImageY;
105                         wxSlider                                                *_sl_SliceImageZ;
106
107 //Borrame
108 //                      mBarRange2                                              *_barrange2;
109                         Histogram*                                              _histogram;
110                         HistogramMinMaxLevel*                   _histogramMinMaxLevel;
111
112                         void onReadImage(wxCommandEvent& event);
113                         void onThresholdChange(wxCommandEvent& event);
114                         void onThresholdShow(wxCommandEvent& event);
115                         void onThresholdInterpolation(wxCommandEvent& event);
116                         void onChangeOpacity(wxScrollEvent& event);
117                         void onSliceFixDinamic(wxCommandEvent& event);
118                         void onSliceImage(wxScrollEvent& event);
119                         void RefreshView();
120 };
121
122 #endif
123