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

Private GIT Repository
finished VHDL gen. (but have to test further
[blast.git] / BoxItem.h
1 #ifndef __BLOCKITEM_H__
2 #define __BLOCKITEM_H__
3
4 #include <iostream>
5
6 #include <QtCore>
7 #include <QtGui>
8 #include <QtXml>
9 #include <QtXmlPatterns>
10
11
12 #include "AbstractBoxItem.h"
13 class AbstractBoxItem;
14
15 class GroupItem;
16 class Parameters;
17 class Dispacther;
18
19 #include "Exception.h"
20
21 using namespace std;
22 using namespace Qt;
23
24 /* NOTE :
25
26   A BoxItem may represent a functional block or a group block within a group item, itslef
27   within a scene. What says what it represents is refBlock, i.e. if refBlock->isFunctionalBlock()
28   or refBlock->isGroupBlock() returns true.
29  */
30 class BoxItem : public AbstractBoxItem {
31
32 public:
33   BoxItem(AbstractBlock *_refBlock, Dispatcher *_dispatcher, Parameters *_params, GroupItem* parent) throw(Exception);
34   BoxItem(Dispatcher *_dispatcher, Parameters *_params, GroupItem* parent) throw(Exception);
35   ~BoxItem();
36
37   void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);  
38
39   // getters
40   inline GroupItem *getChildGroupItem() { return childGroupItem; }
41
42   // setters
43   inline void setChildGroupItem(GroupItem* item) { childGroupItem = item; }
44
45   // testers
46   bool isBoxItem();
47
48   // others
49   void nameChanged();
50   void moveTo(QPointF dest);
51   void loadFunctional(QDomElement funcElement) throw(Exception);
52   void save(QXmlStreamWriter& writer);
53
54 protected:
55
56   void updateMinimumSize(); // modify the minimum size
57   bool updateGeometry(ChangeType type); // modify the originPoint and the total dimension
58
59   void mousePressEvent(QGraphicsSceneMouseEvent *event);
60   void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
61   void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
62   void contextMenuEvent(QGraphicsSceneContextMenuEvent *event);
63   void hoverMoveEvent( QGraphicsSceneHoverEvent *event);  
64
65 private:
66
67   /* NOTE :
68    A BlockItem is always graphically within a GroupItem, inside the same scene.   
69
70    A BlockItem may also be the graphical view of a GroupBlock. In this case, there exists a child scene
71    containing a GroupItem. insideGroup atribute refers to this GroupItem and thus, may be NULL if the current
72    blockItem represents a functional block
73    */
74   GroupItem *childGroupItem;
75
76
77   friend QDataStream &operator<<(QDataStream &out, BoxItem &b);
78   friend QDataStream &operator>>(QDataStream &in, BoxItem &b);
79
80 /*
81 signals:
82   void itemMustBeDeleted(QGraphicsItem*);
83 */
84   
85 };
86
87 QDataStream & operator <<(QDataStream &out, BoxItem &b);
88 QDataStream & operator >>(QDataStream &in, BoxItem &b);
89
90 #endif // __BLOCKITEM_H__