]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramDialogComboBox.h
#2844 creaMaracasVisu Feature New Normal - ManualPaint_model box, Refresh TransferF...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / HistogramDialogComboBox.h
index 578fdf59ae35d1c4b4cb8ef8402236f1b0c63542..0eb2cb343f23bb24a76c5e5f779acd1564b68eda 100644 (file)
@@ -1,4 +1,29 @@
 
+/*# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la Sant�)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
+
 #ifndef __HistogramDialogComboBox__
 #define __HistogramDialogComboBox__
 
 
 #include "HistogramDialogComboBoxItem.h"
 #include <fstream>
+
 #include <wx/bmpcbox.h>
+#include <wx/checkbox.h>
 #include "vtkImageData.h"
 
-
-#define FILENAME "/Data/colorsfunction.txt"
-
+#define COLORSFUNCTIONFILENAME "colorsfunction.txt"
 
 class HistogramDialogComboBox : public wxPanel
 {
@@ -44,6 +69,11 @@ public:
 
        void OnEditBitmapCombo(wxCommandEvent& event);
        void OnBitmapComboItemSelected(wxCommandEvent& event);
+       void BitmapComboItemSelect(int value);
+
+       void OnColorLevelChanged(wxCommandEvent& event);        
+       void OnWindowLevelChanged(wxCommandEvent& event);       
+       void OnChkBoxActive(wxCommandEvent& event);
 
        void setImageData(vtkImageData* img);
 
@@ -61,6 +91,12 @@ public:
                                                                        std::vector<double>& green,
                                                                        std::vector<double>& blue);
 
+       double  GetWindowLevel();
+       double  GetColorLevel();
+       bool    GetActive();
+       void    InitCurrentPathColorsFuntion();
+       std::string GetFileNameOfColorsFunction();
+
 private:
 
        std::vector<double> _greyvect;
@@ -70,22 +106,31 @@ private:
        std::vector<double> _greyvecttransfer;
        std::vector<double> _value;
        vtkImageData* _img;
-       int _maxgreyvalue;
+       double _maxgreyvalue;
        int _currentitem;       
 
+       std::string _currentpathColorsFuntion;
+
        /*
        * Represents the color of the backGround. Default color is the parent color. 
        */              
 
-       wxBitmapComboBox*       _bitmapcombo;   
-       std::vector<HistogramDialogComboBoxItem*> _bitmapsitems;
-       wxBitmap* colorBar_Bitmap;
-       wxSizer* _bitmapsizer;
+       wxBitmapComboBox                                                        *_bitmapcombo;
+       wxCheckBox                                                                      *_ckboxActive;
+       wxSlider                                                                        *_slidercolor;
+       wxSlider                                                                        *_sliderwindowlevel;
+       std::vector<HistogramDialogComboBoxItem*>       _bitmapsitems;
+       wxBitmap                                                                        *colorBar_Bitmap;
+       wxSizer                                                                         *_bitmapsizer;
 
        wxSizer* getBitmapCombo();
+       wxSizer* getSlidersWlCo();
        wxBitmapComboBox* getBitmapComboElements();
        void OnLoadComboBoxData(std::vector<HistogramDialogComboBoxItem*>& itembitmaps,std::string filename);
        void saveCurrentConfiguration(std::vector<HistogramDialogComboBoxItem*>& itembitmaps,std::string filename);
+       void setSlidersValue();
+
+
        
 };