]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GBlackBoxModel.cxx
The actual version updates the status bar with the highlighted object ... Also it...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GBlackBoxModel.cxx
index 186c745baf1c189e64f20d7e6c5b23915ad77945..e58e73aebfef1f301a2fd0023bdfec9728feba0d 100644 (file)
@@ -51,6 +51,16 @@ namespace bbtk
        }
        //=========================================================================
 
+       void GBlackBoxModel::setInicPoint(double& x, double& y, double& z)
+       {
+               GObjectModel::setInicPoint(x,y,z);
+
+               double xFin=x+BOX_WIDTH,yFin=y-BOX_HEIGHT;
+               setFinalPoint(xFin,yFin,z);
+       }
+
+       //=========================================================================
+
        void GBlackBoxModel::addInputPort(GPortModel *inputport)
        {
                _inputs.push_back(inputport);
@@ -65,6 +75,68 @@ namespace bbtk
 
        //=========================================================================
 
+       int GBlackBoxModel::getNumInputPorts()
+       {
+               return _inputs.size();
+       }
+
+       //=========================================================================
+
+       int GBlackBoxModel::getNumOutputPorts()
+       {
+               return _outputs.size();
+       }
+
+       //=========================================================================
+
+       void GBlackBoxModel::move(double xx,double yy,double zz)
+       {
+               setInicPoint(xx,yy,zz);
+
+               //Refresh inputs position
+               int i;
+               for(i=0;i<_inputs.size();i++)
+               {
+                       _inputs[i]->updatePortPosition();
+               }
+               
+               //Refresh outputs position
+               for(i=0;i<_outputs.size();i++)
+               {
+                       _outputs[i]->updatePortPosition();
+               }
+
+       }
+       
+       //=========================================================================
+
+       
+       std::string GBlackBoxModel::getBBTKPackage()
+       {
+               return _bbtkPackage;
+       }
+
+       //=========================================================================
+
+       void GBlackBoxModel::setBBTKPackage(std::string obpackage)
+       {
+               _bbtkPackage = obpackage;
+       }
+
+       //=========================================================================
+       
+       std::string GBlackBoxModel::getStatusText()
+       {
+               std::string temp = "";
+               temp+=_bbtkType;
+               temp+=":";
+               temp+=_bbtkPackage;
+               return temp;
+       }
+
+       //=========================================================================
+
+
 }  // EO namespace bbtk
 
 // EOF