Salome HOME
The data model has been redesigned to new format.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PrsZone.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_PRSZONE_H
24 #define HYDROGUI_PRSZONE_H
25
26 #include "HYDROGUI_Prs.h"
27
28 /*
29   Class       : HYDROGUI_PrsZone
30   Description : Presentation for zone object
31 */
32 class HYDROGUI_PrsZone : public HYDROGUI_Prs
33 {
34 public:
35   HYDROGUI_PrsZone( const Handle(HYDROData_Entity)& theObject );
36   virtual ~HYDROGUI_PrsZone();
37
38 public:
39   void                            setPath( const QPainterPath& thePath );
40   QPainterPath                    getPath() const;
41
42   void                            setFillingColor( const QColor& theColor );
43   QColor                          getFillingColor() const;
44
45   void                            setBorderColor( const QColor& theColor );
46   QColor                          getBorderColor() const;
47
48 public:
49   // from QGraphicsItem
50   virtual QRectF                  boundingRect() const;
51
52   // from GraphicsView_Object
53   virtual void                    compute();
54
55   virtual bool                    isMovable() const { return false; }
56
57   virtual bool                    checkHighlight( double theX, double theY, QCursor& theCursor ) const;
58
59   virtual bool                    select( double theX, double theY, const QRectF& theRect );
60   virtual void                    unselect();
61   virtual void                    setSelected( bool theState );
62
63 protected:
64   QGraphicsPathItem*              myZoneItem;
65
66   QPainterPath                    myPath;
67   QColor                          myFillingColor;
68   QColor                          myBorderColor;
69 };
70
71 #endif