]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/GPortModel.cxx
Necessary changes to manage the basic action . First prototype totally completed...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / GPortModel.cxx
index ded26739afc74b094774cbcf908593c4855441a9..8672eedafa918db517bcf5bbbcdf57f08269982a 100644 (file)
@@ -44,6 +44,7 @@ namespace bbtk
        GPortModel::GPortModel()
        {               
                _parentBox = NULL;
+               _portType=-1;
        }
 
        //=========================================================================
@@ -52,12 +53,54 @@ namespace bbtk
        }
        //=========================================================================
 
-       void GPortModel::registerInBox(GBlackBoxModel *blackBox)
+       void GPortModel::registerInBox(GBlackBoxModel *blackBox,int portType, int pos)
        {
                _parentBox = blackBox;
+               _portType = portType;
+
+               updatePortPosition(pos);
+
        }
 
        //=========================================================================
+
+       void GPortModel::updatePortPosition(int pos)
+       {
+               double xInic, yInic,zInic,xFin,yFin,zFin;
+               _parentBox->getInicPoint(xInic,yInic,zInic);
+               _parentBox->getFinalPoint(xFin, yFin,zFin);
+
+               double posX=xInic,posY=yInic,posZ=zInic;
+               if(_portType==GOUTPUTPORT)
+               {
+                       posY = yInic+PORT_HEIGHT;
+               }
+               else if(_portType==GINPUTPORT)
+               {
+                       posY = yFin;
+               }
+
+               //Variable 'pos' starts with value 0 and it represents the position of the port in the box from left to right
+               posX = xInic + PORT_WIDTH + pos*2*PORT_WIDTH;
+               
+               setInicPoint(posX,posY,posZ);
+
+               posX=posX+PORT_WIDTH;
+               posY=posY-PORT_HEIGHT;
+
+               setFinalPoint(posX,posY,posZ);          
+               
+               setChanged();
+               notifyObservers();
+       }
+
+       //=========================================================================
+
+       int GPortModel::getPortType()
+       {
+               return _portType;
+       }
+
 }  // EO namespace bbtk
 
 // EOF