blob: 048da2d7b516738c8b97311c867b782e08e473a9 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
-- File: HLRTest_ShapeData.cdl
-- Created: Fri Aug 21 17:10:30 1992
-- Author: Christophe MARION
-- <cma@sdsun1>
---Copyright: Matra Datavision 1992
class ShapeData from HLRTest inherits TShared from MMgt
---Purpose: Contains the colors of a shape.
uses
Color from Draw
is
Create(CVis,COVis,CIVis,CHid,COHid,CIHid : Color from Draw)
returns mutable ShapeData from HLRTest;
VisibleColor(me: mutable; CVis : Color from Draw)
---C++: inline
is static;
VisibleOutLineColor(me: mutable; COVis : Color from Draw)
---C++: inline
is static;
VisibleIsoColor(me: mutable; CIVis : Color from Draw)
---C++: inline
is static;
HiddenColor(me: mutable; CHid : Color from Draw)
---C++: inline
is static;
HiddenOutLineColor(me: mutable; COHid : Color from Draw)
---C++: inline
is static;
HiddenIsoColor(me: mutable; CIHid : Color from Draw)
---C++: inline
is static;
VisibleColor(me) returns Color from Draw
---C++: inline
is static;
VisibleOutLineColor(me) returns Color from Draw
---C++: inline
is static;
VisibleIsoColor(me) returns Color from Draw
---C++: inline
is static;
HiddenColor(me) returns Color from Draw
---C++: inline
is static;
HiddenOutLineColor(me) returns Color from Draw
---C++: inline
is static;
HiddenIsoColor(me) returns Color from Draw
---C++: inline
is static;
fields
myVColor : Color from Draw;
myVOColor : Color from Draw;
myVIColor : Color from Draw;
myHColor : Color from Draw;
myHOColor : Color from Draw;
myHIColor : Color from Draw;
end ShapeData;
|