X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxGEditorTabPanel.h;h=59d615e3f6801f38bd451987dd5b4244352fb31e;hb=903d81ba963c29711c61943671df8ebbcd7385c8;hp=e7eb55338344e9ebbb92b4f8b1d31c2cf4ac174f;hpb=16fc4e34641e9905a02dcf7277b21291a683d938;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h index e7eb553..59d615e 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,27 @@ 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(const std::string &); + + // Save temporary diagram as BBG and update buttons + void saveTempandUpdate(const std::string &); // Load BBG diagram - void loadDiagram(ifstream &inputStream); + void loadDiagram(ifstream &inputStream, const std::string &path); //DFCH + + void saveStringAction(const std::string &action); + + // Load temporary diagram as BBG + void loadTempDiagram(unsigned short un); + + // evaluate the position in the undo actions list + unsigned short getUndoState(std::string &); + + // evaluate the position in the redo actions list + unsigned short getRedoState(std::string &); // Add a new complex input object to the scene void addComplexInputPort(std::string portName); @@ -156,6 +173,10 @@ namespace bbtk //========================================================================= private: + std::vector states; // represents each modification of the tab. Maxixum size 100!! + std::vector::iterator _actualdo; // actual position on modifications vector + std::vector sstates; // represents string of each modification of the tab. Maxixum size 100!! + std::vector::iterator _sactualdo; // actual position onstring modifications vector int _id; wxAuiManager *_panelAUIMgr;