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

Private GIT Repository
finished testbench generation
[blast.git] / InterfaceItem.h
1 #ifndef __INTERFACEITEM_H__
2 #define __INTERFACEITEM_H__
3
4 #include <QtCore>
5 #include <QtGui>
6
7 class Parameters;
8 class ConnectedInterface;
9 class AbstractBoxItem;
10 class ConnectionItem;
11
12
13 using namespace std;
14 using namespace Qt;
15
16 class InterfaceItem {
17
18 public:
19
20
21
22   InterfaceItem(double _position,
23                   int _orientation,
24                   ConnectedInterface* _refInter,
25                   AbstractBoxItem* _owner,
26                   Parameters* _params, bool forceVisible = false);
27   InterfaceItem();
28   QRectF boundingRect() const;
29   void paint(QPainter *painter);
30
31   // getters
32   inline int getId() { return id; }
33   QString getName();
34   QString getReferenceName();
35   inline double getPositionRatio() { return positionRatio; }
36   inline double getPosition() { return position; }
37   inline int getOrientation() { return orientation; }
38   inline AbstractBoxItem *getOwner() { return owner; }
39   inline int getNameWidth() { return nameWidth; }
40   inline int getNameHeight() { return nameHeight; }
41   QString getStrOrientation();
42   static int getIntOrientation(QString str);  
43   QPointF getEndPosition();
44   QPointF getStartPosition();
45
46   // setters
47   void setOriginPoint();
48   inline void setId(int id){ this->id = id; }  
49   inline void setPositionRatio(double ratio) { positionRatio = ratio; }
50   inline void setOrientation(int _orientation){ orientation = _orientation; }
51
52   // others
53   void addConnectionItem(ConnectionItem* item);
54   void removeConnectionItem(ConnectionItem* item);  
55   void updatePosition();
56   void updateName(QString name);
57
58   AbstractBoxItem* owner;
59   ConnectedInterface* refInter;
60   Parameters* params;
61   bool selected;
62   bool visible;
63
64   static int counter;
65
66   QList<ConnectionItem*> connections; // the connection items that are bounded to this interface item
67
68
69 private:
70   int id;  
71   double positionRatio;
72   int position; // position in pixels on the "orientation side" of the owner
73   int orientation; // north, south, east, west
74   QPointF originPoint; // the point where starts the drawing (along the box border) NB : in the owner coordinates
75   int nameWidth; // the graphical width of the name, computed from default font metrics
76   int nameHeight; // the graphical height of the name, computed from default font metrics
77
78   friend QDataStream &operator<<(QDataStream &out, InterfaceItem *b);
79   friend QDataStream &operator>>(QDataStream &in, InterfaceItem &b);
80 };
81
82 /*
83 QDataStream & operator <<(QDataStream &out, InterfaceItem *b);
84 QDataStream & operator >>(QDataStream &in, InterfaceItem &b);
85 */
86 #endif