]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h
Bug #1362, Bug #1361
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.h
index 2ccf32d3afc57e8f31b93a66380aec33ad84c17f..d305732e9b17a70d4d5736a6fe497fa8c7b0a0b4 100644 (file)
@@ -57,10 +57,7 @@ Version:   $Revision$
 #include <wxVtk3DBaseView.h>
 
 //Includes std
-#include <iostream>
-
-
-
+#include <fstream>
 
 namespace bbtk
 {
@@ -101,10 +98,16 @@ namespace bbtk
                void editBlackBox(GBlackBoxModel *bbmodel);
 
                // Save diagram as BBG
-               void saveDiagram(std::string &content);
+               void saveDiagram(std::string &content, const std::string &path); //DFCH
+
+               // Save temporary diagram as BBG
+               void saveTempDiagram();
 
                // Load BBG diagram
-               void loadDiagram(ifstream &inputStream);
+               void loadDiagram(ifstream &inputStream, const std::string &path); //DFCH
+
+               // Load temporary diagram as BBG
+               unsigned short  loadTempDiagram(unsigned short un);
 
                // Add a new complex input object to the scene
                void addComplexInputPort(std::string portName);
@@ -137,12 +140,17 @@ namespace bbtk
 
                wxVtkSceneManager* getSceneManager();
 
-
+               void SetFullPath( const std::string& );
+               void SetFileName( const std::string& );
                void SetCbName(std::string cbName);
         void SetCbPackageName(std::string packagename);
         void SetAuthor(std::string author);
         void SetCategory(std::string category);
         void SetDescription(std::string description);
+        //Getters
+        std::string GetFullPath( );
+        std::string GetFileName( );
+        
         std::string GetCbName();
         std::string GetCbPackageName();
         std::string GetAuthor();
@@ -154,11 +162,15 @@ namespace bbtk
        //=========================================================================
 
        private:
+               std::vector<std::string> states; // represents each modification of the tab. Maxixum size 100!!
+               std::vector<std::string>::iterator _actualdo;   // actual position on modifications vector
 
                int                                             _id;
                wxAuiManager                    *_panelAUIMgr;
                wxVtkSceneManager               *_sceneManager;
                wxTabPanelsManager              *_panelsManager;
+               std::string                             _fullPath;
+               std::string                             _fileName;
 
        protected: