]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx
Feature #1347
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxTabPanelsManager.cxx
index e00c12e9ba1f6ce229886c89765462ef9450e5ff..2e5c4eedf032c02e7095fefaa886384f93a60ff2 100644 (file)
@@ -132,16 +132,26 @@ printf("EED wxTabPanelsManager::addNewTab 1\n");
 
        //=========================================================================
 
-       void wxTabPanelsManager::saveActualDiagram(std::string &content)
+       void wxTabPanelsManager::saveActualDiagram(std::string &content, const std::string &path) //DFCH
        {
-               _actual->saveDiagram(content);
+               _actual->saveDiagram(content, path);
        }
 
        //=========================================================================
 
-       void wxTabPanelsManager::loadDiagram(ifstream &inputStream)
+       void wxTabPanelsManager::loadDiagram(ifstream &inputStream, const std::string &path) //DFCH
        {
-               _actual->loadDiagram(inputStream);
+               _actual->loadDiagram(inputStream, path);
+       }
+       //=========================================================================
+       void wxTabPanelsManager::saveTempActualDiagram() //FCY
+       {
+               _actual->saveTempDiagram();
+       }
+       //=========================================================================
+       unsigned short wxTabPanelsManager::loadTempDiagram(unsigned short un) //FCY
+       {
+               return _actual->loadTempDiagram(un);
        }
 
        //=========================================================================