1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0029816: Add possibility to get/set shape presentations for GD&T label through one function

new methods GetGDTPresentations(.) and GetGDTPresentations(.) for Dimension Tool
This commit is contained in:
isn 2018-03-13 16:22:28 +03:00 committed by abv
parent 2e32a64577
commit 61ace3dc72
2 changed files with 109 additions and 0 deletions

View File

@ -26,6 +26,8 @@
#include <TDF_Label.hxx>
#include <TDF_RelocationTable.hxx>
#include <XCAFDimTolObjects_DatumObject.hxx>
#include <XCAFDimTolObjects_DimensionObject.hxx>
#include <XCAFDimTolObjects_GeomToleranceObject.hxx>
#include <XCAFDoc.hxx>
#include <XCAFDoc_Dimension.hxx>
#include <XCAFDoc_GeomTolerance.hxx>
@ -991,3 +993,100 @@ void XCAFDoc_DimTolTool::Paste(const Handle(TDF_Attribute)& /*into*/,
{
}
//=======================================================================
//function : GetGDTPresentations
//purpose :
//=======================================================================
void XCAFDoc_DimTolTool::GetGDTPresentations(NCollection_IndexedDataMap<TDF_Label,
TopoDS_Shape, TDF_LabelMapHasher>& theGDTLabelToShape) const
{
TDF_LabelSequence aGDTs;
GetDimensionLabels(aGDTs);
for (Standard_Integer i = 1; i <= aGDTs.Length(); i++) {
Handle(XCAFDoc_Dimension) aDimAttr;
const TDF_Label& aCL = aGDTs.Value(i);
if (!aCL.FindAttribute(XCAFDoc_Dimension::GetID(),aDimAttr))
continue;
Handle(XCAFDimTolObjects_DimensionObject) anObject = aDimAttr->GetObject();
if (anObject.IsNull())
continue;
TopoDS_Shape aShape = anObject->GetPresentation();
if (!aShape.IsNull())
theGDTLabelToShape.Add(aCL, aShape);
}
aGDTs.Clear();
GetGeomToleranceLabels(aGDTs);
for (Standard_Integer i = 1; i <= aGDTs.Length(); i++) {
Handle(XCAFDoc_GeomTolerance) aGTAttr;
const TDF_Label& aCL = aGDTs.Value(i);
if (!aCL.FindAttribute(XCAFDoc_GeomTolerance::GetID(),aGTAttr))
continue;
Handle(XCAFDimTolObjects_GeomToleranceObject) anObject = aGTAttr->GetObject();
if (anObject.IsNull())
continue;
TopoDS_Shape aShape = anObject->GetPresentation();
if (!aShape.IsNull())
theGDTLabelToShape.Add(aCL, aShape);
}
aGDTs.Clear();
GetDatumLabels(aGDTs);
for (Standard_Integer i = 1; i <= aGDTs.Length(); i++) {
Handle(XCAFDoc_Datum) aGTAttr;
const TDF_Label& aCL = aGDTs.Value(i);
if (!aCL.FindAttribute(XCAFDoc_Datum::GetID(),aGTAttr))
continue;
Handle(XCAFDimTolObjects_DatumObject) anObject = aGTAttr->GetObject();
if (anObject.IsNull())
continue;
TopoDS_Shape aShape = anObject->GetPresentation();
if (!aShape.IsNull())
theGDTLabelToShape.Add(aCL, aShape);
}
}
//=======================================================================
//function : SetGDTPresentations
//purpose :
//=======================================================================
void XCAFDoc_DimTolTool::SetGDTPresentations(NCollection_IndexedDataMap<TDF_Label, TopoDS_Shape, TDF_LabelMapHasher>& theGDTLabelToPrs)
{
for (Standard_Integer i = 1; i <= theGDTLabelToPrs.Extent(); i++)
{
const TDF_Label& aCL = theGDTLabelToPrs.FindKey(i);
Handle(XCAFDoc_Dimension) aDimAttrDim;
if (aCL.FindAttribute(XCAFDoc_Dimension::GetID(),aDimAttrDim))
{
Handle(XCAFDimTolObjects_DimensionObject) anObject = aDimAttrDim->GetObject();
if (anObject.IsNull())
continue;
const TopoDS_Shape& aPrs = theGDTLabelToPrs.FindFromIndex(i);
anObject->SetPresentation(aPrs, anObject->GetPresentationName());
aDimAttrDim->SetObject(anObject);
continue;
}
Handle(XCAFDoc_GeomTolerance) aDimAttrG;
if (aCL.FindAttribute(XCAFDoc_GeomTolerance::GetID(),aDimAttrG))
{
Handle(XCAFDimTolObjects_GeomToleranceObject) anObject = aDimAttrG->GetObject();
if (anObject.IsNull())
continue;
const TopoDS_Shape& aPrs = theGDTLabelToPrs.FindFromIndex(i);
anObject->SetPresentation(aPrs, anObject->GetPresentationName());
aDimAttrG->SetObject(anObject);
continue;
}
Handle(XCAFDoc_Datum) aDimAttrD;
if (aCL.FindAttribute(XCAFDoc_Datum::GetID(),aDimAttrD))
{
Handle(XCAFDimTolObjects_DatumObject) anObject = aDimAttrD->GetObject();
if (anObject.IsNull())
continue;
const TopoDS_Shape& aPrs = theGDTLabelToPrs.FindFromIndex(i);
anObject->SetPresentation(aPrs, anObject->GetPresentationName());
aDimAttrD->SetObject(anObject);
continue;
}
}
}

View File

@ -25,6 +25,8 @@
#include <Standard_Integer.hxx>
#include <TColStd_HArray1OfReal.hxx>
#include <TopoDS_Shape.hxx>
#include <NCollection_IndexedDataMap.hxx>
#include <NCollection_DataMap.hxx>
class XCAFDoc_ShapeTool;
class TDF_Label;
@ -236,6 +238,14 @@ public:
//! Mark the given GDT as locked.
Standard_EXPORT void Lock(const TDF_Label& theViewL) const;
//! fill the map GDT label -> shape presentation
Standard_EXPORT void GetGDTPresentations(NCollection_IndexedDataMap<TDF_Label, TopoDS_Shape, TDF_LabelMapHasher>& theGDTLabelToShape) const;
//! Set shape presentation for GDT labels according to given map (theGDTLabelToPrs)
//! theGDTLabelToPrsName map is an additional argument, can be used to set presentation names.
//! If label is not in the theGDTLabelToPrsName map, the presentation name will be empty
Standard_EXPORT void SetGDTPresentations(NCollection_IndexedDataMap<TDF_Label, TopoDS_Shape, TDF_LabelMapHasher>& theGDTLabelToPrs);
//! Unlock the given GDT.
Standard_EXPORT void Unlock(const TDF_Label& theViewL) const;