]> AND Private Git Repository - blast.git/blobdiff - InterfaceItem.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
adding link between ifaces and clk
[blast.git] / InterfaceItem.h
index ce65b9e04605aa58229abb5cfa198d2260e1230b..26f9dd9aff6659a198a8a7f572e2e88308ebc11d 100644 (file)
@@ -23,14 +23,14 @@ public:
                   int _orientation,
                   ConnectedInterface* _refInter,
                   AbstractBoxItem* _owner,
-                  Parameters* _params);
+                  Parameters* _params, bool forceVisible = false);
   InterfaceItem();
   QRectF boundingRect() const;
   void paint(QPainter *painter);
 
   // getters
   inline int getId() { return id; }
-  inline QString getName() { return name; }
+  QString getName();
   inline double getPositionRatio() { return positionRatio; }
   inline double getPosition() { return position; }
   inline int getOrientation() { return orientation; }
@@ -38,23 +38,21 @@ public:
   inline int getNameWidth() { return nameWidth; }
   inline int getNameHeight() { return nameHeight; }
   QString getStrOrientation();
-  static int getIntOrientation(QString str);
-  QPointF getEndPointInGroup();
+  static int getIntOrientation(QString str);  
+  QPointF getEndPosition();
+  QPointF getStartPosition();
 
   // setters
   void setOriginPoint();
-  inline void setId(int id){ this->id = id; }
-  inline void setName(QString name){ this->name = name; }
+  inline void setId(int id){ this->id = id; }  
   inline void setPositionRatio(double ratio) { positionRatio = ratio; }
   inline void setOrientation(int _orientation){ orientation = _orientation; }
 
   // others
   void addConnectionItem(ConnectionItem* item);
-  void removeConnectionItem(ConnectionItem* item);
-  bool canConnectWith(InterfaceItem* iface);
-  bool connectWith(InterfaceItem* iface);
-  void unconnectTo(InterfaceItem *iface);
+  void removeConnectionItem(ConnectionItem* item);  
   void updatePosition();
+  void updateName(QString name);
 
   AbstractBoxItem* owner;
   ConnectedInterface* refInter;
@@ -68,8 +66,7 @@ public:
 
 
 private:
-  int id;
-  QString name;
+  int id;  
   double positionRatio;
   int position; // position in pixels on the "orientation side" of the owner
   int orientation; // north, south, east, west