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
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include <IFSelect_WorkLibrary.ixx>
#include <TCollection_HAsciiString.hxx>
#include <Message_Messenger.hxx>
#include <Message.hxx>
// all deferred but Copy (virtual default)
IFSelect_WorkLibrary::IFSelect_WorkLibrary () { thelevdef = 0; }
Standard_Boolean IFSelect_WorkLibrary::CopyModel
(const Handle(Interface_InterfaceModel)& /*original*/,
const Handle(Interface_InterfaceModel)& newmodel,
const Interface_EntityIterator& list,
Interface_CopyTool& TC) const
{
for (list.Start(); list.More(); list.Next())
TC.TransferEntity (list.Value());
TC.FillModel(newmodel);
return Standard_True;
}
void IFSelect_WorkLibrary::DumpEntity
(const Handle(Interface_InterfaceModel)& model,
const Handle(Interface_Protocol)& protocol,
const Handle(Standard_Transient)& entity,
const Handle(Message_Messenger)& S) const
{
if (thelevhlp.IsNull()) DumpEntity (model,protocol,entity,S,0);
else DumpEntity (model,protocol,entity,S,thelevdef);
}
void IFSelect_WorkLibrary::SetDumpLevels
(const Standard_Integer def, const Standard_Integer max)
{
thelevdef = def;
thelevhlp.Nullify();
if (max >= 0) thelevhlp = new Interface_HArray1OfHAsciiString (0,max);
}
void IFSelect_WorkLibrary::DumpLevels
(Standard_Integer& def, Standard_Integer& max) const
{
def = thelevdef;
if (thelevhlp.IsNull()) { def = 0; max = -1; }
else max = thelevhlp->Upper();
}
void IFSelect_WorkLibrary::SetDumpHelp
(const Standard_Integer level, const Standard_CString help)
{
if (thelevhlp.IsNull()) return;
if (level < 0 || level > thelevhlp->Upper()) return;
Handle(TCollection_HAsciiString) str = new TCollection_HAsciiString (help);
thelevhlp->SetValue (level,str);
}
Standard_CString IFSelect_WorkLibrary::DumpHelp
(const Standard_Integer level) const
{
if (thelevhlp.IsNull()) return "";
if (level < 0 || level > thelevhlp->Upper()) return "";
Handle(TCollection_HAsciiString) str = thelevhlp->Value (level);
if (str.IsNull()) return "";
return str->ToCString();
}
|