]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.h
#2490 creaMaracasVisu Feature New High - Histogram Interaction
[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 , wxString message,int &typeOfTransformation,bool &dlgWxOK) ;
58         };
59
60
61
62 //-----------------------------------------------------
63
64 class ColorLayerImageViewPanel
65                 : public wxPanel
66                 {
67                 public:
68                         ColorLayerImageViewPanel(wxWindow * parent, int min, int max, int type);
69                         ~ColorLayerImageViewPanel();
70                         void onThresholdStop();
71                         ColorLayerImageViewManager* GetColorLayerImageViewManager();
72 //EED01                 ColorLayerImageView* GetColorLayerImageView();
73 //EED01                 void SetColorLayerImageView(ColorLayerImageView* colorLayerImageView);
74                         bool IsVisible();
75                         void SetBaseSpacing(double spc[3]);
76                         void SetBaseDimension(int dim[3]);
77                         void SetOriginalSpacing(double spc[3]);
78                         void SetImage(vtkImageData *img);
79                         void SetFittingMode(int fitting_mode);
80                         int  GetFittingMode();
81                         void SetActive(bool active);
82
83                 private:
84                         bool                                                                    _active;
85                         int                                                                     _fitting_mode;
86                         int                                                                     _dimBase[3];
87                         double                                                          _spcBase[3];
88                         double                                                          _spcOrg[3];
89                         bool                                                                    _thresholdGo;
90                         ColorLayerImageViewManager      *_colorLayerImageViewManager;
91                         wxButton                                                                *_btn_ReadImage;
92                         wxSlider                                                                *_opacity;
93                         wxCheckBox                                                      *_interpolationCheckBox;
94                         wxCheckBox                                                      *_cb_ShowHide;
95                         wxCheckBox                                                      *_cb_SliceFixDinamic;
96                         wxSlider                                                                *_sl_SliceImageX;
97                         wxSlider                                                                *_sl_SliceImageY;
98                         wxSlider                                                                *_sl_SliceImageZ;
99
100 //Borrame
101 //                      mBarRange2                                                      *_barrange2;
102                         Histogram*                                                      _histogram;
103                         HistogramMinMaxLevel*                   _histogramMinMaxLevel;
104
105                         void onReadImage(wxCommandEvent& event);
106                         void onThresholdChange(wxCommandEvent& event);
107                         void onThresholdShow(wxCommandEvent& event);
108                         void onThresholdInterpolation(wxCommandEvent& event);
109                         void onChangeOpacity(wxScrollEvent& event);
110                         void onSliceFixDinamic(wxCommandEvent& event);
111                         void onSliceImage(wxScrollEvent& event);
112                         void RefreshView();
113 };
114
115 #endif
116