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