]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxVtkSceneManager.h
Feature #1674 . RaC
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxVtkSceneManager.h
index ac27e88e7467ef0f3fe5e2eb1d015207acd51671..f92b9064e057a733e11e12eaaedbeb68624881e3 100644 (file)
@@ -82,6 +82,8 @@ Version:   $Revision$
 
 //Includes std
 #include <iostream>
+#include <string>
+#include <sstream>
 #include <map>
 
 namespace bbtk
@@ -107,26 +109,27 @@ namespace bbtk
                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 );
                int createGComplexBoxInputPort(std::string inputName);
                int createGComplexBoxOutputPort(std::string outputName);
-               GPortController* createGPort(int portType, std::string bbtkName, std::string bbtkType, int posinBox,GBoxModel *blackBox);
+               GPortController* createGPort(int portType, std::string bbtkName, std::string bbtkType, std::string bbtkDescription, int posinBox,GBoxModel *blackBox);
                int createGInputPort(int portType, int posinBox,GBoxModel *blackBox, BlackBoxInputDescriptor *desc);
                int createGOutputPort(int portType, int posinBox,GBoxModel *blackBox, BlackBoxOutputDescriptor *desc);
                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);
-               int configGConnetion( std::string nameStartBox, std::string  nameStartPort, std::string
-                                                         nameEndBox, std::string  nameEndPort);
+               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);
 
@@ -159,7 +162,12 @@ namespace bbtk
                //Add a map of object controllers
                void addObjects(std::map<int,GObjectController*> objectsMap);
 
+                /// Duplicates Objects to current a diagram
+                void DuplicateObjects(std::map<int,GObjectController*> 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(bool wln=false);
@@ -168,7 +176,7 @@ namespace bbtk
                std::string saveComplexBoxBBS();
 
                //Delete the object in the list of controllers with the id given by parameter.
-               void deleteObject(int id);
+               bool deleteObject(int id);
 
                void AddControlerToBeRemove(std::vector<int> *controllersToRemove, int id);
 
@@ -179,7 +187,7 @@ namespace bbtk
                void saveDiagram(std::string &content);
 
                //Load the diagram
-               void loadDiagram(ifstream &inputStream);
+               void loadDiagram(std::stringstream &inputStream);
 
                //Center the view of the camera in the initial position
                void centerView();
@@ -200,7 +208,18 @@ namespace bbtk
         std::string GetAuthor();
         std::string GetCategory();
         std::string GetDescription();
-
+  
+        // RaC2012 2nd HackFest
+        // External Inputs was the complex inputs in previous versions
+        // Get names of all external inputs
+        std::vector< std::string> GetExternalInputsNames();
+               void getCleanLine(std::stringstream &inputStream, std::string &line);
+               
+        // JGRR & CM
+        void printAll( int com, int sta );
+
+               
+               
        private:
 
         std::string                         _cbName;