Salome HOME
6572c80d5674fcc3798e086aa7941efb2cf9d5e2
[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_Face& theFace,
66                                       const bool         theToDisplay = true,
67                                       const bool         theIsUpdateViewer = true );
68
69   virtual void               setFillingColor( const QColor& theColor,
70                                               const bool    theToDisplay = true,
71                                               const bool    theIsUpdateViewer = true );
72   virtual QColor             getFillingColor() const;
73
74   virtual void               setBorderColor( const QColor& theColor,
75                                              const bool    theToDisplay = true,
76                                              const bool    theIsUpdateViewer = true );
77   virtual QColor             getBorderColor() const;
78
79   virtual void               setHighlightColor( const QColor& theColor );
80   virtual QColor             getHighlightColor() const;
81
82 protected:
83   virtual void               buildShape();
84   virtual void               updateShape( const bool theToDisplay      = true,
85                                           const bool theIsUpdateViewer = true );
86   virtual QColor             getActiveColor() const;
87
88 private:
89   static double              getQuantityColorVal( const int theColorVal );
90   void                       colorShapeBorder( const QColor& theColor );
91
92 private:
93   Handle(AIS_InteractiveContext) myContext;
94   Handle(HYDROData_Object)       myObject;
95   Handle(AIS_Shape)              myShape;
96
97   bool                           myIsToUpdate;
98   bool                           myIsVisible;
99
100   bool                           myIsHighlight;
101   TopoDS_Face                    myFace;
102   
103   QColor                         myFillingColor;
104   QColor                         myBorderColor;
105   QColor                         myHighlightColor;
106 };
107
108 #endif
109