--- psiconv/trunk/lib/psiconv/data.h 1999/10/03 21:10:47 2 +++ psiconv/trunk/lib/psiconv/data.h 2000/12/10 16:49:40 58 @@ -24,18 +24,24 @@ #ifndef PSICONV_DATA_H #define PSICONV_DATA_H -#include "general.h" -#include "list.h" +#include +#include /* All types which end on _t are plain types; all other types are pointers to structs */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + typedef enum psiconv_file_type { psiconv_unknown_file, psiconv_word_file, psiconv_texted_file, - psiconv_mfm_file, - psiconv_sketch_file + psiconv_mbm_file, + psiconv_sketch_file, + psiconv_clipart_file } psiconv_file_type_t; /* Length indicators */ @@ -89,27 +95,27 @@ /* Colors. black: 0x00 0x00 0x00 white: 0xff 0xff 0xff */ -typedef struct psiconv_color +typedef struct psiconv_color_s { psiconv_u8 red; psiconv_u8 green; psiconv_u8 blue; } * psiconv_color; -typedef struct psiconv_font +typedef struct psiconv_font_s { char *name; psiconv_u8 screenfont; } *psiconv_font; -typedef struct psiconv_border +typedef struct psiconv_border_s { psiconv_border_kind_t kind; psiconv_size_t thickness; /* Set to 1/20 for non-solid lines */ psiconv_color color; } *psiconv_border; -typedef struct psiconv_bullet +typedef struct psiconv_bullet_s { psiconv_bool_t on; psiconv_size_t font_size; @@ -126,7 +132,7 @@ psiconv_tab_right } psiconv_tab_kind_t; -typedef struct psiconv_tab +typedef struct psiconv_tab_s { psiconv_length_t location; psiconv_tab_kind_t kind; @@ -135,13 +141,13 @@ typedef psiconv_list psiconv_tab_list; /* of struct psiconv_tab */ -typedef struct psiconv_all_tabs +typedef struct psiconv_all_tabs_s { psiconv_length_t normal; psiconv_tab_list extras; } *psiconv_all_tabs; -typedef struct psiconv_character_layout +typedef struct psiconv_character_layout_s { psiconv_color color; psiconv_color back_color; @@ -154,7 +160,7 @@ psiconv_font font; } *psiconv_character_layout; -typedef struct psiconv_paragraph_layout +typedef struct psiconv_paragraph_layout_s { psiconv_color back_color; psiconv_length_t indent_left; @@ -179,17 +185,16 @@ psiconv_all_tabs tabs; } *psiconv_paragraph_layout; -typedef struct psiconv_header_section +typedef struct psiconv_header_section_s { psiconv_u32 uid1; psiconv_u32 uid2; psiconv_u32 uid3; psiconv_u32 checksum; - psiconv_u32 section_table_offset; psiconv_file_type_t file; } *psiconv_header_section; -typedef struct psiconv_section_table_entry +typedef struct psiconv_section_table_entry_s { psiconv_u32 id; psiconv_u32 offset; @@ -198,13 +203,13 @@ typedef psiconv_list psiconv_section_table_section; /* Of struct sectiontable_entry */ -typedef struct psiconv_application_id_section +typedef struct psiconv_application_id_section_s { psiconv_u32 id; psiconv_string_t name; } *psiconv_application_id_section; -typedef struct psiconv_in_line_layout +typedef struct psiconv_in_line_layout_s { psiconv_character_layout layout; int length; @@ -221,7 +226,7 @@ psiconv_replace_filename } psiconv_replacement_type_t; -typedef struct psiconv_replacement +typedef struct psiconv_replacement_s { int offset; int cur_len; @@ -230,7 +235,7 @@ typedef psiconv_list psiconv_replacements; /* of struct replacement */ -typedef struct psiconv_paragraph +typedef struct psiconv_paragraph_s { char *text; psiconv_character_layout base_character; @@ -242,12 +247,12 @@ typedef psiconv_list psiconv_text_and_layout; /* Of struct paragraphs */ -typedef struct psiconv_texted_section +typedef struct psiconv_texted_section_s { psiconv_text_and_layout paragraphs; } *psiconv_texted_section; -typedef struct psiconv_page_header +typedef struct psiconv_page_header_s { psiconv_bool_t on_first_page; psiconv_paragraph_layout base_paragraph_layout; @@ -255,7 +260,7 @@ psiconv_texted_section text; } *psiconv_page_header; -typedef struct psiconv_page_layout_section +typedef struct psiconv_page_layout_section_s { psiconv_u32 first_page_nr; psiconv_length_t header_dist; @@ -270,7 +275,7 @@ psiconv_page_header footer; } * psiconv_page_layout_section; -typedef struct psiconv_word_status_section +typedef struct psiconv_word_status_section_s { psiconv_bool_t show_tabs; psiconv_bool_t show_spaces; @@ -287,36 +292,104 @@ psiconv_u32 display_size; } *psiconv_word_status_section; -typedef struct psiconv_word_style +typedef struct psiconv_word_style_s { psiconv_character_layout character; psiconv_paragraph_layout paragraph; psiconv_u8 hotkey; psiconv_string_t name; psiconv_bool_t built_in; + psiconv_u32 outline_level; } *psiconv_word_style; typedef psiconv_list psiconv_word_style_list; /* Of style */ -typedef struct psiconv_word_styles_section +typedef struct psiconv_word_styles_section_s { psiconv_word_style normal; psiconv_word_style_list styles; } *psiconv_word_styles_section; -typedef struct psiconv_word_f { +typedef struct psiconv_word_f_s +{ psiconv_page_layout_section page_sec; psiconv_text_and_layout paragraphs; psiconv_word_status_section status_sec; psiconv_word_styles_section styles_sec; } *psiconv_word_f; -typedef struct psiconv_texted_f { +typedef struct psiconv_texted_f_s +{ psiconv_page_layout_section page_sec; psiconv_texted_section texted_sec; } *psiconv_texted_f; -typedef struct psiconv_file { +typedef psiconv_list psiconv_jumptable_section; /* of psiconv_u32 */ + +/* Normalized values [0..1] for each component + Origin is (x,y)=(0,0), to get pixel at (X,Y) use index [Y*xsize+X] */ +typedef struct psiconv_paint_data_section_s +{ + psiconv_u32 xsize; + psiconv_u32 ysize; + psiconv_length_t pic_xsize; /* 0 if not specified */ + psiconv_length_t pic_ysize; /* 0 if not specified */ + float *red; + float *green; + float *blue; +} *psiconv_paint_data_section; + +typedef psiconv_list psiconv_pictures; + /* of struct psiconv_paint_data_section */ + +typedef struct psiconv_mbm_f_s +{ + psiconv_pictures sections; +} *psiconv_mbm_f; + +/* This is a little intricated. A picture may be embedded in a larger form. + A form is empty, except for the picture. The form has size form_{x,y}size, + and the picture is at offset picture_{x,y}_offset within the form. The + picture itself has size picture_{x,y}size. + Cuts are always <= 1.0; a cut of 0.0 cuts nothing away, a cut of 1.0 + cuts everything away. */ +typedef struct psiconv_sketch_section_s +{ + psiconv_u16 form_xsize; + psiconv_u16 form_ysize; + psiconv_u16 picture_x_offset; + psiconv_u16 picture_y_offset; + psiconv_u16 picture_xsize; + psiconv_u16 picture_ysize; + float magnification_x; /* computed relative to first six values */ + float magnification_y; /* computed relative to first six values */ + float cut_left; /* computed relative to first six values */ + float cut_right; /* computed relative to first six values */ + float cut_top; /* computed relative to first six values */ + float cut_bottom; /* computed relative to first six values */ + psiconv_paint_data_section picture; +} *psiconv_sketch_section; + +typedef struct psiconv_sketch_f_s +{ + psiconv_sketch_section sketch_sec; +} *psiconv_sketch_f; + +typedef struct psiconv_clipart_section_s +{ + /* Perhaps later on some currently unknown stuff. */ + psiconv_paint_data_section picture; +} * psiconv_clipart_section; + +typedef psiconv_list psiconv_cliparts; /* of struct psiconv_clipart_section */ + +typedef struct psiconv_clipart_f_s +{ + psiconv_cliparts sections; +} *psiconv_clipart_f; + +typedef struct psiconv_file_s +{ psiconv_file_type_t type; void *file; } *psiconv_file; @@ -324,11 +397,14 @@ /* UID1 */ #define PSICONV_ID_PSION5 0x10000037 +#define PSICONV_ID_CLIPART 0x10000041 /* UID2 */ #define PSICONV_ID_DATA_FILE 0x1000006D +#define PSICONV_ID_MBM_FILE 0x10000042 /* UID3 */ #define PSICONV_ID_WORD 0x1000007F #define PSICONV_ID_TEXTED 0x10000085 +#define PSICONV_ID_SKETCH 0x1000007D /* Section table ids */ #define PSICONV_ID_WORD_STATUS_SECTION 0x10000243 @@ -338,6 +414,7 @@ #define PSICONV_ID_WORD_STYLES_SECTION 0x10000104 #define PSICONV_ID_PAGE_LAYOUT_SECTION 0x10000105 #define PSICONV_ID_PASSWORD_SECTION 0x100000CD +#define PSICONV_ID_SKETCH_SECTION 0x1000007D /* Other ids */ #define PSICONV_ID_PAGE_DIMENSIONS 0x100000fd @@ -348,6 +425,7 @@ #define PSICONV_ID_TEXTED_TEXT 0x10000064 #define PSICONV_ID_STYLE_REMOVABLE 0x1000004F #define PSICONV_ID_STYLE_BUILT_IN 0x1000004C +#define PSICONV_ID_CLIPART_ITEM 0x10000040 /* Return a clean layout_status. You can modify it at will */ @@ -397,7 +475,23 @@ extern void psiconv_free_word_status_section (psiconv_word_status_section section); extern void psiconv_free_word_f(psiconv_word_f file); +extern void psiconv_free_texted_f(psiconv_texted_f file); +extern void psiconv_free_paint_data_section(psiconv_paint_data_section section); +extern void psiconv_free_pictures(psiconv_pictures section); +extern void psiconv_free_jumptable_section + (psiconv_jumptable_section section); +extern void psiconv_free_mbm_f(psiconv_mbm_f file); +extern void psiconv_free_sketch_section(psiconv_sketch_section sec); +extern void psiconv_free_sketch_f(psiconv_sketch_f file); +extern void psiconv_free_clipart_section(psiconv_clipart_section section); +extern void psiconv_free_cliparts(psiconv_cliparts section); +extern void psiconv_free_clipart_f(psiconv_clipart_f file); + + extern void psiconv_free_file(psiconv_file file); +#ifdef __cplusplus +} +#endif /* __cplusplus */ #endif /* def PSICONV_DATA_H */