mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-02 09:46:43 +08:00
51 lines
1.7 KiB
C++
Executable File
51 lines
1.7 KiB
C++
Executable File
#include <IFSelect_SelectSignedShared.ixx>
|
|
|
|
|
|
IFSelect_SelectSignedShared::IFSelect_SelectSignedShared
|
|
(const Handle(IFSelect_Signature)& matcher,
|
|
const Standard_CString signtext, const Standard_Boolean exact,
|
|
const Standard_Integer level)
|
|
: IFSelect_SelectExplore (level) ,
|
|
thematcher (matcher) , thesigntext (signtext) , theexact (exact) { }
|
|
|
|
Handle(IFSelect_Signature) IFSelect_SelectSignedShared::Signature () const
|
|
{ return thematcher; }
|
|
|
|
const TCollection_AsciiString& IFSelect_SelectSignedShared::SignatureText () const
|
|
{ return thesigntext; }
|
|
|
|
Standard_Boolean IFSelect_SelectSignedShared::IsExact () const
|
|
{ return theexact; }
|
|
|
|
|
|
Standard_Boolean IFSelect_SelectSignedShared::Explore
|
|
(const Standard_Integer level, const Handle(Standard_Transient)& ent,
|
|
const Interface_Graph& G, Interface_EntityIterator& explored) const
|
|
{
|
|
if (thematcher->Matches (ent,G.Model(),thesigntext,theexact)) return Standard_True;
|
|
|
|
// sinon, on fait le tri ici
|
|
Interface_EntityIterator list = G.Shareds (ent);
|
|
// Si plus de Shared, alors c est cuit
|
|
if (list.NbEntities() == 0) return Standard_False;
|
|
|
|
// Sinon, trier si on est au niveau
|
|
if (level < Level()) { explored = list; return Standard_True; }
|
|
for (list.Start(); list.More(); list.Next()) {
|
|
if (thematcher->Matches (list.Value(),G.Model(),thesigntext,theexact))
|
|
explored.AddItem (list.Value());
|
|
}
|
|
return Standard_True;
|
|
}
|
|
|
|
|
|
TCollection_AsciiString IFSelect_SelectSignedShared::ExploreLabel () const
|
|
{
|
|
TCollection_AsciiString lab("Shared,");
|
|
lab.AssignCat (thematcher->Name());
|
|
if (theexact) lab.AssignCat(" matching ");
|
|
else lab.AssignCat(" containing ");
|
|
lab.AssignCat(thesigntext);
|
|
return lab;
|
|
}
|