File: tedDrawingObject.c

package info (click to toggle)
ted 2.16-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,944 kB
  • ctags: 20,273
  • sloc: ansic: 167,980; makefile: 12,518; sh: 263
file content (492 lines) | stat: -rw-r--r-- 11,435 bytes parent folder | download
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/************************************************************************/
/*									*/
/*  Ted, Draw a Word 95 style drawing object.				*/
/*									*/
/************************************************************************/

#   include	"tedConfig.h"

#   include	<stddef.h>
#   include	<stdlib.h>
#   include	<stdio.h>
#   include	<math.h>

#   include	"tedApp.h"
#   include	"docDraw.h"

#   include	<appWinMeta.h>

#   include	<appDebugon.h>

/************************************************************************/
/*									*/
/*  Draw a Word 95 style rectangle drawing object on a pixmap.		*/
/*									*/
/************************************************************************/

static void tedDrawRectSetBg(	RGB8Color *		bg,
				int			p,
				const RGB8Color *	fore,
				const RGB8Color *	back )
    {
    bg->rgb8Red= ( p* fore->rgb8Red+ (100- p)* back->rgb8Red )/ 100;
    bg->rgb8Green= ( p* fore->rgb8Green+ (100- p)* back->rgb8Green )/ 100;
    bg->rgb8Blue= ( p* fore->rgb8Blue+ (100- p)* back->rgb8Blue )/ 100;

    return;
    }

