]> SALOME platform Git repositories - modules/superv.git/blob - src/SUPERVGUI/SUPERVGUI_CanvasCellNodePrs.h
Salome HOME
45e40ea2bc8309c34d2975d10fcf61d4e7c0755f
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_CanvasCellNodePrs.h
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  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 //  File   : SUPERVGUI_CanvasCellNodePrs.h
23 //  Author : 
24 //  Module : SUPERV
25
26 #ifndef SUPERVGUI_CanvasCellNodePrs_H
27 #define SUPERVGUI_CanvasCellNodePrs_H
28
29 #include "SUPERVGUI_Def.h"
30 #include "SUPERVGUI_CanvasNodePrs.h"
31 #include "SUPERVGUI_CanvasControlNode.h"
32
33 class SUPERVGUI_CanvasCellNodePrs: public SUPERVGUI_CanvasNodePrs {
34
35   public:
36     SUPERVGUI_CanvasCellNodePrs( SUIT_ResourceMgr*, QCanvas* theCanvas, SUPERVGUI_CanvasCellNode* theNode);
37     virtual ~SUPERVGUI_CanvasCellNodePrs();
38
39     virtual void moveBy(double dx, double dy);
40  
41     virtual QRect getTitleRect() const;
42     virtual QRect getLabelRect() const;
43     virtual QRect getStatusRect() const;
44
45     int getTitleWidth() const;
46     int getLabelWidth() const;
47     int getStatusWidth() const;
48
49     virtual int width() const;
50     virtual int height() const;
51
52     virtual void setState(SUPERV::GraphState theState);
53
54   protected:
55     virtual void drawShape(QPainter& thePainter);
56
57     virtual void drawTitle(QPainter& thePainter);
58     virtual void drawLabel(QPainter& thePainter);
59     virtual void drawStatus(QPainter& thePainter);
60
61   private:
62     int myTitleWidth;
63     int myLabelWidth;
64     int myStatusWidth;
65     
66 };
67
68 #endif