]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
*** empty log message ***
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.cxx
index 0fba89580e3036470a7aaf962e3a5a36cb6f57f1..7b9736e259d56fb183f6a5952a1b6b9c840ee1ed 100644 (file)
@@ -39,25 +39,28 @@ Version:   $Revision$
 
 namespace bbtk
 {
+
        //=========================================================================
        wxGEditorTabPanel::wxGEditorTabPanel()
        {
+               printf ("EED %p wxGEditorTabPanel 1 ()\n" , this );
        }
 
        //=========================================================================
        wxGEditorTabPanel::wxGEditorTabPanel(wxWindow *parent,int id):wxPanel(parent),wxTextDropTarget()
        {
+               printf ("EED %p wxGEditorTabPanel 2 ()\n" , this );
                _id=id;
                _panelAUIMgr = new wxAuiManager(this);
                _sceneManager = NULL;
-
                initWxVtkCanvas();
        }
 
        //=========================================================================
        wxGEditorTabPanel::~wxGEditorTabPanel()
        {
-               _sceneManager->disconnectDrop();
+printf ("EED %p ~wxGEditorTabPanel()\n" , this );
+//ED02JUIN2010         _sceneManager->disconnectDrop();
        }
        
        //=========================================================================
@@ -65,10 +68,10 @@ namespace bbtk
        {
                wxVtk3DBaseView *baseview = new wxVtk3DBaseView(this);
                baseview->Configure();
-
                _sceneManager=new wxVtkSceneManager(this,baseview,_id);
-
                _panelAUIMgr->AddPane((wxWindow*)baseview->GetWxVTKRenderWindowInteractor(),wxAuiPaneInfo().Fixed().CenterPane());
+//EED02JUIN2010
+
                _panelAUIMgr->Update();
        }
 
@@ -119,9 +122,16 @@ namespace bbtk
 
        //=========================================================================
 
-       std::string wxGEditorTabPanel::getDiagramScript()
+       std::string wxGEditorTabPanel::getDiagramBBS()
+       {
+               return _sceneManager->getDiagramBBS();
+       }
+
+       //=========================================================================
+
+       std::string wxGEditorTabPanel::saveComplexBoxBBS(std::string cbName,std::string cbAuthor,std::string cbCategory,std::string cbDescription)
        {
-               return _sceneManager->getDiagramScript();
+               return _sceneManager->saveComplexBoxBBS(cbName,cbAuthor,cbCategory,cbDescription);
        }
 
        //=========================================================================
@@ -168,6 +178,62 @@ namespace bbtk
 
        //=========================================================================
 
+       int wxGEditorTabPanel::getPanelId()
+       {
+               return _id;
+       }
+
+       //=========================================================================
+
+       bool wxGEditorTabPanel::isComplexBox()
+       {
+               return _sceneManager->isComplexBox();
+       }
+
+       //=========================================================================
+
+       void wxGEditorTabPanel::setComplexBox(bool val)
+       {
+               _sceneManager->setComplexBox(val);
+       }
+
+       //=========================================================================
+
+       void wxGEditorTabPanel::addComplexInputPort(std::string portName)
+       {
+               _sceneManager->createGComplexBoxInputPort(portName);
+       }
+
+       //=========================================================================
+
+       void wxGEditorTabPanel::addComplexOutputPort(std::string portName)
+       {
+               _sceneManager->createGComplexBoxOutputPort(portName);
+       }
+
+       //=========================================================================
+       
+       std::map<int,GObjectController*> wxGEditorTabPanel::getSelectedObjects()
+       {
+               return _sceneManager->getSelectedObjects();
+       }
+
+       //=========================================================================
+
+       void wxGEditorTabPanel::addObjects(std::map<int,GObjectController*> objectsMap)
+       {
+               _sceneManager->addObjects(objectsMap);
+       }
+
+       //=========================================================================     
+       
+       int wxGEditorTabPanel::getNumSelectedObjects()
+       {
+               return _sceneManager->getNumSelectedObjects();
+       }
+
+       //=========================================================================     
+
 }  // EO namespace bbtk
 
 // EOF