]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuColorBar.cxx
#3262 creaMaracasVisu Feature New Normal - Export LookupTable fron ColorLayerImageV...
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuColorBar.cxx
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 #include "bbmaracasvisuColorBar.h"
27 #include "bbcreaMaracasVisuPackage.h"
28 namespace bbcreaMaracasVisu
29 {
30
31 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,ColorBar)
32 BBTK_BLACK_BOX_IMPLEMENTATION(ColorBar,bbtk::WxBlackBox);
33
34 //--------------------------------------------------
35 void ColorBar::Process()
36 {
37 }
38
39 //--------------------------------------------------
40 void ColorBar::CreateWidget(wxWindow* parent)
41 {
42 //   bbSetOutputWidget( new wxStaticText ( bbGetWxParent() , -1 , _T("") ) );
43 //   Process();
44                 bbtkDebugMessageInc("Core",9,"ColorBar::CreateWidget()"<<std::endl);
45                 mwxwidget = new pColorBar( parent ,bbGetInputInW(), bbGetInputInH(), bbGetInputOrientation()==1); 
46                 mwxwidget -> setActiveStateTo( true );
47             mwxwidget -> setRepresentedValues(bbGetInputInMin(), bbGetInputInMax());
48                 mwxwidget -> setDeviceEndMargin(10);
49                 mwxwidget -> setDeviceBlitStart(10,10); 
50                 std::vector<int> vectRED = bbGetInputReds();    
51                 std::vector<int> vectGREEN = bbGetInputGreens();        
52                 std::vector<int> vectBLUE = bbGetInputBlues();  
53                 std::vector<int> vectVALUES = bbGetInputValues();       
54                 if(vectRED.size()==vectGREEN.size() && vectGREEN.size()==vectBLUE.size() && vectBLUE.size()==vectVALUES.size())
55                 {
56                         int i=0;
57                         while ( i< (int)(vectVALUES.size()))
58                         {
59                                 mwxwidget -> addColorPoint ( (double)vectVALUES[i], wxColour(vectRED[i], vectGREEN[i], vectBLUE[i]));
60                                 i++;
61                         }
62                 }
63                 
64                     
65     bbtkDebugDecTab("Core",9);
66
67         bbSetOutputWidget( mwxwidget );
68 }
69
70 //--------------------------------------------------
71 void ColorBar::bbUserSetDefaultValues()
72 {
73                 mwxwidget = NULL;
74                 bbSetInputOrientation(1);
75                 bbSetInputInW(200);
76                 bbSetInputInH(80);
77                 bbSetInputInMax(1);
78                 bbSetInputInMin(1);     
79 }
80         
81         //-----------------------------------------------------------------     
82         void ColorBar::bbUserInitializeProcessing()
83         {
84         }
85         
86         //-----------------------------------------------------------------     
87         void ColorBar::bbUserFinalizeProcessing()
88         {
89         }
90         
91         //-----------------------------------------------------------------     
92         
93
94 }
95 // EO namespace bbcreaMaracasVisu
96
97