X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxTabPanelsManager.cxx;h=7998bc4e64c7f8292c7f88605e744419a85e2f49;hb=e36858ea5937bb1699bc437136718007df27be7b;hp=c9e748d3f854c32adb0f6fb57d52d696d47442fc;hpb=3babfd57a9b4b3cffba34415e928239592e7d4a1;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx index c9e748d..7998bc4 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx @@ -96,7 +96,54 @@ namespace bbtk //========================================================================= + std::string wxTabPanelsManager::getActualDiagramScript() + { + return _actual->getDiagramScript(); + } + + //========================================================================= + + void wxTabPanelsManager::editBlackBox(GBlackBoxModel *bbmodel) + { + _parent->editBlackBox(bbmodel); + } + + //========================================================================= + + void wxTabPanelsManager::editDiagramParameters(wxVtkSceneManager* scene) + { + _parent->editDiagramParameters(scene); + } + + //========================================================================= + + void wxTabPanelsManager::deleteAllBoxesActualDiagram() + { + _actual->deleteAllBoxes(); + } + //========================================================================= + + void wxTabPanelsManager::centerViewActualDiagram() + { + _actual->centerView(); + } + + //========================================================================= + + void wxTabPanelsManager::saveActualDiagram(std::string &content) + { + _actual->saveDiagram(content); + } + + //========================================================================= + + void wxTabPanelsManager::loadDiagram(ifstream &inputStream) + { + _actual->loadDiagram(inputStream); + } + + //========================================================================= } // EO namespace bbtk