blob: ce9bbe033e2c9b7c56996cc550ed88119dbf0d23 (
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
|
#include <XSControl_SelectForTransfer.ixx>
XSControl_SelectForTransfer::XSControl_SelectForTransfer () { }
XSControl_SelectForTransfer::XSControl_SelectForTransfer
(const Handle(XSControl_TransferReader)& TR)
{ theTR = TR; }
void XSControl_SelectForTransfer::SetReader
(const Handle(XSControl_TransferReader)& TR)
{ theTR = TR; }
void XSControl_SelectForTransfer::SetActor
(const Handle(Transfer_ActorOfTransientProcess)& act)
{ theAC = act; }
Handle(Transfer_ActorOfTransientProcess) XSControl_SelectForTransfer::Actor () const
{ return theAC; }
Handle(XSControl_TransferReader) XSControl_SelectForTransfer::Reader () const
{ return theTR; }
Standard_Boolean XSControl_SelectForTransfer::Sort
(const Standard_Integer /*rank*/, const Handle(Standard_Transient)& ent,
const Handle(Interface_InterfaceModel)& /*model*/) const
{
Handle(Transfer_ActorOfTransientProcess) act = theAC;
if (act.IsNull() && !theTR.IsNull()) act = theTR->Actor();
if (!act.IsNull()) return act->Recognize(ent);//,theTR->TransientProcess());//act->Recognize(ent);
return Standard_False;
}
TCollection_AsciiString XSControl_SelectForTransfer::ExtractLabel () const
{
if (!theTR.IsNull()) return TCollection_AsciiString
("Recognized for Transfer (current actor)");
return TCollection_AsciiString("Recognized for Transfer");
}
|