From b9f4da542aad52e2766de412ca2b83595dacee24 Mon Sep 17 00:00:00 2001 From: davila Date: Wed, 13 Nov 2024 07:41:47 +0100 Subject: [PATCH] Clean code --- bbtk/src/bbmaracasvisuViewerNV.cxx | 20 ++++++++++++------- .../widgets/wxMaracas_N_ViewersWidget.cxx | 6 +++++- .../wxWindows/widgets/wxVtk2DBaseView.cxx | 1 + 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/bbtk/src/bbmaracasvisuViewerNV.cxx b/bbtk/src/bbmaracasvisuViewerNV.cxx index 0c63bec..263617f 100644 --- a/bbtk/src/bbmaracasvisuViewerNV.cxx +++ b/bbtk/src/bbmaracasvisuViewerNV.cxx @@ -69,16 +69,18 @@ void bbwxMaracas_N_ViewersWidget::OnRefreshView(wxCommandEvent & event) mbbViewerNV->_point.push_back( (int)GetY() ); mbbViewerNV->_point.push_back( (int)GetZ() ); mbbViewerNV->bbSetOutputPoint( mbbViewerNV->_point ); - bool ok=true; +// bool ok=true; //ED2024-11-01 // if (mbbViewerNV->bbGetInputReactivityType()==0) { ok=false; } // mbbViewerNV->bbSignalOutputModification(std::string("Point"),ok); - if (mbbViewerNV->bbGetInputReactivityType()==1) - { - mbbViewerNV->bbSignalOutputModification(std::string("Point"),true); - } // if type + if (mbbViewerNV->bbGetInputReactivityType()==1) + { + mbbViewerNV->bbSignalOutputModification(std::string("Point"),true); + } // if type } // if X Y Z + wxMaracas_N_ViewersWidget::OnRefreshView(event); + } //------------------------------------------------------------- @@ -175,8 +177,12 @@ void ViewerNV::Process() void ViewerNV::CreateWidget(wxWindow* parent) { bbtkDebugMessageInc("Core",9,"ViewerNV::CreateWidget()"<SetAutoLayout(true); +// _mwxwidget->Layout(); + bbSetOutputWidget( _mwxwidget ); //this->bbSignalOutputModification(); //Process(); diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.cxx index 4d0d87c..80621ad 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxMaracas_N_ViewersWidget.cxx @@ -306,7 +306,10 @@ //panel->SetDimension() sizer->Add( wxwindow , 1, wxGROW); - sizer->Layout(); + +//EED 2024-11-13 +// sizer->Layout(); + //_currentwxw = wxwindow; //_currentwxw->Show(true); @@ -318,6 +321,7 @@ if (wxwindow3!=NULL) {wxwindow3->ConfigureVTK(); } if (wxwindow2!=NULL) {wxwindow2->ConfigureVTK(); } if (wxwindow1!=NULL) {wxwindow1->ConfigureVTK(); } + } diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtk2DBaseView.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtk2DBaseView.cxx index b96c58a..daea638 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtk2DBaseView.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtk2DBaseView.cxx @@ -189,6 +189,7 @@ void wxVtk2DBaseView::Configure(bool okimage) // SetInteractorStyleImage( vtkInteractorStyleBaseView2D::New() ); // // Actual version + vtkInteractorStyleBaseView2D *style2D = vtkInteractorStyleBaseView2D::New(); manualInteractorWindowLevel *_manualinteractorwindowlevel= new manualInteractorWindowLevel(); -- 2.49.0