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

Private GIT Repository
added impl xsd + patterns in impls
[blast.git] / GroupScene.h
1 #ifndef __GROUPSCENE_H__
2 #define __GROUPSCENE_H__
3
4 #include <QtCore>
5 #include <QtGui>
6 #include <QtWidgets>
7
8 class Dispatcher;
9 class Parameters;
10 class AbstractBlock;
11 class GroupWidget;
12 class GroupItem;
13 class BoxItem;
14 class AbstractBoxItem;
15 class ConnectionItem;
16 class InterfaceItem;
17
18 using namespace std;
19 using namespace Qt;
20
21 /* NOTES :
22
23  - A GroupScene is composed of a single GroupItem that contains BlockItem and ConnectionItem
24    The GroupItem is stored in the mainGroup attribute
25
26  - A GroupScene is instanciated whenever there is a GroupItem that must be created, i.e.
27   for the top scene or for subgroups.
28
29   - This class is a subclass of QGraphicsScene by convenience but it's goal is more to list
30   the different inner items. Thus, all operations that add/remove items to the scene will also
31   add them in the QList
32  */
33
34 class GroupScene : public QGraphicsScene {
35
36 public:
37
38   /* edition mode of the window:
39      - AddBlock: can only add blocks to the scene
40      - AddConnection: can only add connections to the scene
41      - AddGroup: while a new group (empty or from selected blocks) is created
42      - ItemEdtion: can move/resize blocks/interfaces, remove blocks/interface/group, ...
43    */
44   enum EditMode { InitState, AddBlock, AddConnection, AddGroup, ItemEdition };
45
46   GroupScene(GroupScene* _parentScene, GroupWidget* _window, Dispatcher* _dispatcher, Parameters* _params, bool topScene = false, QObject *parent = 0);
47   ~GroupScene();
48
49   // attributes getters
50   inline GroupItem* getGroupItem() {return groupItem;}
51   inline QList<BoxItem*> getBlockItems() { return blockItems; }
52   inline QList<ConnectionItem*> getConnectionItems() { return connectionItems; }
53   inline QList<GroupScene*> getChildrenScene() { return childrenScene; }
54   inline GroupScene* getParentScene() { return parentScene; }
55   inline GroupWidget* getGroupWidget() { return window; }
56   inline int getId() { return id; }
57   inline EditMode getEditionMode() { return editMode; }
58   InterfaceItem* getSelectedInterface(int id);
59
60   // attributes setters
61   inline void setWindow(GroupWidget* _window) { window = _window; }
62   void setGroupItem(GroupItem* group);
63   inline void setId(int id) { this->id = id; }
64   inline void setEditionMode(EditMode mode) { editMode = mode; }
65   void setSelectedInterface(int id, InterfaceItem* iface);
66
67   // attributes testers
68   inline bool isTopScene() { return topScene; }
69
70
71   // others  
72   BoxItem* createBlockItem(AbstractBlock* block); //! create a new BoxItem and place it at the center of the scene
73   void addBlockItem(BoxItem* item); //! add an already configured BoxItem in the scene.
74   void removeBlockItem(BoxItem* item);
75   void createConnectionItem(InterfaceItem* iface1, InterfaceItem* iface2);
76   ConnectionItem* searchConnectionItem(InterfaceItem* iface1, InterfaceItem* iface2);
77   void addConnectionItem(ConnectionItem* item);
78   void removeConnectionItem(ConnectionItem* item);
79   void removeGroupItem();
80   inline void addChildScene(GroupScene* child) { childrenScene.append(child); }
81   inline void removeChildScene(GroupScene* child) { childrenScene.removeAll(child); }
82   inline int getNbChildScene() { return childrenScene.size(); }
83   void unselecteInterfaces();
84
85   QList<AbstractBoxItem*> getGroupAndBlocks();
86   QList<BoxItem *> getSelectedBlocks();
87
88   QList<ConnectionItem *> getInterfaceConnections(InterfaceItem *item);
89
90   int setItemsId(int countInit=1);
91   int setInterfacesId(int countInit=1);
92
93   void updateConnectionItemsShape();
94
95   void save(QXmlStreamWriter& writer);
96
97 private:
98   Dispatcher *dispatcher;
99   Parameters *params;
100   GroupScene* parentScene; // the parent scene, =NULL for top scene
101   GroupWidget* window; // the GroupWindow that contains that scene
102   int id;
103   GroupItem *groupItem; // mandatory to be an instance of GroupItem.
104   QList<ConnectionItem*> connectionItems;
105   QList<BoxItem*> blockItems;
106   QList<GroupScene*> childrenScene;
107   bool topScene;
108   EditMode editMode;
109   InterfaceItem* selectedInterfaces[2]; // selected iface 1 in AddConnection mode
110
111 };
112
113 #endif // __GROUPSCENE_H__