X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=bbtk%2Fsrc%2FbbmaracasvisuPlotterView.cxx;h=5023801c481565e15186f608aecbce50656dacb4;hb=a7017a8ade695bd14a4c7ee70b197d63b5e76765;hp=283c17365ea39f8678a3c3f1d0776e1f2edb0d82;hpb=8d16c7dcdb395bae016258547ad7652a01b310b6;p=creaMaracasVisu.git diff --git a/bbtk/src/bbmaracasvisuPlotterView.cxx b/bbtk/src/bbmaracasvisuPlotterView.cxx index 283c173..5023801 100644 --- a/bbtk/src/bbmaracasvisuPlotterView.cxx +++ b/bbtk/src/bbmaracasvisuPlotterView.cxx @@ -1,3 +1,28 @@ +/*# --------------------------------------------------------------------- +# +# 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. +# ------------------------------------------------------------------------ */ + #include "bbmaracasvisuPlotterView.h" #include "bbcreaMaracasVisuPackage.h" @@ -14,53 +39,128 @@ BBTK_BLACK_BOX_IMPLEMENTATION(PlotterView,bbtk::WxBlackBox); //--------------------------------------------------- void PlotterView::Process() { +// if (firsttime==true) +// { +// firsttime=false; + - if (firsttime==true) - { - firsttime=false; - std::vector inX; + printf("EED PlotterView::Process %d %d \n ", bbGetInputInY().size(),bbGetInputInY2().size()); + + pGraphicalFunction *pGF = mwxwidget->getFunction(0); + pGraphicalFunction *pGF2 = mwxwidget->getFunction(1); + + if ( (bbGetInputInY().size()!=0) && (bbGetInputInY2().size()==0) ) + { + bbSetInputInY2( bbGetInputInY() ); + } + + if ( (bbGetInputInY().size()!=0) && (pGF==NULL) ) + { + // avoid 'taking address of temporary ' + //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx - // avoid 'taking address of temporary ' - //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx - if (bbGetInputInX().size()==0) + std::vector inX; + if (bbGetInputInX().size()==0) + { + int i,size=bbGetInputInY().size(); + for(i=0;i inY = bbGetInputInY(); + + /* + std::vector inX; + std::vector inY; + inX.push_back(0); inX.push_back(200); + inY.push_back(0); inY.push_back(1); + */ + pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); + mwxwidget->addFunction(pGF); + } // if bbGetInputInY + + if ((bbGetInputInY2().size()!=0)&& (pGF2==NULL) ) { - int i,size=bbGetInputInY().size(); - for(i=0;igetFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx + + std::vector inX2; + if (bbGetInputInX().size()==0) { - inX.push_back((double)i); - } - } else { - - inX = bbGetInputInX(); - } - std::vector inY = bbGetInputInY(); - pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); - mwxwidget->addFunction(pGF); - } - - + int i,size=bbGetInputInY2().size(); + for(i=0;i inY2 = bbGetInputInY(); + /* + std::vector inX2; + std::vector inY2; + inX2.push_back(0); inX2.push_back(200); + inY2.push_back(0); inY2.push_back(1); + */ + pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 ); + mwxwidget->addFunction(pGF2); + } // if bbGetInputInY + +// } // if firsttime - pGraphicalFunction *pGF = mwxwidget->getFunction(0); - int i,sizePoints = pGF->getSizePoints(); - for (i=0; ideletePointAt(i); - } - - double px; - sizePoints=bbGetInputInY().size(); - for (i=0; igetSizePoints(); + for (i=1; ideletePointAt(1); // EED here NOT 0 is 1 + } // for i + // -Add Points- + double px; + sizePoints=bbGetInputInY().size(); + for (i=0; iAddNewPoint( px, bbGetInputInY()[i] ); + } + }// if pGF + + + if (pGF2!=NULL) { - if (igetSizePoints(); + for (i=0; iAddNewPoint( px, bbGetInputInY()[i] ); - printf ("EED PlotterView::Process %f %f\n", px, bbGetInputInY()[i]); - } + pGF2->deletePointAt(1); // EED here NOT 0 is 1 + } // for i + // -Add Points- + double px; + sizePoints=bbGetInputInY2().size(); + for (i=0; iAddNewPoint( px, bbGetInputInY2()[i] ); + } + }// if pGF + mwxwidget->UpdateAll(); + + } @@ -72,7 +172,11 @@ void PlotterView::CreateWidget(wxWindow* parent) mwxwidget = new pPlotterWindow( parent , -1,wxDefaultPosition, wxDefaultSize, 0 ); mwxwidget->AddLayer(new pPlotterScaleX()); mwxwidget->AddLayer(new pPlotterScaleY()); - + + mwxwidget->setMinScrY(0); + mwxwidget->setMaxScrY(5000); + + bbtkDebugDecTab("Core",9); bbSetOutputWidget( mwxwidget ); }