]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
This commit was manufactured by cvs2svn to create tag 'CREATOOLS_2-0-3'.
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.cxx
index c0255da5686e4dbc98eb685a8c84bf31bd895f07..4291597df0cc6b00e2caf375424b6f908adfd1c3 100644 (file)
@@ -49,13 +49,11 @@ namespace bbtk
        //=========================================================================
        wxGEditorTabPanel::wxGEditorTabPanel(wxWindow *parent,int id):wxPanel(parent),wxTextDropTarget()
        {
-printf("EED wxGEditorTabPanel::wxGEditorTabPanel 0\n");
                printf ("EED %p wxGEditorTabPanel 2 ()\n" , this );
                _id=id;
                _panelAUIMgr = new wxAuiManager(this);
                _sceneManager = NULL;
                initWxVtkCanvas();
-printf("EED wxGEditorTabPanel::wxGEditorTabPanel 1\n");
        }
 
        //=========================================================================
@@ -71,7 +69,6 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
        //=========================================================================
        void wxGEditorTabPanel::initWxVtkCanvas()
        {
-printf("EED wxGEditorTabPanel::initWxVtkCanvas 0\n");
                wxVtk3DBaseView *baseview = new wxVtk3DBaseView(this);
                baseview->Configure();
                _sceneManager=new wxVtkSceneManager(this,baseview,_id);
@@ -82,7 +79,6 @@ printf("EED wxGEditorTabPanel::initWxVtkCanvas 0\n");
                _panelAUIMgr->AddPane((wxWindow*)baseview->GetWxVTKRenderWindowInteractor(),wxAuiPaneInfo().Fixed().CenterPane());
 
                _panelAUIMgr->Update();
-printf("EED wxGEditorTabPanel::initWxVtkCanvas 1\n");
        }
 
        //=========================================================================
@@ -139,9 +135,9 @@ printf("EED wxGEditorTabPanel::initWxVtkCanvas 1\n");
 
        //=========================================================================
 
-       std::string wxGEditorTabPanel::saveComplexBoxBBS()
+       std::string wxGEditorTabPanel::saveComplexBoxBBS(std::string cbName,std::string cbAuthor,std::string cbCategory,std::string cbDescription)
        {
-               return _sceneManager->saveComplexBoxBBS();
+               return _sceneManager->saveComplexBoxBBS(cbName,cbAuthor,cbCategory,cbDescription);
        }
 
        //=========================================================================
@@ -243,76 +239,6 @@ printf("EED wxGEditorTabPanel::initWxVtkCanvas 1\n");
                return _sceneManager;
        }
 
-       //=========================================================================
-    std::string wxGEditorTabPanel::GetCbName()
-       {
-           return _sceneManager->GetCbName();
-       }
-
-
-       //=========================================================================
-    std::string wxGEditorTabPanel::GetCbPackageName()
-       {
-           return _sceneManager->GetCbPackageName();
-       }
-
-       //=========================================================================
-    std::string wxGEditorTabPanel::GetAuthor()
-       {
-           return _sceneManager->GetAuthor();
-       }
-
-       //=========================================================================
-    std::string wxGEditorTabPanel::GetDescription()
-       {
-           return _sceneManager->GetDescription();
-       }
-
-       //=========================================================================
-    std::string wxGEditorTabPanel::GetCategory()
-       {
-           return _sceneManager->GetCategory();
-       }
-
-       //=========================================================================
-    void wxGEditorTabPanel::SetCbName(std::string cbName)
-    {
-        _sceneManager->SetCbName( cbName );
-    }
-
-       //=========================================================================
-    void wxGEditorTabPanel::SetCbPackageName(std::string packagename)
-    {
-        _sceneManager->SetCbPackageName( packagename );
-    }
-
-
-       //=========================================================================
-    void wxGEditorTabPanel::SetAuthor(std::string author)
-    {
-        _sceneManager->SetAuthor( author );
-    }
-
-
-       //=========================================================================
-    void wxGEditorTabPanel::SetCategory(std::string category)
-    {
-        _sceneManager->SetCategory( category );
-    }
-
-
-       //=========================================================================
-    void wxGEditorTabPanel::SetDescription(std::string description)
-    {
-        _sceneManager->SetDescription( description );
-    }
-
-
-
-
-
-
-
 
 }  // EO namespace bbtk