X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxGEditorTabPanel.h;h=59d615e3f6801f38bd451987dd5b4244352fb31e;hb=713c6f1f54a2114c6e495aa6974d33b5718b46b5;hp=833096967aad41365189bccaa614c44f590c3f91;hpb=e581dbc8bf451bedae77aec3d46ef174e9063086;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h index 8330969..59d615e 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h @@ -57,10 +57,7 @@ Version: $Revision$ #include //Includes std -#include - - - +#include namespace bbtk { @@ -95,16 +92,33 @@ namespace bbtk // Saves the actual BBS as complex box // RaC TOFIX It must be included the package of the complex box - std::string saveComplexBoxBBS(std::string cbName,std::string paName,std::string cbAuthor="",std::string cbCategory="",std::string cbDescription=""); + std::string saveComplexBoxBBS(); // Shows the dialog to edit black box parameters 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); @@ -135,16 +149,41 @@ namespace bbtk // Receives the string from a drag and drop source as for example the BBTK Package Browser virtual bool OnDropText(wxCoord x, wxCoord y, const wxString& data); - 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(); + std::string GetDescription(); + std::string GetCategory(); + + + //========================================================================= 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; wxVtkSceneManager *_sceneManager; wxTabPanelsManager *_panelsManager; + std::string _fullPath; + std::string _fileName; protected: