#include #include #include #include #include #include #include IFSelect_DispPerSignature::IFSelect_DispPerSignature () { } Handle(IFSelect_SignCounter) IFSelect_DispPerSignature::SignCounter () const { return thesign; } void IFSelect_DispPerSignature::SetSignCounter (const Handle(IFSelect_SignCounter)& sign) { thesign = sign; thesign->SetList (Standard_True); } Standard_CString IFSelect_DispPerSignature::SignName () const { return (Standard_CString ) (thesign.IsNull() ? "???" : thesign->Name()); } TCollection_AsciiString IFSelect_DispPerSignature::Label () const { char lab[50]; sprintf (lab,"One File per Signature %s",SignName()); return TCollection_AsciiString(lab); } Standard_Boolean IFSelect_DispPerSignature::LimitedMax (const Standard_Integer nbent, Standard_Integer& max) const { max = nbent; return Standard_True; } void IFSelect_DispPerSignature::Packets (const Interface_Graph& G, IFGraph_SubPartsIterator& packs) const { if (thesign.IsNull()) { packs.AddPart(); packs.GetFromIter (FinalSelection()->RootResult(G)); return; } thesign->Clear(); thesign->AddList (FinalSelection()->RootResult(G).Content(),G.Model()); Handle(TColStd_HSequenceOfHAsciiString) list = thesign->List(); Standard_Integer i,nb,is,nbs = list->Length(); Handle(TCollection_HAsciiString) asign; Handle(TColStd_HSequenceOfTransient) ents; for (is = 1; is <= nbs; is ++) { asign = list->Value(is); ents = thesign->Entities (asign->ToCString()); if (ents.IsNull()) continue; packs.AddPart(); nb = ents->Length(); for (i = 1; i <= nb; i ++) packs.GetFromEntity (ents->Value(i),Standard_False); } }