Salome HOME
Draft version of "Find River Bottom", new viewer dialog base class, new component...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PrsPolyline.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_PRSPOLYLINE_H
24 #define HYDROGUI_PRSPOLYLINE_H
25
26 #include "HYDROGUI_Prs.h"
27
28 /*
29   Class       : HYDROGUI_PrsPolyline
30   Description : Presentation for polyline object
31 */
32 class HYDROGUI_PrsPolyline : public HYDROGUI_Prs
33 {
34 public:
35   HYDROGUI_PrsPolyline( const Handle(HYDROData_Entity)& theObject );
36   virtual ~HYDROGUI_PrsPolyline();
37
38 public:
39   void                            setPath( const QPainterPath& thePath );
40   QPainterPath                    getPath() const;
41
42 public:
43   // from QGraphicsItem
44   virtual QRectF                  boundingRect() const;
45
46   // from GraphicsView_Object
47   virtual void                    compute();
48
49   virtual bool                    isMovable() const { return false; }
50
51   virtual bool                    checkHighlight( double theX, double theY, QCursor& theCursor ) const;
52
53   virtual bool                    select( double theX, double theY, const QRectF& theRect );
54   virtual void                    unselect();
55   virtual void                    setSelected( bool theState );
56
57 protected:
58   QGraphicsPathItem*              myPolylineItem;
59
60   QPainterPath                    myPath;
61 };
62
63 #endif