]> Creatis software - bbtkGEditor.git/commitdiff
#3254 Bug windows select manual box
authorEduardo Enrique Davila Serrano <davila@creatis.insa-lyon.fr>
Mon, 23 Jan 2023 13:41:49 +0000 (14:41 +0100)
committerEduardo Enrique Davila Serrano <davila@creatis.insa-lyon.fr>
Mon, 23 Jan 2023 13:41:49 +0000 (14:41 +0100)
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h
lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.cxx

index ed9d80c336f5ab73cfffbae33ad24a2dc8dabd7f..ec42a2c2e33e283392c916998369eb4e86187d5f 100644 (file)
@@ -1199,8 +1199,8 @@ void wxGUIEditorGraphicBBS::OnClickBtnBox(wxCommandEvent& event)
 //2022-10-28
 void wxGUIEditorGraphicBBS::OnClickBtnSelectBoxes(wxCommandEvent& event)
 {
-    std::string nameFilter = _pkgBrowser->GetNameFilter();
-    _tabsMgr->SelectBoxWithPossibleName( nameFilter );
+   std::string nameFilter = _pkgBrowser->GetNameFilter();
+   _tabsMgr->SelectBoxWithPossibleName( nameFilter );
 }
 
 //=========================================================================
index 6c5dfe583a3647e5bf4b764c1262ac8f4950ef18..098d888a014d3203b1b06dd02b42af7b8e87189b 100644 (file)
@@ -608,7 +608,7 @@ printf("EED wxGEditorTabPanel::getUndoState This mecanisme is not working  ?????
 
     //=========================================================================
     // EED 2022-10-28
-    bool wxGEditorTabPanel::SelectBoxWithPossibleName(std::string nameFilter )
+    void wxGEditorTabPanel::SelectBoxWithPossibleName(std::string nameFilter )
     {
         getSceneManager()->SelectBoxWithPossibleName( nameFilter );
     }
index 4519b55e839d7984c5a0458f2c2b7681217924da..824030ae67ebd5ba6ae327a83fa0120c4f9747bd 100644 (file)
@@ -196,7 +196,7 @@ namespace bbtk
                std::string GetMessageKind();
         std::string GetMessageLevel();
 
-        bool SelectBoxWithPossibleName(std::string nameFilter );
+        void SelectBoxWithPossibleName(std::string nameFilter );
 
        //=========================================================================
 
index ec69b81ae4b0523a5c462749855b3e5182fd7a0f..de51abcf4a57e4b43dfa66ef6a5968c1838a7ab2 100644 (file)
@@ -438,9 +438,9 @@ namespace bbtk
        
     //=========================================================================
     // EED 2022-10-28
-    bool wxTabPanelsManager::SelectBoxWithPossibleName(std::string nameFilter )
+    void wxTabPanelsManager::SelectBoxWithPossibleName(std::string nameFilter )
     {
-        _actual->SelectBoxWithPossibleName( nameFilter );
+       _actual->SelectBoxWithPossibleName( nameFilter );
     }
 
 }  // EO namespace bbtk
index add57450778ddd1d77e2d48eae412fe7f42fe5b0..6608c0325995966c8c11cf1c970fa8bee49e361e 100644 (file)
@@ -156,7 +156,7 @@ namespace bbtk
            std::string GetCurrentTabPanelPath( ); //DFCH
            int  FindTab(std::string filename);
                bool TryToOpenScriptApplication(std::string packageName ,std::string boxType);
-        bool SelectBoxWithPossibleName(std::string nameFilter );
+        void SelectBoxWithPossibleName(std::string nameFilter );
         
        private:
 
index f1a057f33b9626515c38b57aa274014fd5028bae..6684df147262a642dcd5d4a33ef4ab30588cbef0 100644 (file)
@@ -3144,7 +3144,7 @@ void wxVtkSceneManager::printAll(int com , int sta )
 //=========================================================================
 //EED 2022-10-28
 void wxVtkSceneManager::SelectBoxWithPossibleName( std::string possibleName )
-{
+{ 
     UnSelectBlackBoxes();
     std::map<int, GObjectController*>::iterator it;
     GObjectController                           *desc;
@@ -3181,7 +3181,7 @@ void wxVtkSceneManager::SelectBoxWithPossibleName( std::string possibleName )
             } // if pos
         } // if type == 1
     } // for it
-    refresh();
+    refresh(); 
 }
 
 } // EO namespace bbtk