blob: 7fedf387022e11734fd78c9dce4fe660183cf865 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#include <IFSelect_SelectSent.ixx>
#include <stdio.h>
IFSelect_SelectSent::IFSelect_SelectSent
(const Standard_Integer sentcount, const Standard_Boolean atleast)
{ thecnt = sentcount; thelst = atleast; }
Standard_Integer IFSelect_SelectSent::SentCount () const
{ return thecnt; }
Standard_Boolean IFSelect_SelectSent::AtLeast () const
{ return thelst; }
Interface_EntityIterator IFSelect_SelectSent::RootResult
(const Interface_Graph& G) const
{
Standard_Boolean direct = IsDirect();
Interface_EntityIterator res;
Interface_EntityIterator inp = InputResult(G);
for (inp.Start(); inp.More(); inp.Next()) {
Standard_Integer num = G.EntityNumber(inp.Value());
if (num == 0) continue;
Standard_Integer nb = G.Status(num); // nb sent
Standard_Boolean ok;
if (thecnt == 0) ok = (nb == 0);
else if (thelst) ok = (nb >= thecnt);
else ok = (nb == thecnt);
if (ok == direct) res.AddItem (G.Entity(num));
}
return res;
}
Standard_Boolean IFSelect_SelectSent::Sort
(const Standard_Integer ,
const Handle(Standard_Transient)&,
const Handle(Interface_InterfaceModel)& ) const
{ return Standard_False; }
TCollection_AsciiString IFSelect_SelectSent::ExtractLabel () const
{
char lb[80];
TCollection_AsciiString lab;
if (thecnt == 0) lab.AssignCat ("Remaining (non-sent) entities");
if (thecnt == 1 && thelst) lab.AssignCat ("Sent entities");
if (thecnt == 1 && !thelst) lab.AssignCat ("Sent once (non-duplicated) entities");
if (thecnt == 2 && thelst) lab.AssignCat ("Sent several times entities");
if (thecnt == 2 && !thelst) lab.AssignCat ("Sent just twice entities");
if (thecnt > 2) {
if (thelst) sprintf (lb,"Sent at least %d times entities", thecnt);
else sprintf (lb,"Sent just %d times entities", thecnt);
lab.AssignCat (lb);
}
return lab;
}
|