Salome HOME
Merge branch 'BR_H2018_3' into BR_2018_V8_5
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_AISShape.cxx
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 #include <HYDROGUI_AISShape.h>
20 #include <AIS_DisplayMode.hxx>
21 #include <Prs3d_IsoAspect.hxx>
22 #include <Prs3d_LineAspect.hxx>
23 #include <StdPrs_WFShape.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(HYDROGUI_AISShape, AIS_Shape)
26
27 HYDROGUI_AISShape::HYDROGUI_AISShape( const TopoDS_Shape& theShape )
28   : AIS_Shape( theShape ),
29     myBorderColor( Quantity_NOC_BLACK )
30 {
31 }
32
33 HYDROGUI_AISShape::~HYDROGUI_AISShape()
34 {
35 }
36
37 Quantity_Color HYDROGUI_AISShape::GetBorderColor() const
38 {
39   return myBorderColor;
40 }
41
42 void HYDROGUI_AISShape::SetBorderColor( const Quantity_Color& theBorderColor )
43 {
44   myBorderColor = theBorderColor;
45   Redisplay( Standard_True );
46 }
47
48 void HYDROGUI_AISShape::Compute( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
49                                  const Handle(Prs3d_Presentation)& thePresentation, 
50                                  const Standard_Integer theMode )
51 {
52   thePresentation->Clear();
53
54   myDrawer->FaceBoundaryAspect()->SetColor( myBorderColor );
55   myDrawer->FreeBoundaryAspect()->SetColor( myBorderColor );
56   myDrawer->UnFreeBoundaryAspect()->SetColor( myBorderColor );
57   myDrawer->LineAspect()->SetColor( myBorderColor );
58   myDrawer->SeenLineAspect()->SetColor( myBorderColor );
59   myDrawer->WireAspect()->SetColor( myBorderColor );
60   myDrawer->UIsoAspect()->SetColor( myBorderColor );
61   myDrawer->VIsoAspect()->SetColor( myBorderColor );
62
63   switch( theMode )
64   {
65   case AIS_WireFrame:
66   case AIS_Shaded:
67     AIS_Shape::Compute( thePresentationManager, thePresentation, theMode );
68     break;
69   }
70
71   if( theMode==AIS_Shaded )
72     StdPrs_WFShape::Add( thePresentation, Shape(), myDrawer );
73 }