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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
-- File: DDocStd.cdl
-- Created: Wed Mar 1 14:05:19 2000
-- Author: Denis PASCAL
-- <dp@dingox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 2000
package DDocStd
---Purpose: This package provides Draw services to test CAF
-- standard documents (see TDocStd package)
--
-- It provides :
--
-- * Modification registration and Update management.
--
-- * External references mechanism
--
-- * UNDO/REDO
--
-- * Document Creation, Save and Restore
uses
Standard,
TCollection,
TColStd,
Draw,
TDF,
TDocStd,
DDF
is
---Category: Draw variable wich handle a CAF document
-- ========================================
class DrawDocument;
---Category: draw Application/Document/Label/Attribute tools
-- =========================================================
Find (Appli : in out Application from TDocStd;
Complain : in Boolean from Standard = Standard_True)
---Purpose: return the application of the session. False
-- if there is noone current application.
returns Boolean from Standard;
GetDocument (Name : in out CString from Standard;
Doc : in out Document from TDocStd;
Complain : in Boolean from Standard = Standard_True)
returns Boolean from Standard;
Find (Document : in Document from TDocStd;
Entry : in CString from Standard;
Label : in out Label from TDF;
Complain : in Boolean from Standard = Standard_True)
returns Boolean from Standard;
Find (Document : in Document from TDocStd;
Entry : in CString from Standard;
ID : in GUID from Standard;
A : in out Attribute from TDF;
Complain : Boolean from Standard = Standard_True)
returns Boolean;
ReturnLabel(theCommands : in out Interpretor from Draw; L : Label from TDF)
returns Interpretor from Draw;
---C++: return &
---Category: Commands
-- ==================
AllCommands(theCommands : in out Interpretor from Draw);
ApplicationCommands (theCommands : in out Interpretor from Draw);
---Purpose: NewDocument, Open, SaveAs, Save
DocumentCommands (theCommands : in out Interpretor from Draw);
---Purpose: Undo, Redo, SetModified, Propagate
ToolsCommands (theCommands : in out Interpretor from Draw);
---Purpose : Modified, Update
MTMCommands (theCommands : in out Interpretor from Draw);
---Purpose : Create, Add, Remove, Open, Commit, Undo, Redo, SetNestedMode
end DDocStd;
|