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

Private GIT Repository
corrected some warnings
[blast.git] / GroupItem.h
1 #ifndef __GROUPITEM_H__
2 #define __GROUPITEM_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 BoxItem;
16 class InterfaceItem;
17 class Dispatcher;
18 class Parameters;
19
20 #include "Exception.h"
21
22 using namespace std;
23 using namespace Qt;
24
25 class GroupItem : public AbstractBoxItem {
26
27 public:
28   /* CAUTION : the parentItem of a group block IS NOT the group item of the parent scene. It is a BlockItem that is
29      wihtin the parent scene. It is used when interfaceItem are added to the current GroupItem: they must be also added
30      to the parent BlockItem.
31
32      NB : this yields a problem when loading a project because scenes are created before creating group and then block.
33      thus, the parentItem must be initialized afterward when all block items have been created.
34
35    */
36   GroupItem(BoxItem* _parentItem, AbstractBlock *_refBlock, Dispatcher *_dispatcher, Parameters *_params) throw(Exception);
37   GroupItem(Dispatcher *_dispatcher, Parameters *_params) throw(Exception); //! uses only when loading a project file
38   ~GroupItem();
39
40   // getters
41   BoxItem* getParentItem();
42
43   // setters
44   void setParentItem(BoxItem* _parentItem);
45
46   // testers
47   bool isGroupItem();
48
49   // others  
50   void nameChanged();
51   void updateShape();
52   void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);  
53   void load(QDomElement groupElement) throw(Exception);
54   void save(QXmlStreamWriter& writer);
55
56 protected:
57
58   void updateMinimumSize(); // modify the minimum size
59   bool updateGeometry(ChangeType type);
60
61   void mousePressEvent(QGraphicsSceneMouseEvent *event);
62   void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
63   void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
64   void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
65   void contextMenuEvent(QGraphicsSceneContextMenuEvent *event);
66
67
68
69 private:
70   /* NOTE : parentItem attribute is never NULL except for the top GroupItem
71   in the top scene
72   */
73   BoxItem* parentItem;
74   QRectF rectTitle;  
75
76
77   InterfaceItem *isHoverInterface(QPointF point);
78 };
79
80 #endif // __GROUPITEM_H__