]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbmaracasvisuPlotterView.cxx
4f3f520e30a41024dd055f07aaf02bec1cc20c5d
[creaMaracasVisu.git] / bbtk / src / bbmaracasvisuPlotterView.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 "bbmaracasvisuPlotterView.h"
27 #include "bbcreaMaracasVisuPackage.h"
28
29 #include "pPlotterScaleX.h"
30 #include "pPlotterScaleY.h"
31
32
33 namespace bbcreaMaracasVisu
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,PlotterView)
37 BBTK_BLACK_BOX_IMPLEMENTATION(PlotterView,bbtk::WxBlackBox);
38
39 //---------------------------------------------------
40 void PlotterView::Process()
41 {
42                         
43         if (bbGetInputInX().size()==bbGetInputInY().size() ) {
44
45                 pGraphicalFunction *pGF  = mwxwidget->getFunction(0);
46                 pGraphicalFunction *pGF2 = mwxwidget->getFunction(1);
47
48
49         // EED 2020-01-22
50                 if (pGF!=NULL)  
51                 { 
52                         // -Erasing  points-
53                         int i,sizePoints                = pGF->getSizePoints();
54                         for (i=1; i<sizePoints;i++)
55                         {
56         //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
57         #if wxMAJOR_VERSION <= 2
58                                 pGF->deletePointAt(1);   //  EED here NOT 0 is 1
59         #else
60                                 pGF->deletePointAt(0);   //  EED here NOT 0 is 1
61         #endif
62                         } // for i
63                         mwxwidget->deleteFunction(pGF);  
64                         pGF=NULL;  
65                 }
66         // EED 2020-01-22
67                 if (pGF2!=NULL) 
68                 { 
69                         // -Erasing  points-
70                         int i,sizePoints                = pGF2->getSizePoints();
71                         for (i=0; i<sizePoints;i++)
72                         {
73         //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
74         #if wxMAJOR_VERSION <= 2
75                                 pGF2->deletePointAt(1);   //  EED here NOT 0 is 1
76         #else
77                                 pGF2->deletePointAt(0);   //  EED here NOT 0 is 1
78         #endif
79                         } // for i
80                         mwxwidget->deleteFunction(pGF2); 
81                         pGF2=NULL; 
82                 }
83
84
85                 
86                         if ( (bbGetInputInY().size()!=0) && (pGF==NULL) )               
87                         {
88                                 // avoid 'taking address of temporary '
89                                 //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx
90                         
91                                 std::vector<double> inX;
92                                 if (bbGetInputInX().size()==0)
93                                 {
94                                         int i,size=bbGetInputInY().size();
95                                         for(i=0;i<size;i++)
96                                         {
97                                                 inX.push_back((double)i);
98                                         } // for
99                                 } else {
100                                         inX = bbGetInputInX();
101                                 } // if bbGetInputInX
102                                 std::vector<double> inY = bbGetInputInY();
103                          
104                                 pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); 
105                                 mwxwidget->addFunction(pGF);            
106                         } // if bbGetInputInY
107
108                         if ((bbGetInputInY2().size()!=0)&& (pGF2==NULL)         )
109                         {
110                                 // avoid 'taking address of temporary '
111                                 //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx
112                         
113                                 std::vector<double> inX2;
114                                 if (bbGetInputInX().size()==0)
115                                 {
116                                         int i,size=bbGetInputInY2().size();
117                                         for(i=0;i<size;i++)
118                                         {
119                                                 inX2.push_back((double)i);
120                                         } // for
121                                 } else {
122                                         inX2 = bbGetInputInX();
123                                 } // if bbGetInputInX
124                                 std::vector<double> inY2 = bbGetInputInY();
125                                 pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 ); 
126                                 mwxwidget->addFunction(pGF2);           
127                         } // if bbGetInputInY
128                         
129                 
130         /* EED 2020-01-22
131
132                 if (pGF!=NULL)  
133                 {
134                         // -Erasing  points-
135                         int i,sizePoints                = pGF->getSizePoints();
136                         for (i=1; i<sizePoints;i++)
137                         {
138                                 pGF->deletePointAt(1);  //  EED here NOT 0 is 1
139                         } // for i
140                         // -Add Points-
141                         double px;
142                         sizePoints=bbGetInputInY().size();
143                         for (i=0; i<sizePoints;i++)
144                         {
145                                 if (i<bbGetInputInX().size())
146                                 {
147                                         px = bbGetInputInX()[i]; 
148                                 } else {
149                                         px = i;
150                                 }       
151                                 pGF->AddNewPoint( px, bbGetInputInY()[i] );
152                         }               
153                 }// if pGF
154
155                 if (pGF2!=NULL) 
156                 {
157                         // -Erasing  points-
158                         int i,sizePoints                = pGF2->getSizePoints();
159                         for (i=0; i<sizePoints;i++)
160                         {
161         //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
162         #if wxMAJOR_VERSION <= 2
163                                 pGF2->deletePointAt(1);   //  EED here NOT 0 is 1
164         #else
165                                 pGF2->deletePointAt(0);   //  EED here NOT 0 is 1
166         #endif
167                         } // for i
168                         // -Add Points-
169                         double px;
170                         sizePoints=bbGetInputInY2().size();
171                         for (i=0; i<sizePoints;i++)
172                         {
173                                 if (i<bbGetInputInX().size())
174                                 {
175                                         px = bbGetInputInX()[i]; 
176                                 } else {
177                                         px = i;
178                                 }       
179                                 pGF2->AddNewPoint( px, bbGetInputInY2()[i] );
180                         }  // for       
181                 }// if pGF
182         */
183
184                 mwxwidget->UpdateAll();
185
186         } else {
187                 printf("EED Warnning... PlotterView::Process()   Size of vecto X and Y is not coherent.\n");
188         } // InX.size InY.size
189
190 }
191
192         
193 //---------------------------------------------------
194 void PlotterView::CreateWidget(wxWindow* parent)
195 {
196         bbtkDebugMessageInc("Core",9,"PlotterView::CreateWxWindow()"<<std::endl);
197         mwxwidget = new pPlotterWindow( parent , -1,wxDefaultPosition,  wxDefaultSize,  0 );
198         mwxwidget->AddLayer(new pPlotterScaleX());
199         mwxwidget->AddLayer(new pPlotterScaleY());
200         mwxwidget->setMinScrY(0);
201         mwxwidget->setMaxScrY(5000);
202         bbtkDebugDecTab("Core",9);
203         bbSetOutputWidget( mwxwidget );
204 }
205
206 //---------------------------------------------------
207 void PlotterView::bbUserSetDefaultValues()
208 {
209         mwxwidget = NULL;
210 }
211         
212         //-----------------------------------------------------------------     
213         void PlotterView::bbUserInitializeProcessing()
214         {
215         }
216         
217         //-----------------------------------------------------------------     
218         void PlotterView::bbUserFinalizeProcessing()
219         {
220         }
221         
222         //-----------------------------------------------------------------     
223
224 }
225 // EO namespace bbcreaMaracasVisu
226
227