Salome HOME
Update copyright information
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Canvas.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SUPERV SUPERVGUI : GUI for Supervisor component
23 //  File   : SUPERVGUI_Canvas.h
24 //  Author : Natalia KOPNOVA
25 //  Module : SUPERV
26 //
27 #ifndef SUPERVGUI_Canvas_H
28 #define SUPERVGUI_Canvas_H
29
30 #include "SUPERVGUI_Def.h"
31 #include <qcanvas.h>
32
33 class SUPERVGUI_Main;
34 class SUPERVGUI_CanvasNode;
35 class SUPERVGUI_CanvasPort;
36 class SUPERVGUI_CanvasLink;
37 class SUIT_ResourceMgr;
38
39 class SUPERVGUI_Canvas: public QCanvas {
40   Q_OBJECT
41
42   public:
43
44     enum {
45       Rtti_Node = 10,
46       Rtti_LinkPoint = 11,
47       Rtti_LinkEdge = 12,
48       Rtti_Hook = 13
49     };
50
51     SUPERVGUI_Canvas( SUPERVGUI_Main* m, SUIT_ResourceMgr* );
52     virtual ~SUPERVGUI_Canvas();
53
54     void merge();
55     void sync();
56     //void setAsFromStudy(bool theToStudy);
57
58     void addView(QCanvasView* theView);
59
60     void setFullView();
61     void setControlView();
62     bool isControlView() { return myIsControlView; }
63
64     SUPERVGUI_CanvasNode* getNode(SUPERV::CNode_ptr theNode) const;
65     SUPERVGUI_CanvasPort* getPort(SUPERV::Port_ptr thePort) const;
66     SUPERVGUI_CanvasLink* getLink(SUPERV::Link_ptr theLink) const;
67
68     QString getPortName(SUPERV::Port_ptr thePort) const;
69     QString getLinkName(SUPERV::Link_ptr theLink) const;
70
71  private:
72     void updateNodes(bool withPorts);
73     void updateLinks();
74
75     SUPERVGUI_Main* myMain;
76     bool myIsControlView;
77
78 };
79
80 #endif