From 3df6778f4c69e71f74ded335600d4e5fbcb36a51 Mon Sep 17 00:00:00 2001 From: Eduardo DAVILA Date: Fri, 24 Jan 2020 16:24:48 +0100 Subject: [PATCH] #3350 creaMaracasVisu Bug New Normal - box PlotterViewer Refresh --- bbtk/src/bbmaracasvisuPlotterView.cxx | 244 ++++++++++++++------------ bbtk/src/bbmaracasvisuPlotterView.h | 2 - 2 files changed, 135 insertions(+), 111 deletions(-) diff --git a/bbtk/src/bbmaracasvisuPlotterView.cxx b/bbtk/src/bbmaracasvisuPlotterView.cxx index af7cecc..4f3f520 100644 --- a/bbtk/src/bbmaracasvisuPlotterView.cxx +++ b/bbtk/src/bbmaracasvisuPlotterView.cxx @@ -39,127 +39,154 @@ BBTK_BLACK_BOX_IMPLEMENTATION(PlotterView,bbtk::WxBlackBox); //--------------------------------------------------- void PlotterView::Process() { -// if (firsttime==true) -// { -// firsttime=false; - pGraphicalFunction *pGF = mwxwidget->getFunction(0); - pGraphicalFunction *pGF2 = mwxwidget->getFunction(1); + if (bbGetInputInX().size()==bbGetInputInY().size() ) { + + pGraphicalFunction *pGF = mwxwidget->getFunction(0); + pGraphicalFunction *pGF2 = mwxwidget->getFunction(1); + + + // EED 2020-01-22 + if (pGF!=NULL) + { + // -Erasing points- + int i,sizePoints = pGF->getSizePoints(); + for (i=1; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + mwxwidget->deleteFunction(pGF); + pGF=NULL; + } + // EED 2020-01-22 + if (pGF2!=NULL) + { + // -Erasing points- + int i,sizePoints = pGF2->getSizePoints(); + for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF2->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + mwxwidget->deleteFunction(pGF2); + pGF2=NULL; + } + - 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 - std::vector inX; - if (bbGetInputInX().size()==0) + if ( (bbGetInputInY().size()!=0) && (pGF==NULL) ) { - int i,size=bbGetInputInY().size(); - for(i=0;igetFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx + + std::vector inX; + if (bbGetInputInX().size()==0) { - inX.push_back((double)i); - } // for - } else { - inX = bbGetInputInX(); - } // if bbGetInputInX - std::vector 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) ) - { - // avoid 'taking address of temporary ' - //pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx - - std::vector inX2; - if (bbGetInputInX().size()==0) + int i,size=bbGetInputInY().size(); + for(i=0;i inY = bbGetInputInY(); + + pGF = mwxwidget->getFunctionForVectors( &inX, &inY ); + mwxwidget->addFunction(pGF); + } // if bbGetInputInY + + if ((bbGetInputInY2().size()!=0)&& (pGF2==NULL) ) { - int i,size=bbGetInputInY2().size(); - for(i=0;igetFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); // taking address of temporary ! JPRx + + std::vector inX2; + if (bbGetInputInX().size()==0) { - inX2.push_back((double)i); - } // for - } else { - inX2 = bbGetInputInX(); - } // if bbGetInputInX - std::vector 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 + int i,size=bbGetInputInY2().size(); + for(i=0;i inY2 = bbGetInputInY(); + pGF2 = mwxwidget->getFunctionForVectors( &inX2, &inY2 ); + mwxwidget->addFunction(pGF2); + } // if bbGetInputInY + -// } // if firsttime + /* EED 2020-01-22 - - if (pGF!=NULL) - { - // -Erasing points- - int i,sizePoints = pGF->getSizePoints(); - for (i=1; ideletePointAt(1); // EED here NOT 0 is 1 - } // for i - // -Add Points- - double px; - sizePoints=bbGetInputInY().size(); - for (i=0; igetSizePoints(); + for (i=1; iAddNewPoint( px, bbGetInputInY()[i] ); - } - }// if pGF - - if (pGF2!=NULL) - { - // -Erasing points- - int i,sizePoints = pGF2->getSizePoints(); - for (i=0; ideletePointAt(1); // EED here NOT 0 is 1 -#else - pGF2->deletePointAt(0); // EED here NOT 0 is 1 -#endif - } // for i - // -Add Points- - double px; - sizePoints=bbGetInputInY2().size(); - for (i=0; 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; ideletePointAt(1); // EED here NOT 0 is 1 + #else + pGF2->deletePointAt(0); // EED here NOT 0 is 1 + #endif + } // for i + // -Add Points- + double px; + sizePoints=bbGetInputInY2().size(); + for (i=0; iAddNewPoint( px, bbGetInputInY2()[i] ); - } // for - }// if pGF - mwxwidget->UpdateAll(); + if (iAddNewPoint( px, bbGetInputInY2()[i] ); + } // for + }// if pGF + */ + + mwxwidget->UpdateAll(); + + } else { + printf("EED Warnning... PlotterView::Process() Size of vecto X and Y is not coherent.\n"); + } // InX.size InY.size + } @@ -180,7 +207,6 @@ void PlotterView::CreateWidget(wxWindow* parent) void PlotterView::bbUserSetDefaultValues() { mwxwidget = NULL; - firsttime=true; } //----------------------------------------------------------------- diff --git a/bbtk/src/bbmaracasvisuPlotterView.h b/bbtk/src/bbmaracasvisuPlotterView.h index e8b66c9..c65a727 100644 --- a/bbtk/src/bbmaracasvisuPlotterView.h +++ b/bbtk/src/bbmaracasvisuPlotterView.h @@ -48,8 +48,6 @@ class /*BBTK_EXPORT*/ PlotterView private: pPlotterWindow *mwxwidget; - bool firsttime; - }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(PlotterView,bbtk::WxBlackBox); -- 2.45.1