]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Shape.h
Salome HOME
HYDRO shapes are merged to drawing of Wires and Faces instead of drawing Faces only.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Shape.h
1 // Copyright (C) 2007-2013  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
23 #ifndef HYDROGUI_SHAPE_H
24 #define HYDROGUI_SHAPE_H
25
26 #include <AIS_InteractiveContext.hxx>
27 #include <AIS_Shape.hxx>
28
29 #include <HYDROData_Object.h>
30
31 #include <QColor>
32
33 #include <TopoDS_Face.hxx>
34 #include <TopoDS_Wire.hxx>
35
36 class HYDROGUI_Shape
37 {
38 public:
39   HYDROGUI_Shape( const Handle(AIS_InteractiveContext)& theContext,
40                   const Handle(HYDROData_Object)&       theObject );
41   ~HYDROGUI_Shape();
42
43 public:
44   virtual void               display( const bool theIsUpdateViewer = true );
45   virtual void               erase( const bool theIsUpdateViewer = true );
46
47   virtual void               highlight( bool theIsHighlight );
48   virtual bool               isHighlighted() const;
49
50   Handle(HYDROData_Object)   getObject() const { return myObject; }
51
52   virtual void               update( const bool theIsUpdateViewer = true );
53
54   virtual bool               getIsToUpdate() const { return myIsToUpdate; }
55   virtual void               setIsToUpdate( bool theState ) { myIsToUpdate = theState; }
56
57   virtual bool               isVisible() const { return myIsVisible; }
58   virtual void               setVisible( const bool theState,
59                                          const bool theIsUpdateViewer = true );
60
61   virtual void               setWire( const TopoDS_Wire& theWire,
62                                       const bool         theToDisplay = true,
63                                       const bool         theIsUpdateViewer = true );
64
65   virtual void               setFace( const TopoDS_Wire& theWire,
66                                       const bool         theToDisplay = true,
67                                       const bool         theIsUpdateViewer = true );
68
69   virtual void               setFace( const TopoDS_Face& theFace,
70                                       const bool         theToDisplay = true,
71                                       const bool         theIsUpdateViewer = true );
72
73   virtual void               setFillingColor( const QColor& theColor,
74                                               const bool    theToDisplay = true,
75                                               const bool    theIsUpdateViewer = true );
76   virtual QColor             getFillingColor() const;
77
78   virtual void               setBorderColor( const QColor& theColor,
79                                              const bool    theToDisplay = true,
80                                              const bool    theIsUpdateViewer = true );
81   virtual QColor             getBorderColor() const;
82
83   virtual void               setHighlightColor( const QColor& theColor );
84   virtual QColor             getHighlightColor() const;
85
86 protected:
87   virtual void               buildShape();
88   virtual void               updateShape( const bool theToDisplay      = true,
89                                           const bool theIsUpdateViewer = true );
90   virtual QColor             getActiveColor() const;
91
92 private:
93   static double              getQuantityColorVal( const int theColorVal );
94   void                       colorShapeBorder( const QColor& theColor );
95
96 private:
97   Handle(AIS_InteractiveContext) myContext;
98   Handle(HYDROData_Object)       myObject;
99   Handle(AIS_Shape)              myShape;
100
101   bool                           myIsToUpdate;
102   bool                           myIsVisible;
103
104   bool                           myIsHighlight;
105   TopoDS_Shape                   myTopoShape;
106   int                            myDisplayMode;
107   
108   QColor                         myFillingColor;
109   QColor                         myBorderColor;
110   QColor                         myHighlightColor;
111 };
112
113 #endif
114