X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxGEditorTabPanel.h;h=9415e26131c12b4031c198593594f402289b4860;hb=36a0d24cb1d01a0f0c6010a18ec09874e6331fd5;hp=db615aa629274b7263137abc85020f446f7f6469;hpb=04884fa171fe877e5c2ca53d11d6838bc1f8a8f7;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h index db615aa..9415e26 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h @@ -1,3 +1,28 @@ +/* +# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Santé) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ +*/ + /*========================================================================= Program: bbtk Module: $RCSfile$ @@ -79,7 +104,7 @@ namespace bbtk { public: wxGEditorTabPanel(); - wxGEditorTabPanel(wxWindow *parent, int id); + wxGEditorTabPanel(wxWindow *parent, int id, Factory::Pointer bbtkfactory); ~wxGEditorTabPanel(); void initWxVtkCanvas(); @@ -101,19 +126,24 @@ namespace bbtk void saveDiagram(std::string &content, const std::string &path); //DFCH // Save temporary diagram as BBG - void saveTempDiagram(); + 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, 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(); + unsigned short getUndoState(std::string &); // evaluate the position in the redo actions list - unsigned short getRedoState(); + unsigned short getRedoState(std::string &); // Add a new complex input object to the scene void addComplexInputPort(std::string portName); @@ -153,6 +183,8 @@ namespace bbtk void SetAuthor(std::string author); void SetCategory(std::string category); void SetDescription(std::string description); + void SetMessageKind(std::string kind); + void SetMessageLevel(std::string level); //Getters std::string GetFullPath( ); std::string GetFileName( ); @@ -162,14 +194,16 @@ namespace bbtk std::string GetAuthor(); std::string GetDescription(); std::string GetCategory(); - - + std::string GetMessageKind(); + std::string GetMessageLevel(); //========================================================================= private: - std::vector states; // represents each modification of the tab. Maxixum size 100!! + 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; @@ -177,8 +211,9 @@ namespace bbtk wxTabPanelsManager *_panelsManager; std::string _fullPath; std::string _fileName; - + protected: + Factory::Pointer _bbtkfactory; };