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

Contents of /psiconv/trunk/lib/psiconv/generate_word.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 142 - (show annotations)
Tue Jan 29 18:38:38 2002 UTC (22 years, 2 months ago) by frodo
File MIME type: text/plain
File size: 5328 byte(s)
(Frodo) DMALLOC support

1 /*
2 generate_word.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 2000 Frodo Looijaard <frodol@dds.nl>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "config.h"
21 #include "compat.h"
22
23 #include <stdlib.h>
24
25 #include "generate_routines.h"
26 #include "error.h"
27
28 #ifdef DMALLOC
29 #include <dmalloc.h>
30 #endif
31
32
33 int psiconv_write_word_status_section(psiconv_buffer buf,
34 psiconv_word_status_section value)
35 {
36 int res;
37
38 if (!value) {
39 psiconv_warn(0,psiconv_buffer_length(buf),"Null word status section");
40 return -PSICONV_E_GENERATE;
41 }
42
43 if ((res = psiconv_write_u8(buf,0x02)))
44 return res;
45 if ((res = psiconv_write_u8(buf,(value->show_tabs?0x01:0x00) |
46 (value->show_spaces?0x02:0x00) |
47 (value->show_paragraph_ends?0x04:0x00) |
48 (value->show_line_breaks?0x08:0x00) |
49 (value->show_hard_minus?0x20:0x00) |
50 (value->show_hard_space?0x40:0x00))))
51 return res;
52 if ((res = psiconv_write_u8(buf,(value->show_full_pictures?0x01:0x00) |
53 (value->show_full_graphs?0x02:0x00))))
54 return res;
55 if ((res = psiconv_write_bool(buf,value->show_top_toolbar)))
56 return res;
57 if ((res = psiconv_write_bool(buf,value->show_side_toolbar)))
58 return res;
59 if ((res = psiconv_write_u8(buf,(value->fit_lines_to_screen?0x08:0x00))))
60 return res;
61 if ((res = psiconv_write_u32(buf,value->cursor_position)))
62 return res;
63 return psiconv_write_u32(buf,value->display_size);
64 }
65
66 int psiconv_write_word_styles_section(psiconv_buffer buf,
67 psiconv_word_styles_section value)
68 {
69 int res,i;
70 psiconv_word_style style;
71 psiconv_paragraph_layout basepara;
72 psiconv_character_layout basechar;
73 psiconv_font font;
74
75
76 if (!value || !value->normal || !value->styles) {
77 psiconv_warn(0,psiconv_buffer_length(buf),"Null word styles section");
78 res = -PSICONV_E_GENERATE;
79 goto ERROR1;
80 }
81
82 if (!(basepara=psiconv_basic_paragraph_layout())) {
83 res = -PSICONV_E_NOMEM;
84 goto ERROR1;
85 }
86
87 if (!(basechar=psiconv_basic_character_layout())) {
88 res = -PSICONV_E_NOMEM;
89 goto ERROR2;
90 }
91
92
93 if ((res = psiconv_write_paragraph_layout_list(buf,value->normal->paragraph,
94 basepara)))
95 goto ERROR3;
96 /* Always generate the font for Normal */
97 font = basechar->font;
98 basechar->font = NULL;
99 res = psiconv_write_character_layout_list(buf,value->normal->character,
100 basechar);
101 basechar->font = font;
102 if (res)
103 goto ERROR3;
104 if ((res = psiconv_write_u32(buf,value->normal->hotkey)))
105 goto ERROR3;
106 if ((res = psiconv_write_u8(buf,psiconv_list_length(value->styles))))
107 goto ERROR3;
108
109
110
111 for (i = 0; i < psiconv_list_length(value->styles); i++) {
112 if (!(style = psiconv_list_get(value->styles,i))) {
113 psiconv_warn(0,psiconv_buffer_length(buf),"Massive memory corruption");
114 res = -PSICONV_E_OTHER;
115 goto ERROR3;
116 }
117 if ((res = psiconv_write_u32(buf,style->hotkey)))
118 goto ERROR3;
119 }
120 if ((res = psiconv_write_u8(buf,psiconv_list_length(value->styles))))
121 goto ERROR3;
122 for (i = 0; i < psiconv_list_length(value->styles); i++) {
123 if (!(style = psiconv_list_get(value->styles,i))) {
124 psiconv_warn(0,psiconv_buffer_length(buf),"Massive memory corruption");
125 res = -PSICONV_E_OTHER;
126 goto ERROR3;
127 }
128 if (!style->name) {
129 psiconv_warn(0,psiconv_buffer_length(buf),"Null style name");
130 res = -PSICONV_E_GENERATE;
131 goto ERROR3;
132 }
133 if ((res = psiconv_write_string(buf,style->name)))
134 goto ERROR3;
135 if ((res = psiconv_write_u32(buf,style->built_in?PSICONV_ID_STYLE_BUILT_IN:
136 PSICONV_ID_STYLE_REMOVABLE)))
137 goto ERROR3;
138 if ((res = psiconv_write_u32(buf,style->outline_level)))
139 goto ERROR3;
140 if ((res = psiconv_write_character_layout_list(buf,style->character,
141 value->normal->character)))
142 goto ERROR3;
143 if ((res = psiconv_write_paragraph_layout_list(buf,style->paragraph,
144 value->normal->paragraph)))
145 goto ERROR3;
146 }
147
148 for (i = 0; i < psiconv_list_length(value->styles); i++)
149 if ((res = psiconv_write_u8(buf,0xff)))
150 goto ERROR3;
151 res = -PSICONV_E_OK;
152
153 ERROR3:
154 psiconv_free_character_layout(basechar);
155 ERROR2:
156 psiconv_free_paragraph_layout(basepara);
157 ERROR1:
158 return res;
159 }

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