Salome HOME
refs #500: regression in bathymetry show in OCCT
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Shape.h
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 <HYDROData_Entity.h>
27
28 #include <AIS_InteractiveContext.hxx>
29 #include <TopoDS_Shape.hxx>
30
31 #include <QColor>
32
33 class TopoDS_Compound;
34 class TopoDS_Face;
35 class TopoDS_Wire;
36
37 class HYDROGUI_Shape
38 {
39 public:
40   HYDROGUI_Shape( const Handle(AIS_InteractiveContext)& theContext,
41                   const Handle(HYDROData_Entity)&       theObject,
42                   const int                             theZLayer = -1 );
43   virtual ~HYDROGUI_Shape();
44
45 public:
46   virtual void               display( const bool theIsUpdateViewer = true );
47   virtual void               erase( const bool theIsUpdateViewer = true );
48
49   virtual void               highlight( bool theIsHighlight, bool isUpdateViewer );
50   virtual bool               isHighlighted() const;
51
52   Handle(AIS_InteractiveContext) getContext() const;
53   Handle(HYDROData_Entity)   getObject() const;
54   TopoDS_Shape               getTopoShape() const;
55
56   virtual void               update( bool isUpdateViewer,
57                                      bool isDeactivateSelection );
58
59   virtual bool               getIsToUpdate() const;
60   virtual void               setIsToUpdate( bool theState );
61
62   virtual bool               isVisible() const;
63   virtual void               setVisible( const bool theState,
64                                          const bool theIsUpdateViewer = true );
65
66   virtual void               setWire( const TopoDS_Wire& theWire,
67                                       const bool         theToDisplay = true,
68                                       const bool         theIsUpdateViewer = true );
69
70   virtual void               setFaces( const TopoDS_Compound& theWires,
71                                        const bool             theToDisplay = true,
72                                        const bool             theIsUpdateViewer = true );
73
74   virtual void               setFace( const TopoDS_Wire& theWire,
75                                       const bool         theToDisplay,
76                                       const bool         theIsUpdateViewer,
77                                       const QString&     theTextureFileName );
78
79   virtual void               setFace( const TopoDS_Face& theFace,
80                                       const bool         theToDisplay,
81                                       const bool         theIsUpdateViewer,
82                                       const QString&     theTextureFileName );
83
84   virtual void               setShape( const TopoDS_Shape& theShape,
85                                        const bool          theToDisplay = true,
86                                        const bool          theIsUpdateViewer = true );
87
88   virtual void               setFillingColor( const QColor& theColor,
89                                               const bool    theToDisplay = true,
90                                               const bool    theIsUpdateViewer = true );
91   virtual QColor             getFillingColor() const;
92
93   virtual void               setBorderColor( const QColor& theColor,
94                                              const bool    theToDisplay = true,
95                                              const bool    theIsUpdateViewer = true );
96   virtual QColor             getBorderColor() const;
97
98   virtual void               setHighlightColor( const QColor& theColor );
99   virtual QColor             getHighlightColor() const;
100
101   virtual Handle(AIS_InteractiveObject)  getAISObject() const;
102
103   void                       setZLayer( const int theZLayer );
104
105 protected:
106   virtual void               buildShape();
107   virtual void               updateShape( const bool theToDisplay      = true,
108                                           const bool theIsUpdateViewer = true );
109   virtual void               displayShape( const bool theIsUpdateViewer );
110
111   virtual QColor             getActiveColor() const;
112   virtual Handle_AIS_InteractiveObject createShape() const;
113
114   void setDisplayMode( int theDisplayMode );
115
116 private:
117   static double              getQuantityColorVal( const int theColorVal );
118   void                       colorShapeBorder( const QColor& theColor );
119
120 private:
121   Handle(AIS_InteractiveContext) myContext;
122   Handle(HYDROData_Entity)       myObject;
123   Handle(AIS_InteractiveObject)  myShape;
124
125   int                            myZLayer;
126
127   bool                           myIsToUpdate;
128   bool                           myIsVisible;
129
130   bool                           myIsHighlight;
131   TopoDS_Shape                   myTopoShape;
132   int                            myDisplayMode;
133   
134   QColor                         myFillingColor;
135   QColor                         myBorderColor;
136   QColor                         myHighlightColor;
137 };
138
139 #endif
140