Salome HOME
lot 12 GUI p.1
[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 <QVector>
26
27 class HYDROGUI_ShapeBathymetry;
28
29 class HYDROGUI_BathymetryPrs : public AIS_PointCloud
30 {
31 public:
32   HYDROGUI_BathymetryPrs( const HYDROGUI_ShapeBathymetry* );
33   virtual ~HYDROGUI_BathymetryPrs();
34
35   virtual void SetPoints( const Handle(TColgp_HArray1OfPnt)&     theCoords,
36                           const Handle(Quantity_HArray1OfColor)& theColors = NULL );
37
38   int NbPoints() const;
39   gp_Pnt GetPoint( int theIndex ) const;
40
41   virtual void HilightOwnerWithColor( const Handle(PrsMgr_PresentationManager3d)& thePM,
42                                       const Handle(Graphic3d_HighlightStyle)& theColor,
43                                       const Handle(SelectMgr_EntityOwner)& theOwner );
44
45   virtual void HilightSelected( const Handle(PrsMgr_PresentationManager3d)& thePM,
46                                 const SelectMgr_SequenceOfOwner& theOwners );
47
48   virtual void ClearSelected();
49
50   void SetTextLabels( const QVector<int>& );
51
52   HYDROGUI_ShapeBathymetry* GetShape() const;
53
54 protected:
55   virtual void Compute( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
56                         const Handle(Prs3d_Presentation)& thePresentation,
57                         const Standard_Integer theMode = 0 );
58   virtual void ComputeSelection( const Handle(SelectMgr_Selection)& theSelection,
59                                  const Standard_Integer theMode );
60
61   void UpdateBound();
62   void AddPoint( const Handle(Graphic3d_ArrayOfPoints)&, const Handle(SelectMgr_EntityOwner)& );
63
64 private:
65   const HYDROGUI_ShapeBathymetry* myShape;
66   Bnd_Box myBound;
67   QVector<int> myTextIndices;
68 };
69
70 class HYDROGUI_BathymetryPointOwner : public SelectMgr_EntityOwner
71 {
72 public:
73   HYDROGUI_BathymetryPointOwner( const Handle(HYDROGUI_BathymetryPrs)&, int theIndex );
74   virtual ~HYDROGUI_BathymetryPointOwner();
75
76   virtual Standard_Boolean IsAutoHilight() const;
77   int GetIndex() const;
78
79 private:
80   int myIndex;
81 };
82
83 #endif