]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
Changes for saveAs button
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.cxx
index 1002c606018538aa837eeec8f3227a4f1f99c7e9..c44979971df2db8c622a96829e34ebe89070aecb 100644 (file)
@@ -49,11 +49,13 @@ 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");
        }
 
        //=========================================================================
@@ -63,12 +65,16 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
 //ED02JUIN2010         _sceneManager->disconnectDrop();
 
         _panelsManager->VerifyLastTabPanel();
+               //FCY memory leaks
+               delete _panelAUIMgr;
+               delete _sceneManager;
 
        }
 
        //=========================================================================
        void wxGEditorTabPanel::initWxVtkCanvas()
        {
+printf("EED wxGEditorTabPanel::initWxVtkCanvas 0\n");
                wxVtk3DBaseView *baseview = new wxVtk3DBaseView(this);
                baseview->Configure();
                _sceneManager=new wxVtkSceneManager(this,baseview,_id);
@@ -79,6 +85,7 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
                _panelAUIMgr->AddPane((wxWindow*)baseview->GetWxVTKRenderWindowInteractor(),wxAuiPaneInfo().Fixed().CenterPane());
 
                _panelAUIMgr->Update();
+printf("EED wxGEditorTabPanel::initWxVtkCanvas 1\n");
        }
 
        //=========================================================================
@@ -135,9 +142,9 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
 
        //=========================================================================
 
-       std::string wxGEditorTabPanel::saveComplexBoxBBS(std::string cbName, std:string paName,std::string cbAuthor,std::string cbCategory,std::string cbDescription)
+       std::string wxGEditorTabPanel::saveComplexBoxBBS()
        {
-               return _sceneManager->saveComplexBoxBBS(cbName,paName,cbAuthor,cbCategory,cbDescription);
+               return _sceneManager->saveComplexBoxBBS();
        }
 
        //=========================================================================
@@ -158,13 +165,19 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
 
        void wxGEditorTabPanel::centerView()
        {
-               _sceneManager->centerView();
+               if(_sceneManager)
+               {
+                       _sceneManager->centerView();
+               }
        }
 
        //=========================================================================
 
        void wxGEditorTabPanel::saveDiagram(std::string &content)
        {
+               this->SetFullPath(content);
+               std::cout<<"wxGEditorTabPanel: " << content <<std::endl;
+               //std::cout<<"wxGEditorTabPanel Real: " << this->_fullPath <<std::endl;
                _sceneManager->saveDiagram(content);
        }
 
@@ -239,6 +252,96 @@ printf ("EED %p ~wxGEditorTabPanel()\n" , this );
                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 );
+    }
+    //=========================================================================
+       //DFCH
+       void wxGEditorTabPanel::SetFullPath( const std::string& fullpath )
+       {
+               this->_fullPath = fullpath;
+       }
+       //=========================================================================
+       //DFCH
+       void wxGEditorTabPanel::SetFileName( const std::string& filename )
+       {
+               this->_fileName = filename;
+       }
+       //=========================================================================
+       //DFCH
+       std::string wxGEditorTabPanel::GetFullPath( )
+       {
+               return( this->_fullPath );
+       }
+       //=========================================================================
+       //DFCH
+    std::string wxGEditorTabPanel::GetFileName( )
+    {
+               return( this->_fileName );
+       }
+
+
+
 
 }  // EO namespace bbtk