X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxVtkSceneManager.h;h=fe5889c831a0ec357c4f3a2694a05dba54ee992e;hb=806f5f22eb6e0e3d33e9f5e63efc13bd16d616a7;hp=436903a3ed893a36cd11df5049735aec72e80a05;hpb=1f59084eb0a78ed4a3023cce89a179ea5e2c8a70;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.h index 436903a..fe5889c 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.h @@ -1,4 +1,4 @@ -/*========================================================================= +/*========================================================================= Program: bbtk Module: $RCSfile$ Language: C++ @@ -11,28 +11,28 @@ Version: $Revision$ * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux * -* 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 +* 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. +* 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. -* ------------------------------------------------------------------------ */ +* ------------------------------------------------------------------------ */ /** -* \file -* \brief Class bbtk::BlackBox : abstract black-box interface. +* \file +* \brief Class bbtk::BlackBox : abstract black-box interface. */ /**** @@ -74,20 +74,25 @@ Version: $Revision$ #include #include #include +#include +#include +#include + #include //Includes std #include +#include +#include #include - namespace bbtk { class wxGEditorTabPanel; class wxVtkSceneManager : public InteractorStyleMaracas , public Observer { - public: + public: wxVtkSceneManager(wxGEditorTabPanel *parent, wxVtk3DBaseView *baseView, int idManager); ~wxVtkSceneManager(); @@ -100,10 +105,12 @@ namespace bbtk virtual bool OnChar(); virtual bool OnMouseMove(); - virtual bool OnLeftButtonDown(); + virtual bool OnLeftButtonDown(); virtual bool OnLeftButtonUp(); virtual bool OnRightButtonUp(); virtual bool OnLeftDClick(); + virtual bool OnMiddleButtonDown(); ///JLGR 21-05-2012 + virtual bool OnMiddleButtonUp(); ///JLGR 21-05-2012 //------- int createGBlackBox(int x, int y, std::string packageName, std::string boxType ); @@ -115,18 +122,19 @@ namespace bbtk int createGConnector(GPortModel* startPort); void configGBlackBox(int idBox, double xIn, double yIn, double zIn, std::string name, bool boxExecutable,double xEn,double yEn,double zEn); - void configGConnetion( std::string nameStartBox, std::string nameStartPort, std::string + int configGConnetion( std::string nameStartBox, std::string nameStartPort, std::string nameEndBox, std::string nameEndPort); void configGComBoxInputOutputPort(bool inputoutput, std::string inputPortName, double xIn, double yIn,double zIn); GBoxModel* findGBox(std::string boxname); - - + + vtkRenderWindow* getRenderWindow(); - vtkRenderer* getRenderer(); + vtkRenderer* getRenderer(); virtual void update(int idController,int command); + void refresh(); void refreshScene(); void displayBlackBoxInfo(std::string packageName, std::string boxName); void updateStatusBar(std::string textStatus); @@ -155,17 +163,22 @@ namespace bbtk //Add a map of object controllers void addObjects(std::map objectsMap); + /// Duplicates Objects to current a diagram + void DuplicateObjects(std::map objectsMap);///JLGR 21-05-2012 + //------- + // Makes a BlackBox Executable + bool MakeBoxExecutable();//DFCH //------- //Returns a string with the BBS script of the current diagram. - std::string getDiagramBBS(); + std::string getDiagramBBS(bool wln=false); //Returns a string with the BBS script of the complex box. - std::string saveComplexBoxBBS(std::string cbName,std::string cbAuthor="",std::string cbCategory="",std::string cbDescription=""); + std::string saveComplexBoxBBS(); //Delete the object in the list of controllers with the id given by parameter. void deleteObject(int id); - + void AddControlerToBeRemove(std::vector *controllersToRemove, int id); //Clear list of controllers and refresh @@ -174,8 +187,8 @@ namespace bbtk //Save the diagram in the BBG format, in the string given by param. void saveDiagram(std::string &content); - //Load the diagram - void loadDiagram(ifstream &inputStream); + //Load the diagram + void loadDiagram(std::stringstream &inputStream); //Center the view of the camera in the initial position void centerView(); @@ -185,40 +198,68 @@ namespace bbtk std::string findANewNameForABox(); //------- + void SetCbName(std::string cbNane); + void SetCbPackageName(std::string packagename); + void SetAuthor(std::string author); + void SetCategory(std::string category); + void SetDescription(std::string description); + + std::string GetCbName(); + std::string GetCbPackageName(); + std::string GetAuthor(); + std::string GetCategory(); + std::string GetDescription(); private: + std::string _cbName; + std::string _cbPackageName; + std::string _Author; + std::string _Category; + std::string _Description; + //wxPanel that uses the manager - wxGEditorTabPanel *_parent; + wxGEditorTabPanel *_parent; // Id of the manager, the same of the panel - int _idManager; + int _idManager; // Boxes number in the scene - int _numBoxes; + int _numBoxes; // StartDragging - bool _startDragging; + bool _startDragging; // creaMaracasVisu viewer - wxVtk3DBaseView *_baseView; + wxVtk3DBaseView *_baseView; // State of the 3D Scene or the virtual world int _worldState; //Map of id - objectController - std::map _controllers; + std::map _controllers; //Saves the id's of the selected objects in the controllers map - std::vector _selectedObjects; + std::vector _selectedObjects; - //Is the diagram in state complex box - bool _isComplexBox; + //Is the diagram in state complex box + bool _isComplexBox; - int _idConnectionInCreation; + int _idConnectionInCreation; int _contLastId; + vtkTextActor3D *_textActor; + vtkPoints *_pts; + vtkActor *_fillObjectActor; + vtkDataSetMapper *_aPolygonMapper; + + std::string LineNumber(bool withLineNumber, int &value); + int GetIndexInSelected(int idControler); + void UnSelectBlackBoxes(); + GObjectController *GetGBlackBoxControlerPointedByMouse(); + void CancelConnection(); + protected: };