X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxGEditorTabPanel.h;h=db615aa629274b7263137abc85020f446f7f6469;hb=806f5f22eb6e0e3d33e9f5e63efc13bd16d616a7;hp=43d4a193877e86e4c1ed32f782fc73d03cff366f;hpb=7a77e00abe30e71c3a97f7a43b106c999ce9db87;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h index 43d4a19..db615aa 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h @@ -57,7 +57,7 @@ Version: $Revision$ #include //Includes std -#include +#include namespace bbtk { @@ -98,10 +98,22 @@ 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 + void loadTempDiagram(unsigned short un); + + // evaluate the position in the undo actions list + unsigned short getUndoState(); + + // evaluate the position in the redo actions list + unsigned short getRedoState(); // Add a new complex input object to the scene void addComplexInputPort(std::string portName); @@ -134,12 +146,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(); @@ -151,11 +168,15 @@ namespace bbtk //========================================================================= private: + std::vector states; // represents each modification of the tab. Maxixum size 100!! + std::vector::iterator _actualdo; // actual position on modifications vector int _id; wxAuiManager *_panelAUIMgr; wxVtkSceneManager *_sceneManager; wxTabPanelsManager *_panelsManager; + std::string _fullPath; + std::string _fileName; protected: