]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Shape.h
Salome HOME
4e1ef2120d42f68be7990590ee1f51702d41ff29
[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 <QColor>
30 #include <QPainterPath>
31
32 class HYDROGUI_Shape
33 {
34 public:
35   HYDROGUI_Shape( const Handle(AIS_InteractiveContext)& theContext );
36   ~HYDROGUI_Shape();
37
38 public:
39   virtual void               display();
40   virtual void               erase();
41
42   virtual void               highlight( bool theIsHighlight );
43   virtual bool               isHighlighted() const;
44
45   virtual void               setPath( const QPainterPath& thePath,
46                                       const bool          theToDisplay = true );
47   virtual QPainterPath       getPath() const;
48
49   virtual void               setZIndex( const double theZIndex,
50                                         const bool   theToDisplay = true );
51   virtual double             getZIndex() const;
52
53   virtual void               setFillingColor( const QColor& theColor,
54                                               const bool    theToDisplay = true );
55   virtual QColor             getFillingColor() const;
56
57   virtual void               setBorderColor( const QColor& theColor,
58                                              const bool    theToDisplay = true );
59   virtual QColor             getBorderColor() const;
60
61   virtual void               setHighlightColor( const QColor& theColor );
62   virtual QColor             getHighlightColor() const;
63
64 protected:
65   virtual void               buildShape();
66   virtual void               updateShape( const bool theIsForce = true );
67   virtual QColor             getActiveColor() const;
68
69 private:
70   static double              getQuantityColorVal( const int theColorVal );
71   void                       colorShapeBorder( const QColor& theColor );
72
73 private:
74   Handle(AIS_InteractiveContext) myContext;
75   Handle(AIS_Shape)              myShape;
76
77   bool                           myIsHighlight;
78   QPainterPath                   myPath;
79   
80   double                         myZIndex;
81   QColor                         myFillingColor;
82   QColor                         myBorderColor;
83   QColor                         myHighlightColor;
84 };
85
86 #endif
87