Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_HWPFILTER_SOURCE_DRAWING_H
21 : #define INCLUDED_HWPFILTER_SOURCE_DRAWING_H
22 :
23 : #include "precompile.h"
24 :
25 : #include <list>
26 : #include <math.h>
27 :
28 : #include <osl/diagnose.h>
29 :
30 : #include <comphelper/newarray.hxx>
31 :
32 : #include "hwplib.h"
33 : #include "hwpfile.h"
34 : #include "hiodev.h"
35 : #include "hbox.h"
36 : #include "drawdef.h"
37 :
38 : enum
39 : {
40 : OBJFUNC_LOAD,
41 : OBJFUNC_FREE,
42 : OBJFUNC_DISPLAY,
43 : OBJFUNC_NITEM
44 : };
45 :
46 : enum
47 : {
48 : BEGIN_GRADATION = 0, LINEAR, RADIAL, CONICAL, SQUARE,
49 : END_GRADATION, BITMAP_PATTERN
50 : };
51 :
52 : #define OBJRET_FILE_OK 0
53 : #define OBJRET_FILE_ERROR (-1)
54 : #define OBJRET_FILE_NO_PRIVATE_BLOCK (-2)
55 : #define OBJRET_FILE_NO_PRIVATE_BLOCK_2 (-3)
56 :
57 : typedef int (*HWPDOFuncType) (int, HWPDrawingObject *, int, void *, int);
58 :
59 : #define HWPDOFunc(hdo, cmd, argp, argv) \
60 : (HWPDOFuncTbl[(hdo)->type]((hdo)->type, (hdo), (cmd), (argp), (argv)))
61 :
62 : static int HWPDOLineFunc(int, HWPDrawingObject *, int, void *, int);
63 : static int HWPDORectFunc(int, HWPDrawingObject *, int, void *, int);
64 : static int HWPDOEllipseFunc(int, HWPDrawingObject *, int, void *, int);
65 : static int HWPDOArcFunc(int, HWPDrawingObject *, int, void *, int);
66 : static int HWPDOFreeFormFunc(int, HWPDrawingObject *, int, void *, int);
67 : static int HWPDOTextBoxFunc(int, HWPDrawingObject *, int, void *, int);
68 : static int HWPDOEllipse2Func(int, HWPDrawingObject *, int, void *, int);
69 : static int HWPDOArc2Func(int, HWPDrawingObject *, int, void *, int);
70 : static int HWPDOContainerFunc(int, HWPDrawingObject *, int, void *, int);
71 : static HWPPara *LoadParaList();
72 :
73 : HWPDOFuncType HWPDOFuncTbl[] =
74 : {
75 : HWPDOContainerFunc,
76 : HWPDOLineFunc,
77 : HWPDORectFunc,
78 : HWPDOEllipseFunc,
79 : HWPDOArcFunc,
80 : HWPDOFreeFormFunc,
81 : HWPDOTextBoxFunc,
82 : HWPDOFreeFormFunc,
83 : HWPDOEllipse2Func,
84 : HWPDOArc2Func,
85 : HWPDOFreeFormFunc,
86 : };
87 :
88 : static HMemIODev *hmem = 0;
89 :
90 : static int count = 0;
91 :
92 : inline bool HAVE_FCOLOR(HWPDrawingObject * hdo)
93 : {
94 : return hdo->property.fill_color != HWPDO_COLOR_NONE;
95 : }
96 :
97 :
98 : inline bool HAVE_PATTERN(HWPDrawingObject * hdo)
99 : {
100 : return (hdo->property.pattern_type & HWPDO_PAT_TYPE_BITS)
101 : != HWPDO_PAT_SOLID && hdo->property.pattern_color != HWPDO_COLOR_NONE;
102 : }
103 :
104 :
105 : inline bool HAVE_GRADATION(HWPDrawingObject * hdo)
106 : {
107 : return hdo->property.gstyle > BEGIN_GRADATION &&
108 : hdo->property.gstyle < END_GRADATION &&
109 : hdo->property.fromcolor != HWPDO_COLOR_NONE &&
110 : hdo->property.tocolor != HWPDO_COLOR_NONE;
111 : }
112 :
113 :
114 : inline bool HAVE_BITMAP_PATTERN(HWPDrawingObject * hdo)
115 : {
116 : return hdo->property.gstyle == BITMAP_PATTERN &&
117 : hdo->property.szPatternFile[0];
118 : }
119 :
120 :
121 : inline bool HAS_PAT(HWPDrawingObject * hdo)
122 : {
123 : return HAVE_FCOLOR(hdo) || HAVE_PATTERN(hdo) ||
124 : HAVE_GRADATION(hdo) || HAVE_BITMAP_PATTERN(hdo);
125 : }
126 :
127 0 : static void SetHdoParallRgn(HWPDrawingObject * hdo, int width, int height)
128 : {
129 0 : hdo->property.parall.pt[0].x = 0;
130 0 : hdo->property.parall.pt[0].y = 0;
131 0 : hdo->property.parall.pt[1].x = width;
132 0 : hdo->property.parall.pt[1].y = 0;
133 0 : hdo->property.parall.pt[2].x = width;
134 0 : hdo->property.parall.pt[2].y = height;
135 0 : }
136 :
137 0 : static bool SkipPrivateBlock(int type)
138 : {
139 : int n;
140 :
141 0 : if (type == OBJRET_FILE_NO_PRIVATE_BLOCK)
142 : {
143 0 : if (!hmem->read4b(n))
144 0 : return false;
145 0 : if (hmem->state() || hmem->skipBlock(n) != n)
146 0 : return false;
147 : }
148 0 : if (!hmem->read4b(n))
149 0 : return false;
150 0 : if (hmem->state())
151 0 : return false;
152 0 : return hmem->skipBlock(n) == n;
153 : }
154 :
155 : static int SizeExpected;
156 : static int SizeRead;
157 :
158 0 : static int ReadSizeField(int size)
159 : {
160 0 : SizeExpected = size;
161 0 : if (!hmem->read4b(SizeRead))
162 0 : return -1;
163 0 : if (hmem->state())
164 0 : return -1;
165 0 : return SizeRead;
166 : }
167 :
168 0 : static bool SkipUnusedField(void)
169 : {
170 0 : return (SizeExpected >= SizeRead) &&
171 0 : hmem->skipBlock(SizeRead - SizeExpected) != 0;
172 : }
173 :
174 :
175 : #define HDOFILE_HEADER_SIZE (2*4+16) // 16=sizeof(ZZRect)
176 : #define HDOFILE_COMMON_SIZE (7*4+16+44)
177 :
178 : #define HDOFILE_HAS_NEXT 0x01
179 : #define HDOFILE_HAS_CHILD 0x02
180 :
181 0 : static bool LoadCommonHeader(HWPDrawingObject * hdo, unsigned short * link_info)
182 : {
183 : uint size, common_size;
184 :
185 0 : if (!hmem)
186 0 : return false;
187 0 : if (!hmem->read4b(size))
188 0 : return false;
189 0 : if (hmem->state())
190 0 : return false;
191 0 : if (size < HDOFILE_COMMON_SIZE)
192 0 : return false;
193 :
194 0 : common_size = HDOFILE_COMMON_SIZE;
195 : unsigned short tmp16;
196 0 : if (!hmem->read2b(tmp16))
197 0 : return false;
198 0 : hdo->type = tmp16;
199 0 : if (!hmem->read2b(tmp16))
200 0 : return false;
201 0 : *link_info = tmp16;
202 0 : if (!hmem->read4b(hdo->offset.x))
203 0 : return false;
204 0 : if (!hmem->read4b(hdo->offset.y))
205 0 : return false;
206 0 : if (!hmem->read4b(hdo->extent.w))
207 0 : return false;
208 0 : if (!hmem->read4b(hdo->extent.h))
209 0 : return false;
210 0 : if (!hmem->read4b(hdo->offset2.x))
211 0 : return false;
212 0 : if (!hmem->read4b(hdo->offset2.y))
213 0 : return false;
214 :
215 0 : if (hmem->state())
216 0 : return false;
217 :
218 0 : if (!hmem->read4b(hdo->vrect.x))
219 0 : return false;
220 0 : if (!hmem->read4b(hdo->vrect.y))
221 0 : return false;
222 0 : if (!hmem->read4b(hdo->vrect.w))
223 0 : return false;
224 0 : if (!hmem->read4b(hdo->vrect.h))
225 0 : return false;
226 :
227 : // read bare property 44 bytes
228 0 : if (!hmem->read4b(hdo->property.line_pstyle))
229 0 : return false;
230 0 : if (!hmem->read4b(hdo->property.line_hstyle))
231 0 : return false;
232 0 : if (!hmem->read4b(hdo->property.line_tstyle))
233 0 : return false;
234 0 : if (!hmem->read4b(hdo->property.line_color))
235 0 : return false;
236 : unsigned int tmp32;
237 0 : if (!hmem->read4b(tmp32))
238 0 : return false;
239 0 : hdo->property.line_width = static_cast<hunit>(tmp32);
240 0 : if (!hmem->read4b(hdo->property.fill_color))
241 0 : return false;
242 0 : if (!hmem->read4b(hdo->property.pattern_type))
243 0 : return false;
244 0 : if (!hmem->read4b(hdo->property.pattern_color))
245 0 : return false;
246 0 : if (!hmem->read4b(tmp32))
247 0 : return false;
248 0 : hdo->property.hmargin = static_cast<hunit>(tmp32);
249 0 : if (!hmem->read4b(tmp32))
250 0 : return false;
251 0 : hdo->property.vmargin = static_cast<hunit>(tmp32);
252 0 : if (!hmem->read4b(hdo->property.flag))
253 0 : return false;
254 : // read rotation property 32 bytes
255 0 : if ((size >= common_size + 32)
256 0 : && (hdo->property.flag & HWPDO_FLAG_ROTATION))
257 : {
258 0 : if (!hmem->read4b(hdo->property.rot_originx))
259 0 : return false;
260 0 : if (!hmem->read4b(hdo->property.rot_originy))
261 0 : return false;
262 0 : for (int ii = 0; ii < 3; ++ii)
263 : {
264 0 : if (!hmem->read4b(hdo->property.parall.pt[ii].x))
265 0 : return false;
266 0 : if (!hmem->read4b(hdo->property.parall.pt[ii].y))
267 0 : return false;
268 : }
269 0 : common_size += 32;
270 : }
271 : else
272 0 : SetHdoParallRgn(hdo, hdo->extent.w, hdo->extent.h);
273 :
274 : // read gradient property 28 bytes
275 0 : if ((size >= common_size + 28) &&
276 0 : (hdo->property.flag & HWPDO_FLAG_GRADATION))
277 : {
278 0 : if (!hmem->read4b(hdo->property.fromcolor))
279 0 : return false;
280 0 : if (!hmem->read4b(hdo->property.tocolor))
281 0 : return false;
282 0 : if (!hmem->read4b(hdo->property.gstyle))
283 0 : return false;
284 0 : if (!hmem->read4b(hdo->property.angle))
285 0 : return false;
286 0 : if (!hmem->read4b(hdo->property.center_x))
287 0 : return false;
288 0 : if (!hmem->read4b(hdo->property.center_y))
289 0 : return false;
290 0 : if (!hmem->read4b(hdo->property.nstep))
291 0 : return false;
292 0 : common_size += 28;
293 : }
294 :
295 : // read bitmap property 278 bytes
296 0 : if ((size >= common_size + 278) && \
297 0 : (hdo->property.flag & HWPDO_FLAG_BITMAP))
298 : {
299 0 : if (!hmem->read4b(hdo->property.offset1.x))
300 0 : return false;
301 0 : if (!hmem->read4b(hdo->property.offset1.y))
302 0 : return false;
303 0 : if (!hmem->read4b(hdo->property.offset2.x))
304 0 : return false;
305 0 : if (!hmem->read4b(hdo->property.offset2.y))
306 0 : return false;
307 0 : if (!hmem->readBlock(hdo->property.szPatternFile, 261))
308 0 : return false;
309 0 : if (!hmem->read1b(hdo->property.pictype))
310 0 : return false;
311 0 : common_size += 278;
312 : }
313 0 : if( ( size >= common_size + 3 ) && ( hdo->property.flag & HWPDO_FLAG_WATERMARK ) )
314 : //if( ( size >= common_size ) && ( hdo->property.flag >> 20 & 0x01 ) )
315 : {
316 0 : if (size - common_size >= 5)
317 0 : hmem->skipBlock(2);
318 : unsigned char tmp8;
319 0 : if (!hmem->read1b(tmp8))
320 0 : return false;
321 0 : hdo->property.luminance = tmp8;
322 0 : if (!hmem->read1b(tmp8))
323 0 : return false;
324 0 : hdo->property.contrast = tmp8;
325 0 : if (!hmem->read1b(tmp8))
326 0 : return false;
327 0 : hdo->property.greyscale = tmp8;
328 :
329 0 : common_size += 5;
330 : }
331 : else
332 : {
333 0 : hdo->property.luminance = 0;
334 0 : hdo->property.contrast = 0;
335 0 : hdo->property.greyscale = 0;
336 : }
337 0 : hdo->property.pPara = 0L;
338 :
339 0 : if( ( size > common_size ) && (hdo->property.flag & HWPDO_FLAG_AS_TEXTBOX) )
340 : {
341 0 : hmem->skipBlock(8);
342 0 : hdo->property.pPara = LoadParaList();
343 0 : if( hdo->property.pPara )
344 0 : return true;
345 : else
346 0 : return false;
347 : }
348 :
349 0 : if (size <= common_size)
350 0 : return true;
351 0 : return hmem->skipBlock(size - common_size ) != 0;
352 : }
353 :
354 0 : static HWPDrawingObject *LoadDrawingObject(void)
355 : {
356 0 : fprintf(stderr, "LoadDrawingObject\n");
357 :
358 : HWPDrawingObject *hdo, *head, *prev;
359 : int res;
360 :
361 : unsigned short link_info;
362 :
363 0 : head = prev = NULL;
364 0 : do
365 : {
366 0 : hdo = new HWPDrawingObject;
367 0 : if (!LoadCommonHeader(hdo, &link_info))
368 : {
369 0 : goto error;
370 : }
371 0 : if (hdo->type < 0 || hdo->type >= HWPDO_NITEMS)
372 : {
373 0 : hdo->type = HWPDO_RECT;
374 0 : if (!SkipPrivateBlock(OBJRET_FILE_NO_PRIVATE_BLOCK))
375 : {
376 0 : goto error;
377 : }
378 : }
379 : else
380 : {
381 0 : switch (res = HWPDOFunc(hdo, OBJFUNC_LOAD, NULL, 0))
382 : {
383 : case OBJRET_FILE_ERROR:
384 0 : goto error;
385 : case OBJRET_FILE_OK:
386 0 : break;
387 : case OBJRET_FILE_NO_PRIVATE_BLOCK:
388 : case OBJRET_FILE_NO_PRIVATE_BLOCK_2:
389 0 : if (!SkipPrivateBlock(res))
390 0 : goto error;
391 0 : break;
392 : }
393 : }
394 0 : if (link_info & HDOFILE_HAS_CHILD)
395 : {
396 0 : hdo->child = LoadDrawingObject();
397 0 : if (hdo->child == NULL)
398 : {
399 0 : goto error;
400 : }
401 : }
402 0 : if (prev == NULL)
403 0 : head = hdo;
404 : else
405 0 : prev->next = hdo;
406 0 : prev = hdo;
407 : }
408 0 : while (link_info & HDOFILE_HAS_NEXT);
409 :
410 0 : return head;
411 : error:
412 : // drawing object can be list.
413 : // hdo = current item, head = list;
414 :
415 0 : if (hdo != NULL)
416 : {
417 0 : if (hdo->type < 0 || hdo->type >= HWPDO_NITEMS)
418 : {
419 0 : hdo->type = HWPDO_RECT;
420 : }
421 :
422 0 : HWPDOFunc(hdo, OBJFUNC_FREE, NULL, 0);
423 0 : delete hdo;
424 : }
425 0 : if( prev )
426 : {
427 0 : prev->next = NULL;
428 0 : return head;
429 : }
430 : else
431 0 : return 0;
432 : }
433 :
434 :
435 0 : static bool LoadDrawingObjectBlock(Picture * pic)
436 : {
437 : int size;
438 0 : if (!hmem->read4b(size))
439 0 : return false;
440 :
441 0 : if (hmem->state() || size < HDOFILE_HEADER_SIZE)
442 0 : return false;
443 :
444 0 : if (!hmem->read4b(pic->picinfo.picdraw.zorder))
445 0 : return false;
446 0 : if (!hmem->read4b(pic->picinfo.picdraw.mbrcnt))
447 0 : return false;
448 0 : if (!hmem->read4b(pic->picinfo.picdraw.vrect.x))
449 0 : return false;
450 0 : if (!hmem->read4b(pic->picinfo.picdraw.vrect.y))
451 0 : return false;
452 0 : if (!hmem->read4b(pic->picinfo.picdraw.vrect.w))
453 0 : return false;
454 0 : if (!hmem->read4b(pic->picinfo.picdraw.vrect.h))
455 0 : return false;
456 :
457 0 : if (size > HDOFILE_HEADER_SIZE &&
458 0 : !hmem->skipBlock(size - HDOFILE_HEADER_SIZE))
459 0 : return false;
460 :
461 0 : pic->picinfo.picdraw.hdo = LoadDrawingObject();
462 0 : if (pic->picinfo.picdraw.hdo == 0)
463 0 : return false;
464 0 : return true;
465 : }
466 :
467 : // object manipulation function
468 : static int
469 0 : HWPDODefaultFunc(int , HWPDrawingObject * , int cmd, void *, int)
470 : {
471 0 : if (cmd == OBJFUNC_LOAD)
472 0 : return OBJRET_FILE_NO_PRIVATE_BLOCK;
473 0 : return OBJRET_FILE_OK;
474 : }
475 :
476 : static int
477 0 : HWPDOLineFunc(int type, HWPDrawingObject * hdo, int cmd, void *argp, int argv)
478 : {
479 0 : int ret = OBJRET_FILE_OK;
480 0 : switch (cmd)
481 : {
482 : case OBJFUNC_LOAD:
483 0 : if (ReadSizeField(4) < 4)
484 0 : return OBJRET_FILE_ERROR;
485 0 : if (!hmem->read4b(hdo->u.line_arc.flip))
486 0 : return OBJRET_FILE_ERROR;
487 0 : if (hmem->state())
488 0 : return OBJRET_FILE_ERROR;
489 0 : if (!SkipUnusedField())
490 0 : return OBJRET_FILE_ERROR;
491 0 : ret = OBJRET_FILE_NO_PRIVATE_BLOCK_2;
492 0 : break;
493 : default:
494 0 : ret = HWPDODefaultFunc(type, hdo, cmd, argp, argv);
495 0 : break;
496 : }
497 0 : return ret;
498 : }
499 :
500 :
501 : // rectangle
502 :
503 : static int
504 0 : HWPDORectFunc(int type, HWPDrawingObject * hdo, int cmd, void *argp, int argv)
505 : {
506 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
507 : }
508 :
509 :
510 : // ellipse
511 :
512 : static int
513 0 : HWPDOEllipseFunc(int type, HWPDrawingObject * hdo,
514 : int cmd, void *argp, int argv)
515 : {
516 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
517 : }
518 :
519 : #define WTMM(x) ((double)(x) / 1800. * 25.4)
520 : static int
521 0 : HWPDOEllipse2Func(int type, HWPDrawingObject * hdo,
522 : int cmd, void *argp, int argv)
523 : {
524 0 : switch (cmd)
525 : {
526 : case OBJFUNC_LOAD:
527 0 : if (ReadSizeField(16) < 16)
528 0 : return OBJRET_FILE_ERROR;
529 0 : if (!hmem->read4b(hdo->u.arc.radial[0].x))
530 0 : return OBJRET_FILE_ERROR;
531 0 : if (!hmem->read4b(hdo->u.arc.radial[0].y))
532 0 : return OBJRET_FILE_ERROR;
533 0 : if (!hmem->read4b(hdo->u.arc.radial[1].x))
534 0 : return OBJRET_FILE_ERROR;
535 0 : if (!hmem->read4b(hdo->u.arc.radial[1].y))
536 0 : return OBJRET_FILE_ERROR;
537 0 : if (ReadSizeField(0) < 0)
538 0 : return OBJRET_FILE_ERROR;
539 0 : break;
540 : default:
541 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
542 : }
543 0 : return OBJRET_FILE_OK;
544 : }
545 :
546 :
547 : // arc
548 :
549 : static int
550 0 : HWPDOArcFunc(int type, HWPDrawingObject * hdo, int cmd, void *argp, int argv)
551 : {
552 0 : switch (cmd)
553 : {
554 : case OBJFUNC_LOAD:
555 0 : if (ReadSizeField(4) < 4)
556 0 : return OBJRET_FILE_ERROR;
557 0 : if (!hmem->read4b(hdo->u.line_arc.flip))
558 0 : return OBJRET_FILE_ERROR;
559 0 : if (hmem->state())
560 0 : return OBJRET_FILE_ERROR;
561 0 : if (!SkipUnusedField())
562 0 : return OBJRET_FILE_ERROR;
563 0 : break;
564 : default:
565 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
566 : }
567 0 : return OBJRET_FILE_OK;
568 : }
569 :
570 :
571 : static int
572 0 : HWPDOArc2Func(int type, HWPDrawingObject * hdo, int cmd, void *argp, int argv)
573 : {
574 0 : int ret = OBJRET_FILE_OK;
575 0 : switch (cmd)
576 : {
577 : case OBJFUNC_LOAD:
578 0 : ret = OBJRET_FILE_NO_PRIVATE_BLOCK;
579 0 : break;
580 : default:
581 0 : ret = HWPDODefaultFunc(type, hdo, cmd, argp, argv);
582 0 : break;
583 : }
584 0 : return ret;
585 : }
586 :
587 :
588 : static int
589 0 : HWPDOFreeFormFunc(int type, HWPDrawingObject * hdo,
590 : int cmd, void *argp, int argv)
591 : {
592 0 : switch (cmd)
593 : {
594 : case OBJFUNC_LOAD:
595 : {
596 0 : hdo->u.freeform.pt = 0;
597 0 : if (ReadSizeField(4) < 4)
598 0 : return OBJRET_FILE_ERROR;
599 0 : if (!hmem->read4b(hdo->u.freeform.npt))
600 0 : return OBJRET_FILE_ERROR;
601 0 : if (hmem->state())
602 0 : return OBJRET_FILE_ERROR;
603 0 : if (!SkipUnusedField())
604 0 : return OBJRET_FILE_ERROR;
605 :
606 0 : int size = hdo->u.freeform.npt * sizeof(ZZPoint);
607 :
608 0 : if (ReadSizeField(size) < size)
609 0 : return OBJRET_FILE_ERROR;
610 0 : if (hdo->u.freeform.npt)
611 : {
612 : hdo->u.freeform.pt =
613 0 : ::comphelper::newArray_null<ZZPoint>(hdo->u.freeform.npt);
614 0 : if (hdo->u.freeform.pt == NULL)
615 : {
616 0 : hdo->u.freeform.npt = 0;
617 0 : return OBJRET_FILE_ERROR;
618 : }
619 0 : for (int ii = 0; ii < hdo->u.freeform.npt; ++ii)
620 : {
621 0 : bool bFailure = false;
622 0 : if (!hmem->read4b(hdo->u.freeform.pt[ii].x))
623 0 : bFailure = true;
624 0 : if (!hmem->read4b(hdo->u.freeform.pt[ii].y))
625 0 : bFailure = true;
626 0 : if (hmem->state())
627 0 : bFailure = true;
628 0 : if (bFailure)
629 : {
630 0 : delete[]hdo->u.freeform.pt;
631 0 : hdo->u.freeform.npt = 0;
632 0 : return OBJRET_FILE_ERROR;
633 : }
634 : }
635 : }
636 0 : if (!SkipUnusedField())
637 0 : return OBJRET_FILE_ERROR;
638 0 : return OBJRET_FILE_OK;
639 : }
640 : case OBJFUNC_FREE:
641 0 : if (hdo->u.freeform.pt)
642 0 : delete[]hdo->u.freeform.pt;
643 0 : break;
644 : default:
645 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
646 : }
647 0 : return OBJRET_FILE_OK;
648 : }
649 :
650 :
651 : // text box
652 :
653 0 : static void FreeParaList(HWPPara * para)
654 : {
655 0 : if (para->Next())
656 0 : FreeParaList(para->Next());
657 0 : delete para;
658 0 : }
659 :
660 :
661 0 : static HWPPara *LoadParaList()
662 : {
663 0 : if (!hmem)
664 0 : return 0;
665 :
666 0 : HWPFile *hwpf = GetCurrentDoc();
667 0 : HIODev *hio = hwpf->SetIODevice(hmem);
668 :
669 0 : std::list < HWPPara* > plist;
670 :
671 0 : hwpf->ReadParaList(plist);
672 0 : hwpf->SetIODevice(hio);
673 :
674 0 : return plist.size()? plist.front() : 0;
675 : }
676 :
677 :
678 : static int
679 0 : HWPDOTextBoxFunc(int type, HWPDrawingObject * hdo,
680 : int cmd, void *argp, int argv)
681 : {
682 0 : switch (cmd)
683 : {
684 : case OBJFUNC_LOAD:
685 0 : if (ReadSizeField(0) < 0 || !SkipUnusedField())
686 0 : return OBJRET_FILE_ERROR;
687 0 : if (ReadSizeField(0) < 0)
688 0 : return OBJRET_FILE_ERROR;
689 0 : hdo->u.textbox.h = LoadParaList();
690 0 : return hdo->u.textbox.h ? OBJRET_FILE_OK : OBJRET_FILE_ERROR;
691 : case OBJFUNC_FREE:
692 0 : if (hdo->u.textbox.h)
693 : {
694 0 : FreeParaList(hdo->u.textbox.h);
695 0 : hdo->u.textbox.h = NULL;
696 : }
697 0 : break;
698 : default:
699 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
700 : }
701 0 : return OBJRET_FILE_OK;
702 : }
703 :
704 :
705 :
706 : static int
707 0 : HWPDOContainerFunc(int type, HWPDrawingObject * hdo,
708 : int cmd, void *argp, int argv)
709 : {
710 0 : return HWPDODefaultFunc(type, hdo, cmd, argp, argv);
711 : }
712 :
713 :
714 0 : HWPDrawingObject::HWPDrawingObject()
715 : {
716 0 : memset(this, 0, sizeof(HWPDrawingObject));
717 0 : index = ++count;
718 0 : }
719 :
720 :
721 0 : HWPDrawingObject::~HWPDrawingObject()
722 : {
723 0 : if (child)
724 0 : delete child;
725 :
726 0 : if (next)
727 0 : delete next;
728 :
729 0 : HWPDOFunc(this, OBJFUNC_FREE, NULL, 0);
730 0 : }
731 : #endif
732 :
733 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|