static int tedDrawGetFill(	RGB8Color *		bg,
				int *			pFill,
				int *			pHatch,
				const DrawingObject *	wdo )
    {
    int		fill= 1;
    int		hatch= 0;

    switch( wdo->doFillPattern )
	{
	case DOfillCLEAR:
	    bg->rgb8Red= 255;
	    bg->rgb8Green= 255;
	    bg->rgb8Blue= 255;
	    fill= 0;
	    break;

	case DOfillSOLID:
	    *bg= wdo->doFillBackColor;
	    break;

	case DOfillSHADE_5P:
	    tedDrawRectSetBg( bg, 5, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_10P:
	    tedDrawRectSetBg( bg, 10, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_20P:
	    tedDrawRectSetBg( bg, 20, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_25P:
	    tedDrawRectSetBg( bg, 25, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_30P:
	    tedDrawRectSetBg( bg, 30, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_40P:
	    tedDrawRectSetBg( bg, 40, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_50P:
	    tedDrawRectSetBg( bg, 50, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_60P:
	    tedDrawRectSetBg( bg, 60, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_70P:
	    tedDrawRectSetBg( bg, 70, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_75P:
	    tedDrawRectSetBg( bg, 75, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_80P:
	    tedDrawRectSetBg( bg, 80, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;
	case DOfillSHADE_90P:
	    tedDrawRectSetBg( bg, 90, &(wdo->doFillForeColor),
						&(wdo->doFillBackColor) );
	    break;

	case DOfillDKHORIZ:
	case DOfillDKVERT:
	case DOfillDKFDIAG:
	case DOfillDKBDIAG:
	case DOfillDKCROSS:
	case DOfillDKDCROSS:
	case DOfillHORIZ:
	case DOfillVERT:
	case DOfillFDIAG:
	case DOfillBDIAG:
	case DOfillCROSS:
	case DOfillDCROSS:
	    hatch= 1;
	    *bg= wdo->doFillBackColor;
	    break;

	default:
	    LDEB(wdo->doFillPattern);
	    return -1;
	}

    *pFill= fill;
    *pHatch= hatch;
    return 0;
    }

static int tedDrawSetLineStyle(	AppDrawingData *	add,
				int *			pBorder,
				int			solidStyle,
				int			pixelsWide,
				const DrawingObject *	wdo )
    {
    int		border= 0;

    switch( wdo->doLineStyle )
	{
	case DOlineSOLID:
	    appMetaX11SetWindowsLineStyle( add, &border,
			    solidStyle, wdo->doLineWidth, pixelsWide );
	    break;

	case DOlineHOLLOW:
	    break;

	case DOlineDASH:
	    appMetaX11SetWindowsLineStyle( add, &border,
			    PS_DASH, wdo->doLineWidth, pixelsWide );
	    break;

	case DOlineDOT:
	    appMetaX11SetWindowsLineStyle( add, &border,
			    PS_DOT, wdo->doLineWidth, pixelsWide );
	    break;

	case DOlineDADO:
	    appMetaX11SetWindowsLineStyle( add, &border,
			    PS_DASHDOT, wdo->doLineWidth, pixelsWide );
	    break;

	case DOlineDADODO:
	    appMetaX11SetWindowsLineStyle( add, &border,
			    PS_DASHDOTDOT, wdo->doLineWidth, pixelsWide );
	    break;

	default:
	    LDEB(wdo->doLineStyle); return -1;
	}

    *pBorder= border;
    return 0;
    }

static int tedDrawArcPixmap(
				APP_BITMAP_IMAGE		pixmap,
				const InsertedObject *		io,
				const DrawingObject *		wdo,
				double				pixelsPerTwip,
				AppColors *			ac,
				AppDrawingData *		add,
				int				x,
				int				y,
				int				wide,
				int				high,
				int				a0,
				int				aS )
    {
    RGB8Color		co;
    APP_COLOR_RGB	xc;

    int			fill= 1;
    int			hatch= 0;
    int			border= 0;
    int			pixelsWide;

    appDrawSetForegroundWhite( add );

    appDrawFillRectangle( add, 0, 0, io->ioPixelsWide, io->ioPixelsHigh );

    if  ( tedDrawGetFill( &co, &fill, &hatch, wdo ) )
	{ LDEB(1); return -1;	}

    if  ( fill )
	{
	if  ( appColorRgb( &xc, ac, co.rgb8Red, co.rgb8Green, co.rgb8Blue ) )
	    { LDEB(1); return -1;	}

	appDrawSetForegroundColor( add, &xc );

	appDrawFillArc( add, x, y, wide, high, 64* a0, 64* aS );
	}

    pixelsWide= pixelsPerTwip* wdo->doLineWidth;
    if  ( pixelsWide == 0 )
	{ pixelsWide= 1;	}

    if  ( tedDrawSetLineStyle( add, &border, PS_INSIDEFRAME, pixelsWide, wdo ) )
	{ LDEB(1); return -1;	}

    if  ( border )
	{
	if  ( appColorRgb( &xc, ac,
			    wdo->doLineColor.rgb8Red,
			    wdo->doLineColor.rgb8Green,
			    wdo->doLineColor.rgb8Blue ) )
	    { LDEB(1); return -1;	}

	appDrawSetForegroundColor( add, &xc );

	appDrawDrawArc( add, x, y, wide, high, 64* a0, 64* aS );
	}

    return 0;
    }

static int tedDrawRectanglePixmap(
				APP_BITMAP_IMAGE		pixmap,
				const InsertedObject *		io,
				const DrawingObject *		wdo,
				double				pixelsPerTwip,
				AppColors *			ac,
				AppDrawingData *		add )
    {
    RGB8Color		co;
    APP_COLOR_RGB	xc;

    int			fill= 0;
    int			hatch= 0;
    int			border= 0;
    int			pixelsWide;

    if  ( tedDrawGetFill( &co, &fill, &hatch, wdo ) )
	{ LDEB(1); return -1;	}

    if  ( appColorRgb( &xc, ac, co.rgb8Red, co.rgb8Green, co.rgb8Blue ) )
	{ LDEB(1); return -1;	}

    appDrawSetForegroundColor( add, &xc );

    appDrawFillRectangle( add, 0, 0, io->ioPixelsWide, io->ioPixelsHigh );

    pixelsWide= pixelsPerTwip* wdo->doLineWidth;
    if  ( pixelsWide == 0 )
	{ pixelsWide= 1;	}

    if  ( tedDrawSetLineStyle( add, &border, PS_INSIDEFRAME, pixelsWide, wdo ) )
	{ LDEB(1); return -1;	}

    if  ( border )
	{
	int		x0= pixelsWide/ 2;
	int		y0= pixelsWide/ 2;
	int		x1= io->ioPixelsWide- 1- pixelsWide/ 2;
	int		y1= io->ioPixelsHigh- 1- pixelsWide/ 2;

	if  ( appColorRgb( &xc, ac,
			    wdo->doLineColor.rgb8Red,
			    wdo->doLineColor.rgb8Green,
			    wdo->doLineColor.rgb8Blue ) )
	    { LDEB(1); return -1;	}

	appDrawSetForegroundColor( add, &xc );

	appDrawDrawRectangle( add, x0, y0, x1- x0, y1- y0 );
	}

    return 0;
    }

static int tedDrawPolygonPixmap(
				APP_BITMAP_IMAGE		pixmap,
				const InsertedObject *		io,
				const DrawingObject *		wdo,
				int				close,
				double				pixelsPerTwip,
				AppColors *			ac,
				AppDrawingData *		add )
    {
    int			rval= 0;

    RGB8Color		co;
    APP_COLOR_RGB	xc;

    int			fill= 0;
    int			hatch= 0;
    int			border= 0;
    int			pixelsWide;
    int			i;

    APP_POINT *		points= (APP_POINT *)0;

    points= malloc( ( wdo->doPointCount+ 1)* sizeof( APP_POINT ) );
    if  ( ! points )
	{ LXDEB(wdo->doPointCount,points); rval= -1; goto ready; }

    for ( i= 0; i < wdo->doPointCount; i++ )
	{
	points[i].x= pixelsPerTwip* wdo->doPoints[i].x;
	points[i].y= pixelsPerTwip* wdo->doPoints[i].y;
	}
    points[wdo->doPointCount]= points[0];

    appDrawSetForegroundWhite( add );

    appDrawFillRectangle( add, 0, 0, io->ioPixelsWide, io->ioPixelsHigh );

    if  ( close )
	{
	if  ( tedDrawGetFill( &co, &fill, &hatch, wdo ) )
	    { LDEB(1); rval= -1; goto ready;	}

	if  ( fill )
	    {
	    if  ( appColorRgb( &xc, ac,
				co.rgb8Red, co.rgb8Green, co.rgb8Blue ) )
		{ LDEB(1); rval= -1; goto ready;	}

	    appDrawSetForegroundColor( add, &xc );

	    appDrawFillPolygon( add, points, wdo->doPointCount+ 1 );
	    }
	}

    pixelsWide= pixelsPerTwip* wdo->doLineWidth;
    if  ( pixelsWide == 0 )
	{ pixelsWide= 1;	}

    if  ( tedDrawSetLineStyle( add, &border, PS_INSIDEFRAME, pixelsWide, wdo ) )
	{ LDEB(1); rval= -1; goto ready;	}

    if  ( border )
	{
	if  ( appColorRgb( &xc, ac,
			    wdo->doLineColor.rgb8Red,
			    wdo->doLineColor.rgb8Green,
			    wdo->doLineColor.rgb8Blue ) )
	    { LDEB(1); rval= -1; goto ready;	}

	appDrawSetForegroundColor( add, &xc );

	appDrawDrawLines( add, points, wdo->doPointCount+ ( close != 0 ) );
	}

  ready:

    if  ( points )
	{ free( points );	}

    return rval;
    }


/************************************************************************/
/*									*/
/*  Draw a Word 95 style drawing object on a pixmap.			*/
/*									*/
/************************************************************************/

int tedDrawDrawingPixmap(	APP_BITMAP_IMAGE		pixmap,
				const InsertedObject *		io,
				AppColors *			ac,
				AppDrawingData *		parentAdd )
    {
    const DrawingObject *	wdo= &(io->ioDrawingObject);

    int				rval= 0;
    AppDrawingData		add;

    double			pixelsPerTwip;
    double			magnification;

    pixelsPerTwip= sqrt( (double)( io->ioPixelsWide* io->ioPixelsHigh )/
					( io->ioTwipsWide* io->ioTwipsHigh ) );
    magnification= pixelsPerTwip/ parentAdd->addMagnifiedPixelsPerTwip;

    appInitDrawingData( &add );

    appCloneDrawingEnvironment( &add, parentAdd,
				    magnification, pixelsPerTwip, pixmap );

    switch( wdo->doKind )
	{
	case DOkindRECT:
	    if  ( tedDrawRectanglePixmap( pixmap, io, wdo,
						pixelsPerTwip, ac, &add ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    break;

	case DOkindPOLYGON:
	    if  ( tedDrawPolygonPixmap( pixmap, io, wdo, 1,
						pixelsPerTwip, ac, &add ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    break;

	case DOkindPOLYLINE:
	    if  ( tedDrawPolygonPixmap( pixmap, io, wdo, 0,
						pixelsPerTwip, ac, &add ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    break;

	case DOkindLINE:
	    if  ( tedDrawPolygonPixmap( pixmap, io, wdo, 0,
						pixelsPerTwip, ac, &add ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    break;

	case DOkindARC:
	    {
	    int		a0= 0;
	    int		aS= 90;
	    int		x0= 0;
	    int		y0= 0;

	    if  ( wdo->doArcFlipX )
		{
		if  ( wdo->doArcFlipY )
		    {
		    x0= -io->ioPixelsWide;
		    a0= 0;
		    }
		else{
		    x0= -io->ioPixelsWide;
		    y0= -io->ioPixelsHigh;
		    a0= 270;
		    }
		}
	    else{
		if  ( wdo->doArcFlipY )
		    {
		    /* ! */
		    a0= 90;
		    }
		else{
		    y0= -io->ioPixelsHigh;
		    a0= 180;
		    }
		}

	    if  ( tedDrawArcPixmap( pixmap, io, wdo,
			    pixelsPerTwip, ac, &add,
			    x0, y0, 2* io->ioPixelsWide, 2* io->ioPixelsHigh,
			    a0, aS ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    }
	    break;

	case DOkindELLIPSE:
	    if  ( tedDrawArcPixmap( pixmap, io, wdo,
			    pixelsPerTwip, ac, &add,
			    0, 0, io->ioPixelsWide, io->ioPixelsHigh,
			    0, 360 ) )
		{ LDEB(wdo->doKind); rval= -1; goto ready;	}
	    break;

	default:
	    LDEB(wdo->doKind); rval= -1; goto ready;
	}

  ready:

    appCleanDrawingData( &add );

    return rval;
    }