0031321: C# wrapper - wrap AIS_ViewController
[occt.git] / src / AIS / AIS_InteractiveContext_3.cxx
CommitLineData
b311480e 1// Created on: 2001-01-09
2// Created by: Sergey Altukhov
973c2be1 3// Copyright (c) 2001-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
7fd59977 15
16// Modified: 22/03/04 ; SAN : OCC4895 High-level interface for controlling polygon offsets
17
7fd59977 18#include <AIS_GlobalStatus.hxx>
42cf5bc1 19#include <AIS_InteractiveContext.hxx>
20#include <AIS_InteractiveObject.hxx>
42cf5bc1 21#include <Prs3d_BasicAspect.hxx>
22#include <Prs3d_LineAspect.hxx>
23#include <Quantity_Color.hxx>
24#include <SelectMgr_EntityOwner.hxx>
25#include <SelectMgr_Filter.hxx>
26#include <SelectMgr_OrFilter.hxx>
27#include <SelectMgr_SelectionManager.hxx>
28#include <Standard_Transient.hxx>
29#include <TCollection_AsciiString.hxx>
30#include <TCollection_ExtendedString.hxx>
31#include <TopLoc_Location.hxx>
32#include <TopoDS_Shape.hxx>
33#include <V3d_View.hxx>
34#include <V3d_Viewer.hxx>
7fd59977 35
7fd59977 36// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
42cf5bc1 37// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
38// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
7fd59977 39//=======================================================================
40//function : SetPolygonOffsets
41//purpose :
42//=======================================================================
43void AIS_InteractiveContext::SetPolygonOffsets(
44 const Handle(AIS_InteractiveObject)& anObj,
45 const Standard_Integer aMode,
60be1f9b 46 const Standard_ShortReal aFactor,
47 const Standard_ShortReal aUnits,
7fd59977 48 const Standard_Boolean updateviewer)
49{
50 if ( anObj.IsNull() )
51 return;
52
2ec85268 53 setContextToObject (anObj);
7fd59977 54 anObj->SetPolygonOffsets( aMode, aFactor, aUnits );
55
56 if ( updateviewer ) {
57 if( myObjects.IsBound( anObj ) ) {
58 Handle(AIS_GlobalStatus) STATUS = myObjects(anObj);
59 if ( STATUS->GraphicStatus() == AIS_DS_Displayed )
60 myMainVwr->Update();
61 }
62 }
63}
64
65
66//=======================================================================
67//function : HasPolygonOffsets
68//purpose :
69//=======================================================================
70Standard_Boolean AIS_InteractiveContext::HasPolygonOffsets(const Handle(AIS_InteractiveObject)& anObj) const
71{
72 return ( !anObj.IsNull() && anObj->HasPolygonOffsets() );
73}
74
75//=======================================================================
76//function : PolygonOffsets
77//purpose :
78//=======================================================================
79void AIS_InteractiveContext::PolygonOffsets(
80 const Handle(AIS_InteractiveObject)& anObj,
81 Standard_Integer& aMode,
60be1f9b 82 Standard_ShortReal& aFactor,
83 Standard_ShortReal& aUnits) const
7fd59977 84{
85 if ( HasPolygonOffsets( anObj ) )
86 anObj->PolygonOffsets( aMode, aFactor, aUnits );
87}
88// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets