From: eduardo.davila@creatis.insa-lyon.fr Date: Tue, 14 Jan 2025 08:51:18 +0000 (+0100) Subject: #3573 Bug Refresh windows X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=965a4856693470ccdba948d8c705887a86ec89fe;p=creaMaracasVisu.git #3573 Bug Refresh windows --- diff --git a/bbtk/src/bbmaracasvisuShowNPoints.cxx b/bbtk/src/bbmaracasvisuShowNPoints.cxx index 279dc97..92de7f0 100644 --- a/bbtk/src/bbmaracasvisuShowNPoints.cxx +++ b/bbtk/src/bbmaracasvisuShowNPoints.cxx @@ -116,15 +116,18 @@ void ShowNPoints::Process() // if (firsttime==true) // { // firsttime=false; - if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==false ) + if (onshowwidget==true) { - mwxwidget->DetectCollectionActive(); - } - if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==true ) - { - mwxwidget->GetModelShowNPoints()->SetFirstTime(false); - mwxwidget->SetInitLstPoints( bbGetInputInitLstPointsX() , bbGetInputInitLstPointsY() , bbGetInputInitLstPointsZ() , bbGetInputInitLstLabels() , bbGetInputInitLstIndexs() ); - } + if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==false ) + { + mwxwidget->DetectCollectionActive(); + } + if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==true ) + { + mwxwidget->GetModelShowNPoints()->SetFirstTime(false); + mwxwidget->SetInitLstPoints( bbGetInputInitLstPointsX() , bbGetInputInitLstPointsY() , bbGetInputInitLstPointsZ() , bbGetInputInitLstLabels() , bbGetInputInitLstIndexs() ); + } + } // if onshowwidget // } // firsttime OJO machete Eduardo pour ANDREAS a verificar mwxwidget->AutoAddPoints(); mwxwidget->TrackingPoint(); @@ -150,6 +153,7 @@ void ShowNPoints::CreateWidget(wxWindow* parent) //----------------------------------------------------------------- void ShowNPoints::OnShowWidget() { + onshowwidget=true; printf("EED ShowNPoints::OnShowWidget\n"); mwxwidget->SetRenderer( bbGetInputRenderer() ); mwxwidget->SetInitLstPoints( bbGetInputInitLstPointsX() , bbGetInputInitLstPointsY() , bbGetInputInitLstPointsZ() , bbGetInputInitLstLabels() , bbGetInputInitLstIndexs() ); @@ -158,6 +162,7 @@ void ShowNPoints::OnShowWidget() //----------------------------------------------------------------- void ShowNPoints::bbUserSetDefaultValues() { + onshowwidget= false; firsttime = true; backOpacity = -1; mwxwidget = NULL; diff --git a/bbtk/src/bbmaracasvisuShowNPoints.h b/bbtk/src/bbmaracasvisuShowNPoints.h index 7c709a0..0f4277f 100644 --- a/bbtk/src/bbmaracasvisuShowNPoints.h +++ b/bbtk/src/bbmaracasvisuShowNPoints.h @@ -87,8 +87,9 @@ class /*BBTK_EXPORT*/ ShowNPoints void CreateWidget(wxWindow*); double backOpacity; - BBTK_ON_SHOW_WIDGET(OnShowWidget); - void OnShowWidget(); + BBTK_ON_SHOW_WIDGET(OnShowWidget); + void OnShowWidget(); + bool onshowwidget; private: bool firsttime;