Salome HOME
refs #740 (p.1 + p.2)
[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_WFDeflectionShape.hxx>
24
25 IMPLEMENT_STANDARD_HANDLE(HYDROGUI_AISShape, AIS_Shape)
26 IMPLEMENT_STANDARD_RTTIEXT(HYDROGUI_AISShape, AIS_Shape)
27
28 HYDROGUI_AISShape::HYDROGUI_AISShape( const TopoDS_Shape& theShape )
29   : AIS_Shape( theShape ),
30     myBorderColor( Quantity_NOC_BLACK )
31 {
32 }
33
34 HYDROGUI_AISShape::~HYDROGUI_AISShape()
35 {
36 }
37
38 Quantity_Color HYDROGUI_AISShape::GetBorderColor() const
39 {
40   return myBorderColor;
41 }
42
43 void HYDROGUI_AISShape::SetBorderColor( const Quantity_Color& theBorderColor )
44 {
45   myBorderColor = theBorderColor;
46   Redisplay( Standard_True );
47 }
48
49 void HYDROGUI_AISShape::Compute( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
50                                  const Handle(Prs3d_Presentation)& thePresentation, 
51                                  const Standard_Integer theMode )
52 {
53   thePresentation->Clear();
54
55   myDrawer->FaceBoundaryAspect()->SetColor( myBorderColor );
56   myDrawer->FreeBoundaryAspect()->SetColor( myBorderColor );
57   myDrawer->UnFreeBoundaryAspect()->SetColor( myBorderColor );
58   myDrawer->LineAspect()->SetColor( myBorderColor );
59   myDrawer->SeenLineAspect()->SetColor( myBorderColor );
60   myDrawer->WireAspect()->SetColor( myBorderColor );
61   myDrawer->UIsoAspect()->SetColor( myBorderColor );
62   myDrawer->VIsoAspect()->SetColor( myBorderColor );
63
64   switch( theMode )
65   {
66   case AIS_WireFrame:
67   case AIS_Shaded:
68     AIS_Shape::Compute( thePresentationManager, thePresentation, theMode );
69     break;
70   }
71
72   if( theMode==AIS_Shaded )
73     StdPrs_WFDeflectionShape::Add( thePresentation, Shape(), myDrawer );
74 }