/[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 99 Revision 167
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);
33static void psiconv_free_in_line_layout_aux(void * layout); 37static void psiconv_free_in_line_layout_aux(void * layout);
34static void psiconv_free_paragraph_aux(void * paragraph); 38static void psiconv_free_paragraph_aux(void * paragraph);
35static void psiconv_free_paint_data_section_aux(void * section); 39static void psiconv_free_paint_data_section_aux(void * section);
36static void psiconv_free_clipart_section_aux(void * section); 40static void psiconv_free_clipart_section_aux(void * section);
37static void psiconv_free_formula_aux(void *data); 41static void psiconv_free_formula_aux(void *data);
42static void psiconv_free_sheet_worksheet_aux (void *data);
43static void psiconv_free_sheet_variable_aux(void * variable);
38 44
39static psiconv_word_styles_section psiconv_empty_word_styles_section(void); 45static psiconv_word_styles_section psiconv_empty_word_styles_section(void);
40static psiconv_text_and_layout psiconv_empty_text_and_layout(void); 46static psiconv_text_and_layout psiconv_empty_text_and_layout(void);
41static psiconv_texted_section psiconv_empty_texted_section(void); 47static psiconv_texted_section psiconv_empty_texted_section(void);
42static psiconv_page_header psiconv_empty_page_header(void); 48static psiconv_page_header psiconv_empty_page_header(void);
151 0.0, /* space_below */ 157 0.0, /* space_below */
152 psiconv_bool_false, /* keep_together */ 158 psiconv_bool_false, /* keep_together */
153 psiconv_bool_false, /* keep_with_next */ 159 psiconv_bool_false, /* keep_with_next */
154 psiconv_bool_false, /* on_next_page */ 160 psiconv_bool_false, /* on_next_page */
155 psiconv_bool_false, /* no_widow_protection */ 161 psiconv_bool_false, /* no_widow_protection */
162 psiconv_bool_false, /* wrap_to_fit_cell */
156 0.0, /* left_margin */ 163 0.0, /* left_margin */
157 &bullet, /* bullet */ 164 &bullet, /* bullet */
158 &no_border, /* left_border */ 165 &no_border, /* left_border */
159 &no_border, /* right_border */ 166 &no_border, /* right_border */
160 &no_border, /* top_border */ 167 &no_border, /* top_border */
315 return ss->normal; 322 return ss->normal;
316 else 323 else
317 return psiconv_list_get(ss->styles,0xff - nr); 324 return psiconv_list_get(ss->styles,0xff - nr);
318} 325}
319 326
327psiconv_formula psiconv_get_formula (psiconv_formula_list ss, int nr)
328{
329 return psiconv_list_get(ss,psiconv_list_length(ss)-nr-1);
330}
331
332/* TODO: What if a cell is both in a default row and a default column?!? */
333psiconv_sheet_cell_layout psiconv_get_default_layout
334 (psiconv_sheet_line_list row_defaults,
335 psiconv_sheet_line_list col_defaults,
336 psiconv_sheet_cell_layout cell_default,
337 int row,int col)
338{
339 int i;
340 psiconv_sheet_line line;
341 for (i = 0;i < psiconv_list_length(row_defaults);i++) {
342 line = psiconv_list_get(row_defaults,i);
343 if (line->position == row)
344 return line->layout;
345 }
346 for (i = 0;i < psiconv_list_length(col_defaults);i++) {
347 line = psiconv_list_get(col_defaults,i);
348 if (line->position == col)
349 return line->layout;
350 }
351 return cell_default;
352}
353
354
320void psiconv_free_color (psiconv_color color) 355void psiconv_free_color (psiconv_color color)
321{ 356{
322 if (color) 357 if (color)
323 free(color); 358 free(color);
324} 359}
407{ 442{
408 if (styles) { 443 if (styles) {
409 psiconv_free_word_style(styles->normal); 444 psiconv_free_word_style(styles->normal);
410 if (styles->styles) 445 if (styles->styles)
411 psiconv_list_free_el(styles->styles,psiconv_free_style_aux); 446 psiconv_list_free_el(styles->styles,psiconv_free_style_aux);
447 free(styles);
412 } 448 }
413} 449}
414 450
415void psiconv_free_header_section(psiconv_header_section header) 451void psiconv_free_header_section(psiconv_header_section header)
416{ 452{
437 free(section->name); 473 free(section->name);
438 free(section); 474 free(section);
439 } 475 }
440} 476}
441 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_embedded_object_section
494 (psiconv_embedded_object_section object)
495{
496 if (object) {
497 psiconv_free_object_icon_section(object->icon);
498 psiconv_free_object_display_section(object->display);
499 psiconv_free_file(object->object);
500 free(object);
501 }
502}
503
442void psiconv_free_in_line_layout_aux(void * layout) 504void psiconv_free_in_line_layout_aux(void * layout)
443{ 505{
444 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout); 506 psiconv_free_character_layout(((psiconv_in_line_layout) layout)->layout);
507 psiconv_free_embedded_object_section
508 (((psiconv_in_line_layout) layout)->object);
445} 509}
446 510
447void psiconv_free_in_line_layout(psiconv_in_line_layout layout) 511void psiconv_free_in_line_layout(psiconv_in_line_layout layout)
448{ 512{
449 if (layout) { 513 if (layout) {
544 608
545void psiconv_free_sheet_status_section(psiconv_sheet_status_section section) 609void psiconv_free_sheet_status_section(psiconv_sheet_status_section section)
546{ 610{
547 if (section) 611 if (section)
548 free(section); 612 free(section);
613}
614
615void psiconv_free_sheet_numberformat(psiconv_sheet_numberformat numberformat)
616{
617 if (numberformat)
618 free(numberformat);
619}
620
621void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout)
622{
623 psiconv_free_paragraph_layout(layout->paragraph);
624 psiconv_free_character_layout(layout->character);
625 psiconv_free_sheet_numberformat(layout->numberformat);
626}
627
628void psiconv_free_sheet_cell_aux(void *cell)
629{
630 psiconv_sheet_cell data = cell;
631
632 psiconv_free_sheet_cell_layout(data->layout);
633
634 if ((data->type == psiconv_cell_string) && (data->data.dat_string))
635 free(data->data.dat_string);
636}
637
638void psiconv_free_sheet_cell(psiconv_sheet_cell cell)
639{
640 if (cell) {
641 psiconv_free_sheet_cell_aux(cell);
642 free(cell);
643 }
644}
645
646void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list)
647{
648 if (list)
649 psiconv_list_free_el(list,psiconv_free_sheet_cell_aux);
650}
651
652void psiconv_free_sheet_line_aux(void *line)
653{
654 psiconv_sheet_line data = line;
655
656 psiconv_free_sheet_cell_layout(data->layout);
657}
658
659void psiconv_free_sheet_line(psiconv_sheet_line line)
660{
661 if (line) {
662 psiconv_free_sheet_line_aux(line);
663 free(line);
664 }
665}
666
667
668void psiconv_free_sheet_line_list(psiconv_sheet_line_list list)
669{
670 if (list)
671 psiconv_list_free_el(list,psiconv_free_sheet_line_aux);
672}
673
674void psiconv_free_sheet_grid_break_list(psiconv_sheet_grid_break_list list)
675{
676 if (list)
677 psiconv_list_free(list);
678}
679
680void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s)
681{
682 if (s)
683 free(s);
684}
685
686void psiconv_free_sheet_grid_size_list(psiconv_sheet_grid_size_list list)
687{
688 if (list)
689 psiconv_list_free(list);
690}
691
692void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec)
693{
694 if (sec) {
695 psiconv_free_sheet_grid_size_list(sec->row_heights);
696 psiconv_free_sheet_grid_size_list(sec->column_heights);
697 psiconv_free_sheet_grid_break_list(sec->row_page_breaks);
698 psiconv_free_sheet_grid_break_list(sec->column_page_breaks);
699 free(sec);
700 }
701}
702
703void psiconv_free_sheet_worksheet_aux (void *data)
704{
705 psiconv_sheet_worksheet section = data;
706 psiconv_free_sheet_cell_layout(section->default_layout);
707 psiconv_free_sheet_cell_list(section->cells);
708 psiconv_free_sheet_line_list(section->row_default_layouts);
709 psiconv_free_sheet_line_list(section->col_default_layouts);
710 psiconv_free_sheet_grid_section(section->grid);
711}
712
713void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet)
714{
715 if (sheet) {
716 psiconv_free_sheet_worksheet_aux(sheet);
717 free(sheet);
718 }
719}
720
721void psiconv_free_sheet_worksheet_list(psiconv_sheet_worksheet_list list)
722{
723 if (list)
724 psiconv_list_free_el(list,psiconv_free_sheet_worksheet_aux);
549} 725}
550 726
551void psiconv_free_formula_aux(void *data) 727void psiconv_free_formula_aux(void *data)
552{ 728{
553 psiconv_formula formula; 729 psiconv_formula formula;
579{ 755{
580 if (list) 756 if (list)
581 psiconv_list_free_el(list,psiconv_free_formula_aux); 757 psiconv_list_free_el(list,psiconv_free_formula_aux);
582} 758}
583 759
760void psiconv_free_sheet_name_section(psiconv_sheet_name_section section)
761{
762 if (section) {
763 if(section->name)
764 free(section->name);
765 free(section);
766 }
767}
768
769void psiconv_free_sheet_info_section(psiconv_sheet_info_section section)
770{
771 if (section) {
772 free(section);
773 }
774}
775
776void psiconv_free_sheet_variable_aux(void * variable)
777{
778 psiconv_sheet_variable var = variable;
779 if (var->name)
780 free(var->name);
781 if (var->type == psiconv_var_string)
782 free(var->data.dat_string);
783}
784
785void psiconv_free_sheet_variable(psiconv_sheet_variable var)
786{
787 if (var) {
788 psiconv_free_sheet_variable_aux(var);
789 free(var);
790 }
791}
792
793void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list)
794{
795 if (list)
796 psiconv_list_free_el(list,psiconv_free_sheet_variable_aux);
797}
798
584void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section) 799void psiconv_free_sheet_workbook_section(psiconv_sheet_workbook_section section)
585{ 800{
586 if (section) { 801 if (section) {
587 psiconv_free_formula_list(section->formulas); 802 psiconv_free_formula_list(section->formulas);
803 psiconv_free_sheet_worksheet_list(section->worksheets);
804 psiconv_free_sheet_name_section(section->name);
805 psiconv_free_sheet_info_section(section->info);
806 psiconv_free_sheet_variable_list(section->variables);
588 free(section); 807 free(section);
589 } 808 }
590} 809}
591 810
592void psiconv_free_sheet_f(psiconv_sheet_f file) 811void psiconv_free_sheet_f(psiconv_sheet_f file)
1124psiconv_sketch_section psiconv_empty_sketch_section(void) 1343psiconv_sketch_section psiconv_empty_sketch_section(void)
1125{ 1344{
1126 psiconv_sketch_section result; 1345 psiconv_sketch_section result;
1127 if (!(result = malloc(sizeof(*result)))) 1346 if (!(result = malloc(sizeof(*result))))
1128 goto ERROR1; 1347 goto ERROR1;
1129 result->form_xsize = 320; 1348 result->displayed_xsize = 320;
1130 result->form_ysize = 200; 1349 result->displayed_ysize = 200;
1131 result->picture_x_offset = result->picture_y_offset = result->picture_xsize = 1350 result->picture_data_x_offset = result->picture_data_y_offset =
1132 result->picture_ysize = 0; 1351 result->form_xsize = result->form_ysize =
1352 result->displayed_size_x_offset = result->displayed_size_y_offset = 0;
1133 result->magnification_x = result->magnification_y = 1.0; 1353 result->magnification_x = result->magnification_y = 1.0;
1134 result->cut_left = result->cut_right = result->cut_top = 1354 result->cut_left = result->cut_right = result->cut_top =
1135 result->cut_bottom = 0.0; 1355 result->cut_bottom = 0.0;
1136 if (!(result->picture = psiconv_empty_paint_data_section())) 1356 if (!(result->picture = psiconv_empty_paint_data_section()))
1137 goto ERROR2; 1357 goto ERROR2;

Legend:
Removed from v.99  
changed lines
  Added in v.167

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