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

Private GIT Repository
changed VHDL converter
[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);
27   InterfaceItem();
28   QRectF boundingRect() const;
29   void paint(QPainter *painter);
30
31   // getters
32   inline int getId() { return id; }
33   QString getName();
34   inline double getPositionRatio() { return positionRatio; }
35   inline double getPosition() { return position; }
36   inline int getOrientation() { return orientation; }
37   inline AbstractBoxItem *getOwner() { return owner; }
38   inline int getNameWidth() { return nameWidth; }
39   inline int getNameHeight() { return nameHeight; }
40   QString getStrOrientation();
41   static int getIntOrientation(QString str);  
42   QPointF getEndPosition();
43   QPointF getStartPosition();
44
45   // setters
46   void setOriginPoint();
47   inline void setId(int id){ this->id = id; }  
48   inline void setPositionRatio(double ratio) { positionRatio = ratio; }
49   inline void setOrientation(int _orientation){ orientation = _orientation; }
50
51   // others
52   void addConnectionItem(ConnectionItem* item);
53   void removeConnectionItem(ConnectionItem* item);  
54   void updatePosition();
55   void updateName(QString name);
56
57   AbstractBoxItem* owner;
58   ConnectedInterface* refInter;
59   Parameters* params;
60   bool selected;
61   bool visible;
62
63   static int counter;
64
65   QList<ConnectionItem*> connections; // the connection items that are bounded to this interface item
66
67
68 private:
69   int id;  
70   double positionRatio;
71   int position; // position in pixels on the "orientation side" of the owner
72   int orientation; // north, south, east, west
73   QPointF originPoint; // the point where starts the drawing (along the box border) NB : in the owner coordinates
74   int nameWidth; // the graphical width of the name, computed from default font metrics
75   int nameHeight; // the graphical height of the name, computed from default font metrics
76
77   friend QDataStream &operator<<(QDataStream &out, InterfaceItem *b);
78   friend QDataStream &operator>>(QDataStream &in, InterfaceItem &b);
79 };
80
81 /*
82 QDataStream & operator <<(QDataStream &out, InterfaceItem *b);
83 QDataStream & operator >>(QDataStream &in, InterfaceItem &b);
84 */
85 #endif