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

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

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

Revision 110 Revision 163
31 to structs */ 31 to structs */
32 32
33#ifdef __cplusplus 33#ifdef __cplusplus
34extern "C" { 34extern "C" {
35#endif /* __cplusplus */ 35#endif /* __cplusplus */
36
37/* Forward declaration (for psiconv_object) */
38typedef struct psiconv_file_s *psiconv_file;
36 39
37typedef double psiconv_float_t; 40typedef double psiconv_float_t;
38 41
39typedef enum psiconv_file_type { 42typedef enum psiconv_file_type {
40 psiconv_unknown_file, 43 psiconv_unknown_file,
225{ 228{
226 psiconv_u32 id; 229 psiconv_u32 id;
227 psiconv_string_t name; 230 psiconv_string_t name;
228} *psiconv_application_id_section; 231} *psiconv_application_id_section;
229 232
233typedef struct psiconv_object_icon_section_s
234{
235 psiconv_length_t icon_width;
236 psiconv_length_t icon_height;
237 psiconv_string_t icon_name;
238} *psiconv_object_icon_section;
239
240typedef struct psiconv_object_display_section_s
241{
242 psiconv_bool_t show_icon;
243 psiconv_length_t width;
244 psiconv_length_t height;
245} *psiconv_object_display_section;
246
247typedef struct psiconv_object_s
248{
249 psiconv_object_icon_section icon;
250 psiconv_object_display_section display;
251 psiconv_file object;
252} *psiconv_object;
253
230typedef struct psiconv_in_line_layout_s 254typedef struct psiconv_in_line_layout_s
231{ 255{
232 psiconv_character_layout layout; 256 psiconv_character_layout layout;
233 int length; 257 int length;
258 /* If object is NULL, this does not apply to an object */
259 psiconv_object object;
260 psiconv_length_t object_width;
261 psiconv_length_t object_height;
234} *psiconv_in_line_layout; 262} *psiconv_in_line_layout;
235 263
236typedef psiconv_list psiconv_in_line_layouts; /* of struct in_line_layout */ 264typedef psiconv_list psiconv_in_line_layouts; /* of struct in_line_layout */
237 265
238typedef enum psiconv_replacement_type 266typedef enum psiconv_replacement_type
364typedef struct psiconv_mbm_f_s 392typedef struct psiconv_mbm_f_s
365{ 393{
366 psiconv_pictures sections; 394 psiconv_pictures sections;
367} *psiconv_mbm_f; 395} *psiconv_mbm_f;
368 396
369/* This is a little intricated. A picture may be embedded in a larger form. 397/* Read the Psiconv file format documentation for a complete discription.
370 A form is empty, except for the picture. The form has size form_{x,y}size, 398 Basic idea: a picture has a certain display size. Within it, the pixel
371 and the picture is at offset picture_{x,y}_offset within the form. The 399 data begins at a certain offset. Around it, there is an empty form.
372 picture itself has size picture_{x,y}size. 400 The first eight values are before magnification and cuts.
373 Cuts are always <= 1.0; a cut of 0.0 cuts nothing away, a cut of 1.0 401 Cuts are always <= 1.0; a cut of 0.0 cuts nothing away, a cut of 1.0
374 cuts everything away. */ 402 cuts everything away. */
375typedef struct psiconv_sketch_section_s 403typedef struct psiconv_sketch_section_s
376{ 404{
405 psiconv_u16 displayed_xsize;
406 psiconv_u16 displayed_ysize;
407 psiconv_u16 picture_data_x_offset;
408 psiconv_u16 picture_data_y_offset;
377 psiconv_u16 form_xsize; 409 psiconv_u16 form_xsize;
378 psiconv_u16 form_ysize; 410 psiconv_u16 form_ysize;
379 psiconv_u16 picture_x_offset; 411 psiconv_u16 displayed_size_x_offset;
380 psiconv_u16 picture_y_offset; 412 psiconv_u16 displayed_size_y_offset;
381 psiconv_u16 picture_xsize;
382 psiconv_u16 picture_ysize;
383 float magnification_x; /* computed relative to first six values */ 413 float magnification_x; /* computed relative to first eight values */
384 float magnification_y; /* computed relative to first six values */ 414 float magnification_y; /* computed relative to first eight values */
385 float cut_left; /* computed relative to first six values */ 415 float cut_left; /* computed relative to first eight values */
386 float cut_right; /* computed relative to first six values */ 416 float cut_right; /* computed relative to first eight values */
387 float cut_top; /* computed relative to first six values */ 417 float cut_top; /* computed relative to first eight values */
388 float cut_bottom; /* computed relative to first six values */ 418 float cut_bottom; /* computed relative to first eight values */
389 psiconv_paint_data_section picture; 419 psiconv_paint_data_section picture;
390} *psiconv_sketch_section; 420} *psiconv_sketch_section;
391 421
392typedef struct psiconv_sketch_f_s 422typedef struct psiconv_sketch_f_s
393{ 423{
445 psiconv_sheet_error_name, 475 psiconv_sheet_error_name,
446 psiconv_sheet_error_number, 476 psiconv_sheet_error_number,
447 psiconv_sheet_error_notavail 477 psiconv_sheet_error_notavail
448} psiconv_sheet_errorcode_t; 478} psiconv_sheet_errorcode_t;
449 479
450typedef enum psiconv_numberformat 480typedef enum psiconv_sheet_numberformat_code
451{ 481{
452 psiconv_numberformat_general, 482 psiconv_numberformat_general,
453 psiconv_numberformat_fixeddecimal, 483 psiconv_numberformat_fixeddecimal,
454 psiconv_numberformat_scientific, 484 psiconv_numberformat_scientific,
455 psiconv_numberformat_currency, 485 psiconv_numberformat_currency,
456 psiconv_numberformat_percent, 486 psiconv_numberformat_percent,
457 psiconv_numberformat_triads, 487 psiconv_numberformat_triads,
458 psiconv_numberformat_boolean, 488 psiconv_numberformat_boolean,
459 psiconv_numberformat_text, 489 psiconv_numberformat_text,
460 psiconv_numberformat_date_ddmm, 490 psiconv_numberformat_date_dmm,
461 psiconv_numberformat_date_mmdd, 491 psiconv_numberformat_date_mmd,
462 psiconv_numberformat_date_ddmmyy, 492 psiconv_numberformat_date_ddmmyy,
463 psiconv_numberformat_date_mmddyy, 493 psiconv_numberformat_date_mmddyy,
464 psiconv_numberformat_date_yymmdd, 494 psiconv_numberformat_date_yymmdd,
465 psiconv_numberformat_date_ddmmm, 495 psiconv_numberformat_date_dmmm,
496 psiconv_numberformat_date_dmmmyy,
466 psiconv_numberformat_date_ddmmmyy, 497 psiconv_numberformat_date_ddmmmyy,
467 psiconv_numberformat_date_ddmmmyyyy,
468 psiconv_numberformat_date_mmm, 498 psiconv_numberformat_date_mmm,
469 psiconv_numberformat_date_monthname, 499 psiconv_numberformat_date_monthname,
470 psiconv_numberformat_date_mmmyy, 500 psiconv_numberformat_date_mmmyy,
471 psiconv_numberformat_date_monthnameyy, 501 psiconv_numberformat_date_monthnameyy,
472 psiconv_numberformat_date_monthnameddyyyy, 502 psiconv_numberformat_date_monthnamedyyyy,
473 psiconv_numberformat_datetime_ddmmyyyyhhii, 503 psiconv_numberformat_datetime_ddmmyyyyhhii,
474 psiconv_numberformat_datetime_ddmmyyyyHHii, 504 psiconv_numberformat_datetime_ddmmyyyyHHii,
475 psiconv_numberformat_datetime_mmddyyyyhhii, 505 psiconv_numberformat_datetime_mmddyyyyhhii,
476 psiconv_numberformat_datetime_mmddyyyyHHii, 506 psiconv_numberformat_datetime_mmddyyyyHHii,
477 psiconv_numberformat_datetime_yyyymmddhhii, 507 psiconv_numberformat_datetime_yyyymmddhhii,
478 psiconv_numberformat_datetime_yyyymmddHHii, 508 psiconv_numberformat_datetime_yyyymmddHHii,
479 psiconv_numberformat_time_hhii, 509 psiconv_numberformat_time_hhii,
480 psiconv_numberformat_time_hhiiss, 510 psiconv_numberformat_time_hhiiss,
481 psiconv_numberformat_time_HHii, 511 psiconv_numberformat_time_HHii,
482 psiconv_numberformat_time_HHiiss 512 psiconv_numberformat_time_HHiiss
483} psiconv_numberformat_t; 513} psiconv_sheet_numberformat_code_t;
484 514
485typedef struct psiconv_numberformat_s 515typedef struct psiconv_sheet_numberformat_s
486{ 516{
487 psiconv_numberformat_t numberformat; 517 psiconv_sheet_numberformat_code_t code;
488 psiconv_u8 decimal; 518 psiconv_u8 decimal;
489} *psiconv_numberformat; 519} *psiconv_sheet_numberformat;
520
521typedef struct psiconv_sheet_cell_layout_s
522{
523 psiconv_character_layout character;
524 psiconv_paragraph_layout paragraph;
525 psiconv_sheet_numberformat numberformat;
526} * psiconv_sheet_cell_layout;
490 527
491typedef struct psiconv_sheet_cell_s 528typedef struct psiconv_sheet_cell_s
492{ 529{
493 psiconv_u16 column; 530 psiconv_u16 column;
494 psiconv_u16 row; 531 psiconv_u16 row;
495 psiconv_cell_type_t type; 532 psiconv_cell_type_t type;
496 union { 533 union {
497 psiconv_u32 dat_int; 534 psiconv_u32 dat_int;
498 double dat_float; 535 double dat_float;
499 char *dat_string; 536 char *dat_string;
500 psiconv_bool_t dat_bool; 537 psiconv_bool_t dat_bool;
501 psiconv_sheet_errorcode_t dat_error; 538 psiconv_sheet_errorcode_t dat_error;
502 } data; 539 } data;
503 psiconv_character_layout character; 540 psiconv_sheet_cell_layout layout;
504 psiconv_paragraph_layout paragraph;
505 psiconv_numberformat numberformat;
506 psiconv_bool_t calculated; 541 psiconv_bool_t calculated;
507 psiconv_u32 ref_formula; 542 psiconv_u32 ref_formula;
508} *psiconv_sheet_cell; 543} *psiconv_sheet_cell;
509 544
510typedef psiconv_list psiconv_sheet_cell_list; 545typedef psiconv_list psiconv_sheet_cell_list;
511 /* Of struct psiconv_sheet_cell_s */
512 546
513typedef struct psiconv_sheet_status_section_s 547typedef struct psiconv_sheet_status_section_s
514{ 548{
515 psiconv_bool_t show_graph; 549 psiconv_bool_t show_graph;
516 psiconv_u32 cursor_row; 550 psiconv_u32 cursor_row;
673 double dat_float; 707 double dat_float;
674 char *dat_string; 708 char *dat_string;
675 psiconv_sheet_cell_reference_t dat_cellref; 709 psiconv_sheet_cell_reference_t dat_cellref;
676 psiconv_sheet_cell_block_t dat_cellblock; 710 psiconv_sheet_cell_block_t dat_cellblock;
677 psiconv_formula_list fun_operands; 711 psiconv_formula_list fun_operands;
712 psiconv_u32 dat_variable;
678 } data; 713 } data;
679} *psiconv_formula; 714} *psiconv_formula;
680 715
716typedef struct psiconv_sheet_line_s
717{
718 psiconv_u32 position;
719 psiconv_sheet_cell_layout layout;
720} *psiconv_sheet_line;
721
722typedef psiconv_list psiconv_sheet_line_list;
723 /* Of struct psiconv_sheet_line_s */
724
725typedef struct psiconv_sheet_grid_size_s
726{
727 psiconv_u32 line_number;
728 psiconv_length_t size;
729} *psiconv_sheet_grid_size;
730
731typedef psiconv_list psiconv_sheet_grid_size_list;
732 /* Of struct psiconv_sheet_grid_size_s */
733
734typedef psiconv_list psiconv_sheet_grid_break_list; /* of psiconv_u32 */
735
736typedef struct psiconv_sheet_grid_section_s
737{
738 psiconv_bool_t show_column_titles;
739 psiconv_bool_t show_row_titles;
740 psiconv_bool_t show_vertical_grid;
741 psiconv_bool_t show_horizontal_grid;
742 psiconv_bool_t freeze_rows;
743 psiconv_bool_t freeze_columns;
744 psiconv_u32 frozen_rows;
745 psiconv_u32 frozen_columns;
746 psiconv_u32 first_unfrozen_row_displayed;
747 psiconv_u32 first_unfrozen_column_displayed;
748 psiconv_bool_t show_page_breaks;
749 psiconv_u32 first_row;
750 psiconv_u32 first_column;
751 psiconv_u32 last_row;
752 psiconv_u32 last_column;
753 psiconv_length_t default_row_height;
754 psiconv_length_t default_column_width;
755 psiconv_sheet_grid_size_list row_heights;
756 psiconv_sheet_grid_size_list column_heights;
757 psiconv_sheet_grid_break_list row_page_breaks;
758 psiconv_sheet_grid_break_list column_page_breaks;
759} *psiconv_sheet_grid_section;
760
681typedef struct psiconv_sheet_worksheet_section_s 761typedef struct psiconv_sheet_worksheet_s
682{ 762{
683 psiconv_character_layout character; 763 psiconv_sheet_cell_layout default_layout;
684 psiconv_paragraph_layout paragraph;
685 psiconv_numberformat numberformat;
686 psiconv_sheet_cell_list cells; 764 psiconv_sheet_cell_list cells;
765 psiconv_bool_t show_zeros;
766 psiconv_sheet_line_list row_default_layouts;
767 psiconv_sheet_line_list col_default_layouts;
768 psiconv_sheet_grid_section grid;
687} *psiconv_sheet_worksheet_section; 769} *psiconv_sheet_worksheet;
770
771typedef psiconv_list psiconv_sheet_worksheet_list;
772 /* of struct psiconv_sheet_worksheet_s */
773
774typedef enum psiconv_variable_type
775{
776 psiconv_var_int,
777 psiconv_var_float,
778 psiconv_var_string,
779 psiconv_var_cellref,
780 psiconv_var_cellblock
781} psiconv_variable_type_t;
782
783typedef struct psiconv_sheet_variable_s
784{
785 psiconv_u32 number;
786 char *name;
787 psiconv_variable_type_t type;
788 union {
789 psiconv_s32 dat_int;
790 double dat_float;
791 char *dat_string;
792 psiconv_sheet_cell_reference_t dat_cellref;
793 psiconv_sheet_cell_block_t dat_cellblock;
794 } data;
795} *psiconv_sheet_variable;
796
797typedef psiconv_list psiconv_sheet_variable_list;
798 /* of struct psiconv_sheet_variable_s */
799
800typedef struct psiconv_sheet_name_section_s
801{
802 char *name;
803} *psiconv_sheet_name_section;
804
805typedef struct psiconv_sheet_info_section_s
806{
807 psiconv_bool_t auto_recalc;
808} *psiconv_sheet_info_section;
688 809
689typedef struct psiconv_sheet_workbook_section_s 810typedef struct psiconv_sheet_workbook_section_s
690{ 811{
691 psiconv_formula_list formulas; 812 psiconv_formula_list formulas;
692 psiconv_sheet_worksheet_section worksheet; 813 psiconv_sheet_worksheet_list worksheets;
814 psiconv_sheet_variable_list variables;
815 psiconv_sheet_info_section info;
816 psiconv_sheet_name_section name;
693} *psiconv_sheet_workbook_section; 817} *psiconv_sheet_workbook_section;
694 818
695typedef struct psiconv_sheet_f_s 819typedef struct psiconv_sheet_f_s
696{ 820{
697 psiconv_page_layout_section page_sec; 821 psiconv_page_layout_section page_sec;
698 psiconv_sheet_status_section status_sec; 822 psiconv_sheet_status_section status_sec;
699 psiconv_sheet_workbook_section workbook_sec; 823 psiconv_sheet_workbook_section workbook_sec;
700} *psiconv_sheet_f; 824} *psiconv_sheet_f;
701 825
826/* NB: psiconv_file is already defined above */
702typedef struct psiconv_file_s 827struct psiconv_file_s
703{ 828{
704 psiconv_file_type_t type; 829 psiconv_file_type_t type;
705 void *file; 830 void *file;
706} *psiconv_file; 831};
707 832
708 833
709/* UID1 */ 834/* UID1 */
710#define PSICONV_ID_PSION5 0x10000037 835#define PSICONV_ID_PSION5 0x10000037
711#define PSICONV_ID_CLIPART 0x10000041 836#define PSICONV_ID_CLIPART 0x10000041
740#define PSICONV_ID_TEXTED_LAYOUT 0x10000066 865#define PSICONV_ID_TEXTED_LAYOUT 0x10000066
741#define PSICONV_ID_TEXTED_TEXT 0x10000064 866#define PSICONV_ID_TEXTED_TEXT 0x10000064
742#define PSICONV_ID_STYLE_REMOVABLE 0x1000004F 867#define PSICONV_ID_STYLE_REMOVABLE 0x1000004F
743#define PSICONV_ID_STYLE_BUILT_IN 0x1000004C 868#define PSICONV_ID_STYLE_BUILT_IN 0x1000004C
744#define PSICONV_ID_CLIPART_ITEM 0x10000040 869#define PSICONV_ID_CLIPART_ITEM 0x10000040
870#define PSICONV_ID_OBJECT 0x10000051
871#define PSICONV_ID_OBJECT_DISPLAY_SECTION 0x10000146
872#define PSICONV_ID_OBJECT_ICON_SECTION 0x1000012A
873#define PSICONV_ID_OBJECT_SECTION_TABLE_SECTION 0x10000144
745 874
746 875
747/* Return a clean layout_status. You can modify it at will. Returns NULL 876/* Return a clean layout_status. You can modify it at will. Returns NULL
748 if there is not enough memory. */ 877 if there is not enough memory. */
749extern psiconv_character_layout psiconv_basic_character_layout(void); 878extern psiconv_character_layout psiconv_basic_character_layout(void);
760extern psiconv_character_layout psiconv_clone_character_layout 889extern psiconv_character_layout psiconv_clone_character_layout
761 (psiconv_character_layout ls); 890 (psiconv_character_layout ls);
762 891
763/* Get a numbered style. Returns NULL if the style is unknown. */ 892/* Get a numbered style. Returns NULL if the style is unknown. */
764extern psiconv_word_style psiconv_get_style (psiconv_word_styles_section ss, int nr); 893extern psiconv_word_style psiconv_get_style (psiconv_word_styles_section ss, int nr);
894/* Get a numbered formula. Returns NULL if the style is unknown. */
895extern psiconv_formula psiconv_get_formula (psiconv_formula_list ss, int nr);
896
897/* Return the default layout */
898extern psiconv_sheet_cell_layout psiconv_get_default_layout
899 (psiconv_sheet_line_list row_defaults,
900 psiconv_sheet_line_list col_defaults,
901 psiconv_sheet_cell_layout cell_default,
902 int row,int col);
765 903
766extern void psiconv_free_color(psiconv_color color); 904extern void psiconv_free_color(psiconv_color color);
767extern void psiconv_free_border(psiconv_border border); 905extern void psiconv_free_border(psiconv_border border);
768extern void psiconv_free_bullet(psiconv_bullet bullet); 906extern void psiconv_free_bullet(psiconv_bullet bullet);
769extern void psiconv_free_font(psiconv_font font); 907extern void psiconv_free_font(psiconv_font font);
776 (psiconv_word_styles_section styles); 914 (psiconv_word_styles_section styles);
777extern void psiconv_free_formula(psiconv_formula formula); 915extern void psiconv_free_formula(psiconv_formula formula);
778extern void psiconv_free_formula_list(psiconv_formula_list list); 916extern void psiconv_free_formula_list(psiconv_formula_list list);
779extern void psiconv_free_sheet_status_section 917extern void psiconv_free_sheet_status_section
780 (psiconv_sheet_status_section section); 918 (psiconv_sheet_status_section section);
919extern void psiconv_free_sheet_cell_layout(psiconv_sheet_cell_layout layout);
920extern void psiconv_free_sheet_grid_break_list
921 (psiconv_sheet_grid_break_list list);
922extern void psiconv_free_sheet_grid_size(psiconv_sheet_grid_size s);
923extern void psiconv_free_sheet_grid_size_list
924 (psiconv_sheet_grid_size_list list);
925extern void psiconv_free_sheet_grid_section(psiconv_sheet_grid_section sec);
926extern void psiconv_free_sheet_worksheet(psiconv_sheet_worksheet sheet);
927extern void psiconv_free_sheet_worksheet_list
928 (psiconv_sheet_worksheet_list list);
929
781extern void psiconv_free_sheet_f(psiconv_sheet_f file); 930extern void psiconv_free_sheet_f(psiconv_sheet_f file);
782extern void psiconv_free_sheet_cell(psiconv_sheet_cell cell); 931extern void psiconv_free_sheet_cell(psiconv_sheet_cell cell);
783extern void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list); 932extern void psiconv_free_sheet_cell_list(psiconv_sheet_cell_list list);
784extern void psiconv_free_numberformat(psiconv_numberformat numberformat); 933extern void psiconv_free_sheet_numberformat
934 (psiconv_sheet_numberformat numberformat);
935extern void psiconv_free_sheet_line_list(psiconv_sheet_line_list list);
936extern void psiconv_free_sheet_line(psiconv_sheet_line line);
937extern void psiconv_free_sheet_name_section(psiconv_sheet_name_section section);
938extern void psiconv_free_sheet_variable(psiconv_sheet_variable list);
939extern void psiconv_free_sheet_variable_list(psiconv_sheet_variable_list list);
940extern void psiconv_free_sheet_info_section(psiconv_sheet_info_section section);
785extern void psiconv_free_header_section(psiconv_header_section header); 941extern void psiconv_free_header_section(psiconv_header_section header);
786extern void psiconv_free_section_table_entry(psiconv_section_table_entry entry); 942extern void psiconv_free_section_table_entry(psiconv_section_table_entry entry);
787extern void psiconv_free_section_table_section 943extern void psiconv_free_section_table_section
788 (psiconv_section_table_section section); 944 (psiconv_section_table_section section);
789extern void psiconv_free_application_id_section 945extern void psiconv_free_application_id_section
790 (psiconv_application_id_section section); 946 (psiconv_application_id_section section);
947extern void psiconv_free_object_display_section
948 (psiconv_object_display_section section);
949extern void psiconv_free_object_icon_section
950 (psiconv_object_icon_section section);
951extern void psiconv_free_object(psiconv_object object);
791extern void psiconv_free_in_line_layout(psiconv_in_line_layout layout); 952extern void psiconv_free_in_line_layout(psiconv_in_line_layout layout);
792extern void psiconv_free_in_line_layouts(psiconv_in_line_layouts layouts); 953extern void psiconv_free_in_line_layouts(psiconv_in_line_layouts layouts);
793extern void psiconv_free_replacement(psiconv_replacement replacement); 954extern void psiconv_free_replacement(psiconv_replacement replacement);
794extern void psiconv_free_replacements(psiconv_replacements replacements); 955extern void psiconv_free_replacements(psiconv_replacements replacements);
795extern void psiconv_free_paragraph(psiconv_paragraph paragraph); 956extern void psiconv_free_paragraph(psiconv_paragraph paragraph);

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

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