0028572: Modeling Algorithms - Wrong result of the mkface command
[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>
42cf5bc1 26#include <SelectMgr_SelectionManager.hxx>
27#include <Standard_Transient.hxx>
28#include <TCollection_AsciiString.hxx>
29#include <TCollection_ExtendedString.hxx>
30#include <TopLoc_Location.hxx>
31#include <TopoDS_Shape.hxx>
32#include <V3d_View.hxx>
33#include <V3d_Viewer.hxx>
7fd59977 34
7fd59977 35// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
42cf5bc1 36// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
37// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
7fd59977 38//=======================================================================
39//function : SetPolygonOffsets
40//purpose :
41//=======================================================================
42void AIS_InteractiveContext::SetPolygonOffsets(
43 const Handle(AIS_InteractiveObject)& anObj,
44 const Standard_Integer aMode,
60be1f9b 45 const Standard_ShortReal aFactor,
46 const Standard_ShortReal aUnits,
7fd59977 47 const Standard_Boolean updateviewer)
48{
49 if ( anObj.IsNull() )
50 return;
51
2ec85268 52 setContextToObject (anObj);
7fd59977 53 anObj->SetPolygonOffsets( aMode, aFactor, aUnits );
54
55 if ( updateviewer ) {
56 if( myObjects.IsBound( anObj ) ) {
57 Handle(AIS_GlobalStatus) STATUS = myObjects(anObj);
58 if ( STATUS->GraphicStatus() == AIS_DS_Displayed )
59 myMainVwr->Update();
60 }
61 }
62}
63
64
65//=======================================================================
66//function : HasPolygonOffsets
67//purpose :
68//=======================================================================
69Standard_Boolean AIS_InteractiveContext::HasPolygonOffsets(const Handle(AIS_InteractiveObject)& anObj) const
70{
71 return ( !anObj.IsNull() && anObj->HasPolygonOffsets() );
72}
73
74//=======================================================================
75//function : PolygonOffsets
76//purpose :
77//=======================================================================
78void AIS_InteractiveContext::PolygonOffsets(
79 const Handle(AIS_InteractiveObject)& anObj,
80 Standard_Integer& aMode,
60be1f9b 81 Standard_ShortReal& aFactor,
82 Standard_ShortReal& aUnits) const
7fd59977 83{
84 if ( HasPolygonOffsets( anObj ) )
85 anObj->PolygonOffsets( aMode, aFactor, aUnits );
86}
87// OCC4895 SAN 22/03/04 High-level interface for controlling polygon offsets
bc73b006 88
89//=======================================================================
90//function : DumpJson
91//purpose :
92//=======================================================================
93void AIS_InteractiveContext::DumpJson (Standard_OStream& theOStream, Standard_Integer) const
94{
95 OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
96
97 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myObjects.Size())
98
99 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, mgrSelector.get())
100 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myMainPM.get())
101 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myMainVwr.get())
102 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myMainSel.get())
103 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myLastActiveView)
104
105 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myLastPicked.get())
106
107 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myToHilightSelected)
108
109 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, mySelection.get())
110 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myFilters.get())
111 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myDefaultDrawer.get())
112
113 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myStyles[Prs3d_TypeOfHighlight_Selected])
114 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myStyles[Prs3d_TypeOfHighlight_Dynamic])
115 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myStyles[Prs3d_TypeOfHighlight_LocalSelected])
116 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myStyles[Prs3d_TypeOfHighlight_LocalDynamic])
117 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myStyles[Prs3d_TypeOfHighlight_SubIntensity])
118
119 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myDetectedSeq.Size())
120
121 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myCurDetected)
122 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myCurHighlighted)
123 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myPickingStrategy)
124 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myAutoHilight)
125 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myIsAutoActivateSelMode)
126}