blob: 852da0978f2c60fe926042874a11612cf98976b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <IGESSelect_SelectSubordinate.ixx>
#include <IGESData_IGESEntity.hxx>
#include <Interface_Macros.hxx>
IGESSelect_SelectSubordinate::IGESSelect_SelectSubordinate
(const Standard_Integer status) { thestatus = status; }
Standard_Integer IGESSelect_SelectSubordinate::Status () const
{ return thestatus; }
Standard_Boolean IGESSelect_SelectSubordinate::Sort
(const Standard_Integer, const Handle(Standard_Transient)& ent,
const Handle(Interface_InterfaceModel)& model) const
{
DeclareAndCast(IGESData_IGESEntity,igesent,ent);
if (igesent.IsNull()) return Standard_False;
Standard_Integer sub = igesent->SubordinateStatus();
if (sub == thestatus) return Standard_True;
if (thestatus == 4 && (sub == 1 || sub == 3)) return Standard_True;
if (thestatus == 5 && (sub == 2 || sub == 3)) return Standard_True;
if (thestatus == 6 && sub != 0) return Standard_True;
return Standard_False;
}
TCollection_AsciiString IGESSelect_SelectSubordinate::ExtractLabel () const
{
TCollection_AsciiString lab("IGESEntity, Subordinate ");
if (thestatus == 0) lab.AssignCat("Independant (0)");
if (thestatus == 1) lab.AssignCat("Physically only Dependant (1)");
if (thestatus == 2) lab.AssignCat("Logically only Dependant (2) ");
if (thestatus == 3) lab.AssignCat("Both Phys. and Log. Dependant (3)");
if (thestatus == 4) lab.AssignCat("Physically Dependant (1 or 3)");
if (thestatus == 5) lab.AssignCat("Logically Dependant (2 or 3)");
if (thestatus == 6) lab.AssignCat("Dependant in any way (1 or 2 or 3)");
return lab;
}
|