blob: c7535801c6761cf50b086ae65f55cfc9c55e0a17 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
/*This file is used to define all attrib structures of the library used to
generate CGM files*/
#ifndef CGMATT_H
#define CGMATT_H
#ifdef CGMATT_C
#define Extern
#else
#define Extern extern
#endif
#include "cgmtypes.h"
struct sharedatt {
Index auxindex;
RGBcolour aux;
Enum colmode,
transparency;
float xgrain,
ygrain;
};
typedef struct sharedatt Sharedatt;
struct lineatt {
Index type;
float width;
Enum widthmode;
Index colindex;
RGBcolour col;
Sharedatt *shared;
};
typedef struct lineatt Lineatt;
struct markeratt {
Index type;
float size;
Enum sizemode;
Index colindex;
RGBcolour col;
Sharedatt *shared;
};
typedef struct markeratt Markeratt;
struct textatt {
int fontcount; /* environmental variables */
char **fontlist;
int csetcount;
char **csetlist;
Enum csetannouncer;
Index fontindex; /* bundleable attributes */
Enum precision;
float expansion;
float spacing;
Index colindex;
RGBcolour col;
float height; /* device-independent variables */
float xup,
yup,
xbase,
ybase;
Enum path;
Enum halign,
valign;
float hcont,
vcont;
Index csindex,
acsindex;
Sharedatt *shared;
};
typedef struct textatt Textatt;
struct fillatt {
Index style;
Index colindex;
RGBcolour col;
Index hatch,
pattern;
Sharedatt *shared;
};
typedef struct fillatt Fillatt;
struct edgeatt {
Index type;
float width;
Enum widthmode;
Index colindex;
RGBcolour col;
Sharedatt *shared;
};
typedef struct edgeatt Edgeatt;
struct linebundle {
Index type;
float width;
Index colindex;
Colourentry col;
};
typedef struct linebundle Linebundle;
struct markerbundle {
Index type;
float size;
Index colindex;
Colourentry col;
};
typedef struct markerbundle Markerbundle;
struct textbundle {
Index font;
Enum precision;
float expansion;
float spacing;
Index colindex;
Colourentry col;
};
typedef struct textbundle Textbundle;
struct fillbundle {
Index style;
Index pattern;
Index hatch;
Index colindex;
Colourentry col;
};
typedef struct fillbundle Fillbundle;
struct edgebundle {
Index type;
float width;
Index colindex;
Colourentry col;
};
typedef struct edgebundle Edgebundle;
Extern void ATTline();
Extern void ATTmarker();
Extern void ATTtext();
Extern void ATTfill();
Extern void ATTedge();
#undef Extern
#endif /* end of cgmatt.h */
|