Salome HOME
refs #1327: correction of compilation errors
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_BathymetryPrs.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROGUI_BATHYMETRY_PRS_H
20 #define HYDROGUI_BATHYMETRY_PRS_H
21
22 #include <AIS_PointCloud.hxx>
23 #include <SelectMgr_EntityOwner.hxx>
24 #include <Bnd_Box.hxx>
25 #include <QList>
26
27 class HYDROGUI_BathymetryPrs : public AIS_PointCloud
28 {
29 public:
30   HYDROGUI_BathymetryPrs();
31   virtual ~HYDROGUI_BathymetryPrs();
32
33   virtual void SetPoints( const Handle(TColgp_HArray1OfPnt)&     theCoords,
34                           const Handle(Quantity_HArray1OfColor)& theColors = NULL );
35
36   int NbPoints() const;
37   gp_Pnt GetPoint( int theIndex ) const;
38
39   virtual void HilightOwnerWithColor( const Handle(PrsMgr_PresentationManager3d)& thePM,
40                                       const Handle(Graphic3d_HighlightStyle)& theColor,
41                                       const Handle(SelectMgr_EntityOwner)& theOwner );
42
43   virtual void HilightSelected( const Handle(PrsMgr_PresentationManager3d)& thePM,
44                                 const SelectMgr_SequenceOfOwner& theOwners );
45
46   virtual void ClearSelected();
47
48   void SetTextLabels( const QList<int>& );
49
50 protected:
51   virtual void Compute( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
52                         const Handle(Prs3d_Presentation)& thePresentation,
53                         const Standard_Integer theMode = 0 );
54   virtual void ComputeSelection( const Handle(SelectMgr_Selection)& theSelection,
55                                  const Standard_Integer theMode );
56
57   void UpdateBound();
58   void AddPoint( const Handle(Graphic3d_ArrayOfPoints)&, const Handle(SelectMgr_EntityOwner)& );
59
60 private:
61   Bnd_Box myBound;
62   QList<int> myTextIndices;
63 };
64
65 class HYDROGUI_BathymetryPointOwner : public SelectMgr_EntityOwner
66 {
67 public:
68   HYDROGUI_BathymetryPointOwner( const Handle(HYDROGUI_BathymetryPrs)&, int theIndex );
69   virtual ~HYDROGUI_BathymetryPointOwner();
70
71   virtual Standard_Boolean IsAutoHilight() const;
72   int GetIndex() const;
73
74 private:
75   int myIndex;
76 };
77
78 #endif