File: clipwin.c

package info (click to toggle)
glhack 1.2-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 26,744 kB
  • sloc: ansic: 208,571; cpp: 13,139; yacc: 2,005; makefile: 1,152; lex: 377; sh: 121; awk: 89; sed: 11
file content (268 lines) | stat: -rw-r--r-- 9,052 bytes parent folder | download | duplicates (30)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
static USHORT Palette[] = {
	0x0AAA,	/* color #0 */
	0x0000,	/* color #1 */
	0x0FFF,	/* color #2 */
	0x058B,	/* color #3 */
	0x000F,	/* color #4 */
	0x0F0F,	/* color #5 */
	0x00FF,	/* color #6 */
	0x0FFF	/* color #7 */
#define PaletteColorCount 8
};

#define PALETTE Palette

static SHORT ClipBorderVectors1[] = {
	0,0,
	76,0,
	76,11,
	0,11,
	0,0
};
static struct Border ClipBorder1 = {
	-1,-1,	/* XY origin relative to container TopLeft */
	3,0,JAM1,	/* front pen, back pen and drawmode */
	5,	/* number of XY vectors */
	ClipBorderVectors1,	/* pointer to XY vectors */
	NULL	/* next border in list */
};

static struct IntuiText ClipIText1 = {
	4,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	15,1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Cancel",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipCancel = {
	NULL,	/* next gadget */
	240,59,	/* origin XY of hit box relative to window TopLeft */
	75,10,	/* hit box width and height */
	NULL,	/* gadget flags */
	RELVERIFY,	/* activation flags */
	BOOLGADGET,	/* gadget type flags */
	(APTR)&ClipBorder1,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText1,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	NULL,	/* SpecialInfo structure */
	GADCANCEL,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

static SHORT ClipBorderVectors2[] = {
	0,0,
	78,0,
	78,11,
	0,11,
	0,0
};
static struct Border ClipBorder2 = {
	-1,-1,	/* XY origin relative to container TopLeft */
	3,0,JAM1,	/* front pen, back pen and drawmode */
	5,	/* number of XY vectors */
	ClipBorderVectors2,	/* pointer to XY vectors */
	NULL	/* next border in list */
};

static struct IntuiText ClipIText2 = {
	4,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	24,1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Okay",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipOkay = {
	&ClipCancel,	/* next gadget */
	17,60,	/* origin XY of hit box relative to window TopLeft */
	77,10,	/* hit box width and height */
	NULL,	/* gadget flags */
	RELVERIFY,	/* activation flags */
	BOOLGADGET,	/* gadget type flags */
	(APTR)&ClipBorder2,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText2,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	NULL,	/* SpecialInfo structure */
	GADOKAY,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

static struct PropInfo ClipClipXCLIPSInfo = {
	AUTOKNOB+FREEHORIZ,	/* PropInfo flags */
	24504,-1,	/* horizontal and vertical pot values */
	10922,-1,	/* horizontal and vertical body values */
};

static struct Image ClipImage1 = {
	43,0,	/* XY origin relative to container TopLeft */
	24,3,	/* Image width and height in pixels */
	0,	/* number of bitplanes in Image */
	NULL,	/* pointer to ImageData */
	0x0000,0x0000,	/* PlanePick and PlaneOnOff */
	NULL	/* next Image structure */
};

static struct IntuiText ClipIText3 = {
	3,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	-116,-1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"X Clip Border:",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipXCLIP = {
	&ClipOkay,	/* next gadget */
	134,37,	/* origin XY of hit box relative to window TopLeft */
	-199,7,	/* hit box width and height */
	GRELWIDTH,	/* gadget flags */
	RELVERIFY+GADGIMMEDIATE,	/* activation flags */
	PROPGADGET,	/* gadget type flags */
	(APTR)&ClipImage1,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText3,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	(APTR)&ClipClipXCLIPSInfo,	/* SpecialInfo structure */
	XCLIP,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

static struct PropInfo ClipClipYCLIPSInfo = {
	AUTOKNOB+FREEHORIZ,	/* PropInfo flags */
	13106,-1,	/* horizontal and vertical pot values */
	10922,-1,	/* horizontal and vertical body values */
};

static struct Image ClipImage2 = {
	22,0,	/* XY origin relative to container TopLeft */
	24,3,	/* Image width and height in pixels */
	0,	/* number of bitplanes in Image */
	NULL,	/* pointer to ImageData */
	0x0000,0x0000,	/* PlanePick and PlaneOnOff */
	NULL	/* next Image structure */
};

static struct IntuiText ClipIText4 = {
	3,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	-116,-1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Y Clip Border:",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipYCLIP = {
	&ClipXCLIP,	/* next gadget */
	134,46,	/* origin XY of hit box relative to window TopLeft */
	-199,7,	/* hit box width and height */
	GRELWIDTH,	/* gadget flags */
	RELVERIFY+GADGIMMEDIATE,	/* activation flags */
	PROPGADGET,	/* gadget type flags */
	(APTR)&ClipImage2,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText4,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	(APTR)&ClipClipYCLIPSInfo,	/* SpecialInfo structure */
	YCLIP,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

static struct PropInfo ClipClipXSIZESInfo = {
	AUTOKNOB+FREEHORIZ,	/* PropInfo flags */
	26212,-1,	/* horizontal and vertical pot values */
	10922,-1,	/* horizontal and vertical body values */
};

static struct Image ClipImage3 = {
	45,0,	/* XY origin relative to container TopLeft */
	24,3,	/* Image width and height in pixels */
	0,	/* number of bitplanes in Image */
	NULL,	/* pointer to ImageData */
	0x0000,0x0000,	/* PlanePick and PlaneOnOff */
	NULL	/* next Image structure */
};

static struct IntuiText ClipIText5 = {
	3,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	-124,-1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"X Scale Factor:",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipXSIZE = {
	&ClipYCLIP,	/* next gadget */
	134,15,	/* origin XY of hit box relative to window TopLeft */
	-199,7,	/* hit box width and height */
	GRELWIDTH,	/* gadget flags */
	RELVERIFY+GADGIMMEDIATE,	/* activation flags */
	PROPGADGET,	/* gadget type flags */
	(APTR)&ClipImage3,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText5,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	(APTR)&ClipClipXSIZESInfo,	/* SpecialInfo structure */
	XSIZE,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

static struct PropInfo ClipClipYSIZESInfo = {
	AUTOKNOB+FREEHORIZ,	/* PropInfo flags */
	-25937,-1,	/* horizontal and vertical pot values */
	10922,-1,	/* horizontal and vertical body values */
};

static struct Image ClipImage4 = {
	69,0,	/* XY origin relative to container TopLeft */
	24,3,	/* Image width and height in pixels */
	0,	/* number of bitplanes in Image */
	NULL,	/* pointer to ImageData */
	0x0000,0x0000,	/* PlanePick and PlaneOnOff */
	NULL	/* next Image structure */
};

static struct IntuiText ClipIText6 = {
	3,0,JAM1,	/* front and back text pens, drawmode and fill byte */
	-124,-1,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Y Scale Factor:",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

static struct Gadget ClipYSIZE = {
	&ClipXSIZE,	/* next gadget */
	134,24,	/* origin XY of hit box relative to window TopLeft */
	-199,7,	/* hit box width and height */
	GRELWIDTH,	/* gadget flags */
	RELVERIFY+GADGIMMEDIATE,	/* activation flags */
	PROPGADGET,	/* gadget type flags */
	(APTR)&ClipImage4,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&ClipIText6,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	(APTR)&ClipClipYSIZESInfo,	/* SpecialInfo structure */
	YSIZE,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

#define ClipGadgetList1 ClipYSIZE

static struct NewWindow ClipNewWindowStructure1 = {
	114,16,	/* window XY origin relative to TopLeft of screen */
	346,76,	/* window width and height */
	0,1,	/* detail and block pens */
	NEWSIZE+MOUSEMOVE+GADGETDOWN+GADGETUP+CLOSEWINDOW+ACTIVEWINDOW+VANILLAKEY+INTUITICKS,	/* IDCMP flags */
	WINDOWSIZING+WINDOWDRAG+WINDOWDEPTH+WINDOWCLOSE+ACTIVATE+NOCAREREFRESH,	/* other window flags */
	&ClipYSIZE,	/* first gadget in gadget list */
	NULL,	/* custom CHECKMARK imagery */
	"Edit Clipping Parameters",	/* window title */
	NULL,	/* custom screen pointer */
	NULL,	/* custom bitmap */
	350,76,	/* minimum width and height */
	-1,-1,	/* maximum width and height */
	CUSTOMSCREEN	/* destination screen type */
};


/* end of PowerWindows source generation */