/[public]/psiconv/trunk/lib/psiconv/data.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/data.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 134 Revision 163
21#include "compat.h" 21#include "compat.h"
22#include <stdlib.h> 22#include <stdlib.h>
23#include <string.h> 23#include <string.h>
24#include "data.h" 24#include "data.h"
25#include "list.h" 25#include "list.h"
26
27#ifdef DMALLOC
28#include <dmalloc.h>
29#endif
26 30
27static psiconv_color clone_color(psiconv_color color); 31static psiconv_color clone_color(psiconv_color color);
28static psiconv_font clone_font(psiconv_font font); 32static psiconv_font clone_font(psiconv_font font);
29static psiconv_border clone_border(psiconv_border border); 33static psiconv_border clone_border(psiconv_border border);
30static psiconv_bullet clone_bullet(psiconv_bullet bullet); 34static psiconv_bullet clone_bullet(psiconv_bullet bullet);
438{ 442{
439 if (styles) { 443 if (styles) {
440 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
441 if (styles->styles) 445 if (styles->styles)
442 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
443 } 448 }
444} 449}
445 450
446void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
447{ 452{
468 free(section->name); 473 free(section->name);
469 free(section); 474 free(section);
470 } 475 }
471} 476}
472 477
478void psiconv_free_object_icon_section(psiconv_object_icon_section section)
479{
480 if (section) {
481 if (section->icon_name)
482 free(section->icon_name);
483 free(section);
484 }
485}
486
487void psiconv_free_object_display_section(psiconv_object_display_section section)
488{
489 if (section)
490 free(section);
491}
492
493void psiconv_free_object(psiconv_object object)
494{
495 if (object) {
496 psiconv_free_object_icon_section(object->icon);
497 psiconv_free_object_display_section(object->display);
498 psiconv_free_file(object->object);
499 free(object);
500 }
501}
502
473void psiconv_free_in_line_layout_aux(void * layout) 503void psiconv_free_in_line_layout_aux(void * layout)
474{ 504{
475 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout); 505 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout);
506 psiconv_free_object(((psiconv_in_line_layout) layout)->object);
476} 507}
477 508
478void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 509void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
479{ 510{
480 if (layout) { 511 if (layout) {
1310psiconv_sketch_section psiconv_empty_sketch_section(void) 1341psiconv_sketch_section psiconv_empty_sketch_section(void)
1311{ 1342{
1312 psiconv_sketch_section result; 1343 psiconv_sketch_section result;
1313 if (!(result = malloc(sizeof(*result)))) 1344 if (!(result = malloc(sizeof(*result))))
1314 goto ERROR1; 1345 goto ERROR1;
1315 result->form_xsize = 320; 1346 result->displayed_xsize = 320;
1316 result->form_ysize = 200; 1347 result->displayed_ysize = 200;
1317 result->picture_x_offset = result->picture_y_offset = result->picture_xsize = 1348 result->picture_data_x_offset = result->picture_data_y_offset =
1318 result->picture_ysize = 0; 1349 result->form_xsize = result->form_ysize =
1350 result->displayed_size_x_offset = result->displayed_size_y_offset = 0;
1319 result->magnification_x = result->magnification_y = 1.0; 1351 result->magnification_x = result->magnification_y = 1.0;
1320 result->cut_left = result->cut_right = result->cut_top = 1352 result->cut_left = result->cut_right = result->cut_top =
1321 result->cut_bottom = 0.0; 1353 result->cut_bottom = 0.0;
1322 if (!(result->picture = psiconv_empty_paint_data_section())) 1354 if (!(result->picture = psiconv_empty_paint_data_section()))
1323 goto ERROR2; 1355 goto ERROR2;

Legend:
Removed from v.134  
changed lines
  Added in v.163

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26