]>
Commit | Line | Data |
---|---|---|
9a29912f JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tex2any.cpp | |
3 | // Purpose: Utilities for Latex conversion. | |
4 | // Author: Julian Smart | |
54ca2f7e | 5 | // Modified by: Wlodzimierz ABX Skiba 2003/2004 Unicode support |
b63b07a8 | 6 | // Ron Lee |
9a29912f JS |
7 | // Created: 01/01/99 |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Julian Smart | |
10 | // Licence: wxWindows licence | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
9a29912f JS |
13 | // For compilers that support precompilation, includes "wx.h". |
14 | #include "wx/wxprec.h" | |
15 | ||
16 | #ifdef __BORLANDC__ | |
17 | #pragma hdrstop | |
18 | #endif | |
19 | ||
20 | #ifndef WX_PRECOMP | |
9a29912f JS |
21 | #endif |
22 | ||
23 | #include <ctype.h> | |
24 | #include "tex2any.h" | |
25 | #include <stdlib.h> | |
26 | #include <time.h> | |
27 | ||
ea172e69 MB |
28 | static inline wxChar* copystring(const wxChar* s) |
29 | { return wxStrcpy(new wxChar[wxStrlen(s) + 1], s); } | |
ea172e69 | 30 | |
9a29912f JS |
31 | /* |
32 | * Variables accessible from clients | |
33 | * | |
34 | */ | |
254a2129 | 35 | |
9a29912f JS |
36 | TexChunk * DocumentTitle = NULL; |
37 | TexChunk * DocumentAuthor = NULL; | |
38 | TexChunk * DocumentDate = NULL; | |
39 | ||
40 | // Header/footers/pagestyle | |
41 | TexChunk * LeftHeaderEven = NULL; | |
42 | TexChunk * LeftFooterEven = NULL; | |
43 | TexChunk * CentreHeaderEven = NULL; | |
44 | TexChunk * CentreFooterEven = NULL; | |
45 | TexChunk * RightHeaderEven = NULL; | |
46 | TexChunk * RightFooterEven = NULL; | |
47 | TexChunk * LeftHeaderOdd = NULL; | |
48 | TexChunk * LeftFooterOdd = NULL; | |
49 | TexChunk * CentreHeaderOdd = NULL; | |
50 | TexChunk * CentreFooterOdd = NULL; | |
51 | TexChunk * RightHeaderOdd = NULL; | |
52 | TexChunk * RightFooterOdd = NULL; | |
6c155d33 | 53 | wxChar * PageStyle = copystring(_T("plain")); |
9a29912f JS |
54 | |
55 | int DocumentStyle = LATEX_REPORT; | |
56 | int MinorDocumentStyle = 0; | |
57 | wxPathList TexPathList; | |
6c155d33 JS |
58 | wxChar * BibliographyStyleString = copystring(_T("plain")); |
59 | wxChar * DocumentStyleString = copystring(_T("report")); | |
60 | wxChar * MinorDocumentStyleString = NULL; | |
9a29912f JS |
61 | int ParSkip = 0; |
62 | int ParIndent = 0; | |
63 | ||
64 | int normalFont = 10; | |
65 | int smallFont = 8; | |
66 | int tinyFont = 6; | |
67 | int largeFont1 = 12; | |
68 | int LargeFont2 = 14; | |
69 | int LARGEFont3 = 18; | |
70 | int hugeFont1 = 20; | |
71 | int HugeFont2 = 24; | |
72 | int HUGEFont3 = 28; | |
73 | ||
fad535ee GT |
74 | // All of these tokens MUST be found on a line by themselves (no other |
75 | // text) and must start at the first character of the line, or tex2rtf | |
76 | // will fail to process them correctly (a limitation of tex2rtf, not TeX) | |
7cbe4e79 | 77 | static const wxString syntaxTokens[] = |
6c155d33 JS |
78 | { _T("\\begin{verbatim}"), |
79 | _T("\\begin{toocomplex}"), | |
80 | _T("\\end{verbatim}"), | |
81 | _T("\\end{toocomplex}"), | |
82 | _T("\\verb"), | |
83 | _T("\\begin{comment}"), | |
84 | _T("\\end{comment}"), | |
85 | _T("\\verbatiminput"), | |
86 | // _T("\\par"), | |
87 | _T("\\input"), | |
88 | _T("\\helpinput"), | |
89 | _T("\\include"), | |
fad535ee GT |
90 | wxEmptyString |
91 | }; | |
92 | ||
93 | ||
9a29912f JS |
94 | /* |
95 | * USER-ADJUSTABLE SETTINGS | |
96 | * | |
97 | */ | |
98 | ||
99 | // Section font sizes | |
100 | int chapterFont = 12; // LARGEFont3; | |
101 | int sectionFont = 12; // LargeFont2; | |
102 | int subsectionFont = 12; // largeFont1; | |
103 | int titleFont = LARGEFont3; | |
104 | int authorFont = LargeFont2; | |
b63b07a8 | 105 | int mirrorMargins = true; |
4fe30bce | 106 | bool winHelp = false; // Output in Windows Help format if true, linear otherwise |
b63b07a8 RL |
107 | bool isInteractive = false; |
108 | bool runTwice = false; | |
9a29912f | 109 | int convertMode = TEX_RTF; |
88fd7006 | 110 | bool checkCurlyBraces = false; |
b63b07a8 RL |
111 | bool checkSyntax = false; |
112 | bool headerRule = false; | |
113 | bool footerRule = false; | |
4fe30bce | 114 | bool compatibilityMode = false; // If true, maximum Latex compatibility |
9a29912f JS |
115 | // (Quality of RTF generation deteriorate) |
116 | bool generateHPJ; // Generate WinHelp Help Project file | |
6c155d33 | 117 | wxChar *winHelpTitle = NULL; // Windows Help title |
9a29912f JS |
118 | int defaultTableColumnWidth = 2000; |
119 | ||
120 | int labelIndentTab = 18; // From left indent to item label (points) | |
121 | int itemIndentTab = 40; // From left indent to item (points) | |
122 | ||
b63b07a8 | 123 | bool useUpButton = true; |
9a29912f JS |
124 | int htmlBrowseButtons = HTML_BUTTONS_TEXT; |
125 | ||
b63b07a8 | 126 | bool truncateFilenames = false; // Truncate for DOS |
9a29912f | 127 | int winHelpVersion = 3; // WinHelp Version (3 for Windows 3.1, 4 for Win95) |
b63b07a8 RL |
128 | bool winHelpContents = false; // Generate .cnt file for WinHelp 4 |
129 | bool htmlIndex = false; // Generate .htx file for HTML | |
130 | bool htmlFrameContents = false; // Use frames for HTML contents page | |
6c155d33 | 131 | wxChar *htmlStylesheet = NULL; // Use this CSS stylesheet for HTML pages |
b63b07a8 RL |
132 | bool useHeadingStyles = true; // Insert \s1, s2 etc. |
133 | bool useWord = true; // Insert proper Word table of contents, etc etc | |
9a29912f | 134 | int contentsDepth = 4; // Depth of Word table of contents |
b63b07a8 | 135 | bool indexSubsections = true; // Index subsections in linear RTF |
9a29912f | 136 | // Linear RTF method of including bitmaps. Can be "includepicture", "hex" |
6c155d33 | 137 | wxChar *bitmapMethod = copystring(_T("includepicture")); |
b63b07a8 | 138 | bool upperCaseNames = false; |
9a29912f | 139 | // HTML background and text colours |
6c155d33 JS |
140 | wxChar *backgroundImageString = NULL; |
141 | wxChar *backgroundColourString = copystring(_T("255;255;255")); | |
142 | wxChar *textColourString = NULL; | |
143 | wxChar *linkColourString = NULL; | |
144 | wxChar *followedLinkColourString = NULL; | |
b63b07a8 RL |
145 | bool combineSubSections = false; |
146 | bool htmlWorkshopFiles = false; | |
147 | bool ignoreBadRefs = false; | |
4fe30bce | 148 | wxChar *htmlFaceName = NULL; |
9a29912f | 149 | |
3924dd22 GT |
150 | extern int passNumber; |
151 | ||
152 | extern wxHashTable TexReferences; | |
153 | ||
9a29912f JS |
154 | /* |
155 | * International support | |
156 | */ | |
157 | ||
158 | // Names to help with internationalisation | |
6c155d33 JS |
159 | wxChar *ContentsNameString = copystring(_T("Contents")); |
160 | wxChar *AbstractNameString = copystring(_T("Abstract")); | |
161 | wxChar *GlossaryNameString = copystring(_T("Glossary")); | |
162 | wxChar *ReferencesNameString = copystring(_T("References")); | |
163 | wxChar *FiguresNameString = copystring(_T("List of Figures")); | |
164 | wxChar *TablesNameString = copystring(_T("List of Tables")); | |
165 | wxChar *FigureNameString = copystring(_T("Figure")); | |
166 | wxChar *TableNameString = copystring(_T("Table")); | |
167 | wxChar *IndexNameString = copystring(_T("Index")); | |
168 | wxChar *ChapterNameString = copystring(_T("chapter")); | |
169 | wxChar *SectionNameString = copystring(_T("section")); | |
170 | wxChar *SubsectionNameString = copystring(_T("subsection")); | |
171 | wxChar *SubsubsectionNameString = copystring(_T("subsubsection")); | |
172 | wxChar *UpNameString = copystring(_T("Up")); | |
9a29912f JS |
173 | |
174 | /* | |
175 | * Section numbering | |
176 | * | |
177 | */ | |
254a2129 | 178 | |
9a29912f JS |
179 | int chapterNo = 0; |
180 | int sectionNo = 0; | |
181 | int subsectionNo = 0; | |
182 | int subsubsectionNo = 0; | |
183 | int figureNo = 0; | |
184 | int tableNo = 0; | |
185 | ||
186 | /* | |
187 | * Other variables | |
188 | * | |
189 | */ | |
254a2129 | 190 | |
9a29912f JS |
191 | FILE *CurrentOutput1 = NULL; |
192 | FILE *CurrentOutput2 = NULL; | |
193 | FILE *Inputs[15]; | |
dda2e4fd | 194 | unsigned long LineNumbers[15]; |
6c155d33 | 195 | wxChar *FileNames[15]; |
9a29912f JS |
196 | int CurrentInputIndex = 0; |
197 | ||
6c155d33 JS |
198 | wxChar *TexFileRoot = NULL; |
199 | wxChar *TexBibName = NULL; // Bibliography output file name | |
200 | wxChar *TexTmpBibName = NULL; // Temporary bibliography output file name | |
4fe30bce WS |
201 | bool isSync = false; // If true, should not yield to other processes. |
202 | bool stopRunning = false; // If true, should abort. | |
9a29912f JS |
203 | |
204 | static int currentColumn = 0; | |
6c155d33 | 205 | wxChar *currentArgData = NULL; |
4fe30bce | 206 | bool haveArgData = false; // If true, we're simulating the data. |
9a29912f JS |
207 | TexChunk *currentArgument = NULL; |
208 | TexChunk *nextChunk = NULL; | |
b63b07a8 | 209 | bool isArgOptional = false; |
446dd881 | 210 | int noArgs = 0; |
9a29912f JS |
211 | |
212 | TexChunk *TopLevel = NULL; | |
213 | // wxList MacroDefs(wxKEY_STRING); | |
214 | wxHashTable MacroDefs(wxKEY_STRING); | |
215 | wxStringList IgnorableInputFiles; // Ignorable \input files, e.g. psbox.tex | |
6c155d33 | 216 | wxChar *BigBuffer = NULL; // For reading in large chunks of text |
9a29912f JS |
217 | TexMacroDef *SoloBlockDef = NULL; |
218 | TexMacroDef *VerbatimMacroDef = NULL; | |
219 | ||
220 | #define IncrementLineNumber() LineNumbers[CurrentInputIndex] ++ | |
221 | ||
3924dd22 | 222 | |
6c155d33 | 223 | TexRef::TexRef(const wxChar *label, const wxChar *file, |
4fe30bce | 224 | const wxChar *section, const wxChar *sectionN) |
3924dd22 GT |
225 | { |
226 | refLabel = copystring(label); | |
6c155d33 JS |
227 | refFile = file ? copystring(file) : (wxChar*) NULL; |
228 | sectionNumber = section ? copystring(section) : copystring(_T("??")); | |
229 | sectionName = sectionN ? copystring(sectionN) : copystring(_T("??")); | |
3924dd22 GT |
230 | } |
231 | ||
232 | TexRef::~TexRef(void) | |
233 | { | |
234 | delete [] refLabel; refLabel = NULL; | |
235 | delete [] refFile; refFile = NULL; | |
236 | delete [] sectionNumber; sectionNumber = NULL; | |
237 | delete [] sectionName; sectionName = NULL; | |
238 | } | |
239 | ||
240 | ||
241 | CustomMacro::~CustomMacro() | |
242 | { | |
243 | if (macroName) | |
244 | delete [] macroName; | |
245 | if (macroBody) | |
246 | delete [] macroBody; | |
247 | } | |
248 | ||
6c155d33 | 249 | void TexOutput(const wxChar *s, bool ordinaryText) |
9a29912f | 250 | { |
6c155d33 | 251 | int len = wxStrlen(s); |
9a29912f JS |
252 | |
253 | // Update current column, but only if we're guaranteed to | |
254 | // be ordinary text (not mark-up stuff) | |
255 | int i; | |
256 | if (ordinaryText) | |
257 | for (i = 0; i < len; i++) | |
258 | { | |
259 | if (s[i] == 13 || s[i] == 10) | |
260 | currentColumn = 0; | |
261 | else | |
262 | currentColumn ++; | |
263 | } | |
264 | ||
265 | if (CurrentOutput1) | |
6c155d33 | 266 | wxFprintf(CurrentOutput1, _T("%s"), s); |
9a29912f | 267 | if (CurrentOutput2) |
6c155d33 | 268 | wxFprintf(CurrentOutput2, _T("%s"), s); |
9a29912f JS |
269 | } |
270 | ||
271 | /* | |
272 | * Try to find a Latex macro, in one of the following forms: | |
273 | * (1) \begin{} ... \end{} | |
274 | * (2) \macroname{arg1}...{argn} | |
275 | * (3) {\bf arg1} | |
276 | */ | |
277 | ||
278 | void ForbidWarning(TexMacroDef *def) | |
279 | { | |
04b9c5bb | 280 | wxString informBuf; |
9a29912f JS |
281 | switch (def->forbidden) |
282 | { | |
283 | case FORBID_WARN: | |
284 | { | |
6c155d33 | 285 | informBuf.Printf(_T("Warning: it is recommended that command %s is not used."), def->name); |
1693108c | 286 | OnInform(informBuf); |
9a29912f JS |
287 | break; |
288 | } | |
289 | case FORBID_ABSOLUTELY: | |
290 | { | |
6c155d33 | 291 | informBuf.Printf(_T("Error: command %s cannot be used and will lead to errors."), def->name); |
1693108c | 292 | OnInform(informBuf); |
9a29912f JS |
293 | break; |
294 | } | |
295 | default: | |
296 | break; | |
297 | } | |
298 | } | |
254a2129 | 299 | |
6c155d33 | 300 | TexMacroDef *MatchMacro(wxChar *buffer, int *pos, wxChar **env, bool *parseToBrace) |
9a29912f | 301 | { |
9c9691ba WS |
302 | *parseToBrace = true; |
303 | int i = (*pos); | |
304 | TexMacroDef *def = NULL; | |
305 | wxChar macroBuf[40]; | |
9a29912f | 306 | |
9c9691ba WS |
307 | // First, try to find begin{thing} |
308 | if (wxStrncmp(buffer+i, _T("begin{"), 6) == 0) | |
9a29912f | 309 | { |
9c9691ba | 310 | i += 6; |
9a29912f | 311 | |
9c9691ba WS |
312 | int j = i; |
313 | while ((isalpha(buffer[j]) || buffer[j] == '*') && ((j - i) < 39)) | |
314 | { | |
315 | macroBuf[j-i] = buffer[j]; | |
316 | j ++; | |
317 | } | |
318 | macroBuf[j-i] = 0; | |
319 | def = (TexMacroDef *)MacroDefs.Get(macroBuf); | |
320 | ||
321 | if (def) | |
322 | { | |
323 | *pos = j + 1; // BUGBUG Should this be + 1??? | |
324 | *env = def->name; | |
325 | ForbidWarning(def); | |
326 | return def; | |
327 | } | |
328 | else | |
329 | { | |
330 | return NULL; | |
331 | } | |
9a29912f | 332 | } |
9a29912f | 333 | |
9c9691ba WS |
334 | // Failed, so try to find macro from definition list |
335 | int j = i; | |
9a29912f | 336 | |
9c9691ba WS |
337 | // First try getting a one-character macro, but ONLY |
338 | // if these TWO characters are not both alphabetical (could | |
339 | // be a longer macro) | |
340 | if (!(isalpha(buffer[i]) && isalpha(buffer[i+1]))) | |
341 | { | |
342 | macroBuf[0] = buffer[i]; | |
343 | macroBuf[1] = 0; | |
9a29912f | 344 | |
9c9691ba WS |
345 | def = (TexMacroDef *)MacroDefs.Get(macroBuf); |
346 | if (def) j ++; | |
347 | } | |
9a29912f | 348 | |
9c9691ba | 349 | if (!def) |
9a29912f | 350 | { |
9c9691ba WS |
351 | while ((isalpha(buffer[j]) || buffer[j] == '*') && ((j - i) < 39)) |
352 | { | |
353 | macroBuf[j-i] = buffer[j]; | |
354 | j ++; | |
355 | } | |
356 | macroBuf[j-i] = 0; | |
357 | def = (TexMacroDef *)MacroDefs.Get(macroBuf); | |
9a29912f | 358 | } |
254a2129 | 359 | |
9c9691ba | 360 | if (def) |
9a29912f | 361 | { |
9c9691ba WS |
362 | i = j; |
363 | ||
364 | // We want to check whether this is a space-consuming macro | |
365 | // (e.g. {\bf word}) | |
366 | // No brace, e.g. \input thing.tex instead of \input{thing}; | |
367 | // or a numeric argument, such as \parindent0pt | |
368 | if ((def->no_args > 0) && ((buffer[i] == 32) || (buffer[i] == '=') || (isdigit(buffer[i])))) | |
369 | { | |
370 | if ((buffer[i] == 32) || (buffer[i] == '=')) | |
371 | i ++; | |
9a29912f | 372 | |
9c9691ba WS |
373 | *parseToBrace = false; |
374 | } | |
375 | *pos = i; | |
376 | ForbidWarning(def); | |
377 | return def; | |
9a29912f | 378 | } |
9c9691ba | 379 | return NULL; |
9a29912f JS |
380 | } |
381 | ||
6c155d33 | 382 | void EatWhiteSpace(wxChar *buffer, int *pos) |
9a29912f | 383 | { |
6c155d33 | 384 | int len = wxStrlen(buffer); |
9a29912f | 385 | int j = *pos; |
b63b07a8 RL |
386 | bool keepGoing = true; |
387 | bool moreLines = true; | |
9a29912f JS |
388 | while ((j < len) && keepGoing && |
389 | (buffer[j] == 10 || buffer[j] == 13 || buffer[j] == ' ' || buffer[j] == 9)) | |
390 | { | |
391 | j ++; | |
392 | if (j >= len) | |
393 | { | |
394 | if (moreLines) | |
395 | { | |
396 | moreLines = read_a_line(buffer); | |
6c155d33 | 397 | len = wxStrlen(buffer); |
9a29912f JS |
398 | j = 0; |
399 | } | |
400 | else | |
b63b07a8 | 401 | keepGoing = false; |
9a29912f JS |
402 | } |
403 | } | |
404 | *pos = j; | |
405 | } | |
406 | ||
6c155d33 | 407 | bool FindEndEnvironment(wxChar *buffer, int *pos, wxChar *env) |
9a29912f JS |
408 | { |
409 | int i = (*pos); | |
410 | ||
411 | // Try to find end{thing} | |
6c155d33 JS |
412 | if ((wxStrncmp(buffer+i, _T("end{"), 4) == 0) && |
413 | (wxStrncmp(buffer+i+4, env, wxStrlen(env)) == 0)) | |
9a29912f | 414 | { |
6c155d33 | 415 | *pos = i + 5 + wxStrlen(env); |
b63b07a8 | 416 | return true; |
9a29912f | 417 | } |
b63b07a8 | 418 | else return false; |
9a29912f JS |
419 | } |
420 | ||
b63b07a8 RL |
421 | bool readingVerbatim = false; |
422 | bool readInVerbatim = false; // Within a verbatim, but not nec. verbatiminput | |
9a29912f | 423 | |
f6bcfd97 BP |
424 | // Switched this off because e.g. \verb${$ causes it to fail. There is no |
425 | // detection of \verb yet. | |
fad535ee | 426 | // #define CHECK_BRACES 1 |
f6bcfd97 | 427 | |
88fd7006 VS |
428 | unsigned long leftCurly = 0; |
429 | unsigned long rightCurly = 0; | |
5c66e5b2 | 430 | static wxString currentFileName = wxEmptyString; |
f6bcfd97 | 431 | |
6c155d33 | 432 | bool read_a_line(wxChar *buf) |
9a29912f JS |
433 | { |
434 | if (CurrentInputIndex < 0) | |
435 | { | |
436 | buf[0] = 0; | |
b63b07a8 | 437 | return false; |
9a29912f | 438 | } |
fad535ee | 439 | |
9a29912f | 440 | int ch = -2; |
dda2e4fd | 441 | unsigned long bufIndex = 0; |
9a29912f | 442 | buf[0] = 0; |
6644cbe7 | 443 | int lastChar; |
f6bcfd97 | 444 | |
9a29912f JS |
445 | while (ch != EOF && ch != 10) |
446 | { | |
0e6ca394 GT |
447 | if (bufIndex >= MAX_LINE_BUFFER_SIZE) |
448 | { | |
449 | wxString errBuf; | |
6c155d33 JS |
450 | errBuf.Printf(_T("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated."), |
451 | LineNumbers[CurrentInputIndex], (const wxChar*) currentFileName.c_str(), MAX_LINE_BUFFER_SIZE); | |
1693108c | 452 | OnError(errBuf); |
b63b07a8 | 453 | return false; |
0e6ca394 GT |
454 | } |
455 | ||
6c155d33 JS |
456 | if (((bufIndex == 14) && (wxStrncmp(buf, _T("\\end{verbatim}"), 14) == 0)) || |
457 | ((bufIndex == 16) && (wxStrncmp(buf, _T("\\end{toocomplex}"), 16) == 0))) | |
b63b07a8 | 458 | readInVerbatim = false; |
9a29912f | 459 | |
c22287af | 460 | lastChar = ch; |
9a29912f | 461 | ch = getc(Inputs[CurrentInputIndex]); |
f6bcfd97 | 462 | |
88fd7006 | 463 | if (checkCurlyBraces) |
f6bcfd97 | 464 | { |
c22287af | 465 | if (ch == '{' && !readInVerbatim && lastChar != _T('\\')) |
88fd7006 | 466 | leftCurly++; |
c22287af | 467 | if (ch == '}' && !readInVerbatim && lastChar != _T('\\')) |
fad535ee | 468 | { |
88fd7006 VS |
469 | rightCurly++; |
470 | if (rightCurly > leftCurly) | |
fad535ee GT |
471 | { |
472 | wxString errBuf; | |
88fd7006 | 473 | errBuf.Printf(_T("An extra right Curly brace ('}') was detected at line %lu inside file %s"), LineNumbers[CurrentInputIndex], (const wxChar*) currentFileName.c_str()); |
1693108c | 474 | OnError(errBuf); |
fad535ee | 475 | |
88fd7006 | 476 | // Reduce the count of right Curly braces, so the mismatched count |
fad535ee | 477 | // isn't reported on every line that has a '}' after the first mismatch |
88fd7006 | 478 | rightCurly--; |
fad535ee GT |
479 | } |
480 | } | |
f6bcfd97 | 481 | } |
f6bcfd97 | 482 | |
9a29912f JS |
483 | if (ch != EOF) |
484 | { | |
485 | // Check for 2 consecutive newlines and replace with \par | |
486 | if (ch == 10 && !readInVerbatim) | |
487 | { | |
488 | int ch1 = getc(Inputs[CurrentInputIndex]); | |
489 | if ((ch1 == 10) || (ch1 == 13)) | |
490 | { | |
491 | // Eliminate newline (10) following DOS linefeed | |
254a2129 | 492 | if (ch1 == 13) |
6c155d33 | 493 | getc(Inputs[CurrentInputIndex]); |
0e6ca394 | 494 | buf[bufIndex] = 0; |
9a29912f | 495 | IncrementLineNumber(); |
6c155d33 | 496 | // wxStrcat(buf, "\\par\n"); |
9a29912f | 497 | // i += 6; |
0e6ca394 GT |
498 | if (bufIndex+5 >= MAX_LINE_BUFFER_SIZE) |
499 | { | |
500 | wxString errBuf; | |
6c155d33 JS |
501 | errBuf.Printf(_T("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated."), |
502 | LineNumbers[CurrentInputIndex], (const wxChar*) currentFileName.c_str(),MAX_LINE_BUFFER_SIZE); | |
1693108c | 503 | OnError(errBuf); |
b63b07a8 | 504 | return false; |
0e6ca394 | 505 | } |
6c155d33 | 506 | wxStrcat(buf, _T("\\par")); |
0e6ca394 GT |
507 | bufIndex += 5; |
508 | ||
9a29912f JS |
509 | } |
510 | else | |
511 | { | |
512 | ungetc(ch1, Inputs[CurrentInputIndex]); | |
0e6ca394 GT |
513 | if (bufIndex >= MAX_LINE_BUFFER_SIZE) |
514 | { | |
515 | wxString errBuf; | |
6c155d33 JS |
516 | errBuf.Printf(_T("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated."), |
517 | LineNumbers[CurrentInputIndex], (const wxChar*) currentFileName.c_str(),MAX_LINE_BUFFER_SIZE); | |
1693108c | 518 | OnError(errBuf); |
b63b07a8 | 519 | return false; |
0e6ca394 GT |
520 | } |
521 | ||
254a2129 | 522 | buf[bufIndex] = (wxChar)ch; |
0e6ca394 | 523 | bufIndex ++; |
9a29912f JS |
524 | } |
525 | } | |
526 | else | |
527 | { | |
528 | ||
529 | // Convert embedded characters to RTF equivalents | |
fad535ee GT |
530 | switch(ch) |
531 | { | |
532 |