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

0023895: XCAF document does not store names for subfigures from IGES files

Fixed names for subfigures
Added test case bugs/xde/bug23895
This commit is contained in:
dbv 2013-04-15 18:14:16 +04:00
parent bcfb87ebe4
commit 275e812f4a
2 changed files with 32 additions and 0 deletions

View File

@ -40,6 +40,7 @@
#include <IGESData_LevelListEntity.hxx>
#include <TCollection_HAsciiString.hxx>
#include <XCAFDoc_ShapeMapTool.hxx>
#include <IGESBasic_SubfigureDef.hxx>
//=======================================================================
//function : IGESCAFControl_Reader
@ -233,6 +234,19 @@ Standard_Boolean IGESCAFControl_Reader::Transfer (Handle(TDocStd_Document) &doc)
}
}
}
//Checks that current entity is a subfigure
Handle(IGESBasic_SubfigureDef) aSubfigure = Handle(IGESBasic_SubfigureDef)::DownCast (ent);
if (GetNameMode() && !aSubfigure.IsNull() && STool->Search (S, L, Standard_True, Standard_True))
{
//In this case we attach subfigure name to the label, instead of default "COMPOUND"
Handle(TCollection_HAsciiString) aName = aSubfigure->Name();
aName->LeftAdjust();
aName->RightAdjust();
TCollection_ExtendedString anExtStrName (aName->ToCString());
TDataStd_Name::Set (L, anExtStrName);
}
}
CTool->ReverseChainsOfTreeNodes();

18
tests/bugs/xde/bug23895 Normal file
View File

@ -0,0 +1,18 @@
puts "============"
puts "OCC23895"
puts "============"
puts ""
#################################################################
# XCAF document shoud store names for subfigures from IGES files
#################################################################
ReadIges D [locate_data_file bug23895_test.igs]
set aName [XCheckProps D 0 0:1:1:2]
if { [regexp "ARROW" "$aName"] } {
puts "Ok: Subfigure name has been read correctly."
} else {
puts "Error: Subfigure name has not been read."
}