diff --git a/src/IGESCAFControl/IGESCAFControl_Reader.cxx b/src/IGESCAFControl/IGESCAFControl_Reader.cxx index ee5211eedc..1a2f5cb5ad 100755 --- a/src/IGESCAFControl/IGESCAFControl_Reader.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Reader.cxx @@ -40,6 +40,7 @@ #include #include #include +#include //======================================================================= //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(); diff --git a/tests/bugs/xde/bug23895 b/tests/bugs/xde/bug23895 new file mode 100644 index 0000000000..ee81e9bcbf --- /dev/null +++ b/tests/bugs/xde/bug23895 @@ -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." +} +