]>
Commit | Line | Data |
---|---|---|
9a29912f JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: tex2rtf.cpp | |
3 | // Purpose: Converts Latex to linear/WinHelp RTF, HTML, wxHelp. | |
4 | // Author: Julian Smart | |
b63b07a8 RL |
5 | // Modified by: Wlodzimiez ABX Skiba 2003/2004 Unicode support |
6 | // Ron Lee | |
9a29912f JS |
7 | // Created: 7.9.93 |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Julian Smart | |
10 | // Licence: wxWindows licence | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | #ifdef __GNUG__ | |
14 | #pragma implementation | |
15 | #endif | |
16 | ||
17 | // For compilers that support precompilation, includes "wx.h". | |
18 | #include "wx/wxprec.h" | |
19 | ||
20 | #ifdef __BORLANDC__ | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
24 | #ifndef WX_PRECOMP | |
ea172e69 MB |
25 | #ifndef NO_GUI |
26 | #include "wx/menu.h" | |
27 | #include "wx/textctrl.h" | |
28 | #include "wx/filedlg.h" | |
29 | #include "wx/msgdlg.h" | |
30 | #endif | |
9a29912f JS |
31 | #endif |
32 | ||
33 | #ifndef NO_GUI | |
e5486aff WS |
34 | #include "wx/timer.h" |
35 | #include "wx/help.h" | |
36 | #include "wx/cshelp.h" | |
37 | #include "wx/helphtml.h" | |
38 | #ifdef __WXMSW__ | |
39 | #include "wx/msw/helpchm.h" | |
40 | #else | |
41 | #include "wx/html/helpctrl.h" | |
42 | #endif | |
43 | #endif // !NO_GUI | |
9a29912f | 44 | |
9a29912f JS |
45 | #if wxUSE_IOSTREAMH |
46 | #include <iostream.h> | |
47 | #include <fstream.h> | |
48 | #else | |
49 | #include <iostream> | |
50 | #include <fstream> | |
51 | #endif | |
9a29912f JS |
52 | |
53 | #include <ctype.h> | |
54 | #include <stdlib.h> | |
55 | #include "tex2any.h" | |
56 | #include "tex2rtf.h" | |
57 | #include "rtfutils.h" | |
56d34922 | 58 | #include "symbols.h" |
9a29912f | 59 | |
7658b9eb | 60 | #if (defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXX11__)) && !defined(NO_GUI) |
9a29912f JS |
61 | #include "tex2rtf.xpm" |
62 | #endif | |
63 | ||
ea172e69 MB |
64 | #if !WXWIN_COMPATIBILITY_2_4 |
65 | static inline wxChar* copystring(const wxChar* s) | |
66 | { return wxStrcpy(new wxChar[wxStrlen(s) + 1], s); } | |
67 | #endif | |
68 | ||
5b7ab938 | 69 | const float versionNo = (float)TEX2RTF_VERSION_NUMBER; |
9a29912f JS |
70 | |
71 | TexChunk *currentMember = NULL; | |
b63b07a8 | 72 | bool startedSections = false; |
6c155d33 | 73 | wxChar *contentsString = NULL; |
b63b07a8 RL |
74 | bool suppressNameDecoration = false; |
75 | bool OkToClose = true; | |
9a29912f | 76 | int passNumber = 1; |
6a205442 | 77 | unsigned long errorCount = 0; |
9a29912f JS |
78 | |
79 | #ifndef NO_GUI | |
ffaaaacb | 80 | |
6c155d33 JS |
81 | extern wxChar *BigBuffer; |
82 | extern wxChar *TexFileRoot; | |
83 | extern wxChar *TexBibName; // Bibliography output file name | |
84 | extern wxChar *TexTmpBibName; // Temporary bibliography output file name | |
71599f0a GT |
85 | extern wxList ColourTable; |
86 | extern TexChunk *TopLevel; | |
3924dd22 | 87 | |
ffaaaacb | 88 | #if wxUSE_HELP |
e5486aff | 89 | wxHelpControllerBase *HelpInstance = NULL; |
ffaaaacb | 90 | #endif // wxUSE_HELP |
9a29912f JS |
91 | |
92 | #ifdef __WXMSW__ | |
6c155d33 JS |
93 | static wxChar *ipc_buffer = NULL; |
94 | static wxChar Tex2RTFLastStatus[100]; | |
9a29912f | 95 | Tex2RTFServer *TheTex2RTFServer = NULL; |
e5486aff WS |
96 | #endif // __WXMSW__ |
97 | ||
98 | #endif // !NO_GUI | |
9a29912f | 99 | |
6c155d33 | 100 | wxChar *bulletFile = NULL; |
9a29912f JS |
101 | |
102 | FILE *Contents = NULL; // Contents page | |
103 | FILE *Chapters = NULL; // Chapters (WinHelp RTF) or rest of file (linear RTF) | |
104 | FILE *Sections = NULL; | |
105 | FILE *Subsections = NULL; | |
106 | FILE *Subsubsections = NULL; | |
107 | FILE *Popups = NULL; | |
108 | FILE *WinHelpContentsFile = NULL; | |
109 | ||
6c155d33 JS |
110 | wxChar *InputFile = NULL; |
111 | wxChar *OutputFile = NULL; | |
112 | wxChar *MacroFile = copystring(_T("tex2rtf.ini")); | |
9a29912f | 113 | |
6c155d33 JS |
114 | wxChar *FileRoot = NULL; |
115 | wxChar *ContentsName = NULL; // Contents page from last time around | |
116 | wxChar *TmpContentsName = NULL; // Current contents page | |
117 | wxChar *TmpFrameContentsName = NULL; // Current frame contents page | |
118 | wxChar *WinHelpContentsFileName = NULL; // WinHelp .cnt file | |
119 | wxChar *RefFileName = NULL; // Reference file name | |
9a29912f | 120 | |
6c155d33 | 121 | wxChar *RTFCharset = copystring(_T("ansi")); |
9a29912f JS |
122 | |
123 | #ifdef __WXMSW__ | |
124 | int BufSize = 100; // Size of buffer in K | |
125 | #else | |
126 | int BufSize = 500; | |
127 | #endif | |
128 | ||
129 | bool Go(void); | |
130 | void ShowOptions(void); | |
131 | ||
6c155d33 | 132 | wxChar wxTex2RTFBuffer[1500]; |
c4c794e1 | 133 | |
aed3314d | 134 | #ifdef NO_GUI |
b63b07a8 | 135 | IMPLEMENT_APP_CONSOLE(MyApp) |
9a29912f | 136 | #else |
b63b07a8 RL |
137 | wxMenuBar *menuBar = NULL; |
138 | MyFrame *frame = NULL; | |
139 | // DECLARE_APP(MyApp) | |
140 | IMPLEMENT_APP(MyApp) | |
141 | #endif | |
9a29912f JS |
142 | |
143 | // `Main program' equivalent, creating windows and returning main app frame | |
144 | bool MyApp::OnInit() | |
9a29912f JS |
145 | { |
146 | // Use default list of macros defined in tex2any.cc | |
147 | DefineDefaultMacros(); | |
6c155d33 | 148 | AddMacroDef(ltHARDY, _T("hardy"), 0); |
9a29912f | 149 | |
6c155d33 JS |
150 | FileRoot = new wxChar[300]; |
151 | ContentsName = new wxChar[300]; | |
152 | TmpContentsName = new wxChar[300]; | |
153 | TmpFrameContentsName = new wxChar[300]; | |
154 | WinHelpContentsFileName = new wxChar[300]; | |
155 | RefFileName = new wxChar[300]; | |
9a29912f | 156 | |
22b636aa | 157 | WX_CLEAR_LIST(wxList,ColourTable); |
71599f0a | 158 | |
9a29912f | 159 | int n = 1; |
ffaaaacb | 160 | |
9a29912f JS |
161 | // Read input/output files |
162 | if (argc > 1) | |
163 | { | |
164 | if (argv[1][0] != '-') | |
165 | { | |
166 | InputFile = argv[1]; | |
167 | n ++; | |
168 | ||
169 | if (argc > 2) | |
170 | { | |
171 | if (argv[2][0] != '-') | |
172 | { | |
173 | OutputFile = argv[2]; | |
174 | n ++; | |
175 | } | |
176 | } | |
177 | } | |
178 | } | |
179 | ||
180 | #ifdef NO_GUI | |
181 | if (!InputFile || !OutputFile) | |
182 | { | |
219f4a6d | 183 | wxSTD cout << "Tex2RTF: input or output file is missing.\n"; |
9a29912f JS |
184 | ShowOptions(); |
185 | exit(1); | |
186 | } | |
187 | #endif | |
b63b07a8 | 188 | |
9a29912f JS |
189 | if (InputFile) |
190 | { | |
191 | TexPathList.EnsureFileAccessible(InputFile); | |
192 | } | |
193 | if (!InputFile || !OutputFile) | |
b63b07a8 | 194 | isInteractive = true; |
9a29912f | 195 | |
f6bcfd97 BP |
196 | int i; |
197 | for (i = n; i < argc;) | |
9a29912f | 198 | { |
6c155d33 | 199 | if (wxStrcmp(argv[i], _T("-winhelp")) == 0) |
9a29912f JS |
200 | { |
201 | i ++; | |
202 | convertMode = TEX_RTF; | |
b63b07a8 | 203 | winHelp = true; |
9a29912f JS |
204 | } |
205 | #ifndef NO_GUI | |
6c155d33 | 206 | else if (wxStrcmp(argv[i], _T("-interactive")) == 0) |
9a29912f JS |
207 | { |
208 | i ++; | |
b63b07a8 | 209 | isInteractive = true; |
9a29912f JS |
210 | } |
211 | #endif | |
6c155d33 | 212 | else if (wxStrcmp(argv[i], _T("-sync")) == 0) // Don't yield |
9a29912f JS |
213 | { |
214 | i ++; | |
b63b07a8 | 215 | isSync = true; |
9a29912f | 216 | } |
6c155d33 | 217 | else if (wxStrcmp(argv[i], _T("-rtf")) == 0) |
9a29912f JS |
218 | { |
219 | i ++; | |
220 | convertMode = TEX_RTF; | |
221 | } | |
6c155d33 | 222 | else if (wxStrcmp(argv[i], _T("-html")) == 0) |
9a29912f JS |
223 | { |
224 | i ++; | |
225 | convertMode = TEX_HTML; | |
226 | } | |
6c155d33 | 227 | else if (wxStrcmp(argv[i], _T("-xlp")) == 0) |
9a29912f JS |
228 | { |
229 | i ++; | |
230 | convertMode = TEX_XLP; | |
231 | } | |
6c155d33 | 232 | else if (wxStrcmp(argv[i], _T("-twice")) == 0) |
9a29912f JS |
233 | { |
234 | i ++; | |
b63b07a8 | 235 | runTwice = true; |
9a29912f | 236 | } |
6c155d33 | 237 | else if (wxStrcmp(argv[i], _T("-macros")) == 0) |
9a29912f JS |
238 | { |
239 | i ++; | |
240 | if (i < argc) | |
241 | { | |
242 | MacroFile = copystring(argv[i]); | |
243 | i ++; | |
244 | } | |
245 | } | |
6c155d33 | 246 | else if (wxStrcmp(argv[i], _T("-bufsize")) == 0) |
9a29912f JS |
247 | { |
248 | i ++; | |
249 | if (i < argc) | |
250 | { | |
6c155d33 | 251 | BufSize = wxAtoi(argv[i]); |
9a29912f JS |
252 | i ++; |
253 | } | |
254 | } | |
6c155d33 | 255 | else if (wxStrcmp(argv[i], _T("-charset")) == 0) |
9a29912f JS |
256 | { |
257 | i ++; | |
258 | if (i < argc) | |
259 | { | |
6c155d33 | 260 | wxChar *s = argv[i]; |
9a29912f | 261 | i ++; |
6c155d33 JS |
262 | if (wxStrcmp(s, _T("ansi")) == 0 || wxStrcmp(s, _T("pc")) == 0 || wxStrcmp(s, _T("mac")) == 0 || |
263 | wxStrcmp(s, _T("pca")) == 0) | |
9a29912f JS |
264 | RTFCharset = copystring(s); |
265 | else | |
266 | { | |
6c155d33 | 267 | OnError(_T("Incorrect argument for -charset")); |
b63b07a8 | 268 | return false; |
9a29912f JS |
269 | } |
270 | } | |
271 | } | |
6c155d33 | 272 | else if (wxStrcmp(argv[i], _T("-checkcurleybraces")) == 0) |
fad535ee GT |
273 | { |
274 | i ++; | |
b63b07a8 | 275 | checkCurleyBraces = true; |
fad535ee | 276 | } |
6c155d33 | 277 | else if (wxStrcmp(argv[i], _T("-checksyntax")) == 0) |
fad535ee GT |
278 | { |
279 | i ++; | |
b63b07a8 | 280 | checkSyntax = true; |
fad535ee | 281 | } |
9a29912f JS |
282 | else |
283 | { | |
63ad540d | 284 | wxString buf; |
6c155d33 JS |
285 | buf.Printf(_T("Invalid switch %s.\n"), argv[i]); |
286 | OnError((wxChar *)buf.c_str()); | |
9a29912f JS |
287 | #ifdef NO_GUI |
288 | ShowOptions(); | |
289 | exit(1); | |
5b7ab938 | 290 | #else |
b63b07a8 | 291 | return false; |
5b7ab938 | 292 | #endif |
9a29912f JS |
293 | } |
294 | } | |
295 | ||
296 | #if defined(__WXMSW__) && !defined(NO_GUI) | |
297 | wxDDEInitialize(); | |
298 | Tex2RTFLastStatus[0] = 0; // DDE connection return value | |
299 | TheTex2RTFServer = new Tex2RTFServer; | |
6c155d33 | 300 | TheTex2RTFServer->Create(_T("TEX2RTF")); |
9a29912f JS |
301 | #endif |
302 | ||
9a29912f JS |
303 | TexInitialize(BufSize); |
304 | ResetContentsLevels(0); | |
305 | ||
306 | #ifndef NO_GUI | |
307 | ||
308 | if (isInteractive) | |
309 | { | |
6c155d33 | 310 | wxChar buf[100]; |
9a29912f JS |
311 | |
312 | // Create the main frame window | |
b63b07a8 | 313 | frame = new MyFrame(NULL, wxID_ANY, _T("Tex2RTF"), wxDefaultPosition, wxSize(400, 300)); |
67a99992 | 314 | #if wxUSE_STATUSBAR |
9a29912f | 315 | frame->CreateStatusBar(2); |
67a99992 | 316 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
317 | |
318 | // Give it an icon | |
319 | // TODO: uncomment this when we have tex2rtf.xpm | |
320 | frame->SetIcon(wxICON(tex2rtf)); | |
321 | ||
322 | if (InputFile) | |
323 | { | |
b63b07a8 | 324 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF [%s]"), wxFileNameFromPath(InputFile)); |
9a29912f JS |
325 | frame->SetTitle(buf); |
326 | } | |
327 | ||
328 | // Make a menubar | |
329 | wxMenu *file_menu = new wxMenu; | |
6c155d33 JS |
330 | file_menu->Append(TEX_GO, _T("&Go"), _T("Run converter")); |
331 | file_menu->Append(TEX_SET_INPUT, _T("Set &Input File"), _T("Set the LaTeX input file")); | |
332 | file_menu->Append(TEX_SET_OUTPUT, _T("Set &Output File"), _T("Set the output file")); | |
9a29912f | 333 | file_menu->AppendSeparator(); |
6c155d33 JS |
334 | file_menu->Append(TEX_VIEW_LATEX, _T("View &LaTeX File"), _T("View the LaTeX input file")); |
335 | file_menu->Append(TEX_VIEW_OUTPUT, _T("View Output &File"), _T("View output file")); | |
336 | file_menu->Append(TEX_SAVE_FILE, _T("&Save log file"), _T("Save displayed text into file")); | |
9a29912f | 337 | file_menu->AppendSeparator(); |
6c155d33 | 338 | file_menu->Append(TEX_QUIT, _T("E&xit"), _T("Exit Tex2RTF")); |
9a29912f JS |
339 | |
340 | wxMenu *macro_menu = new wxMenu; | |
341 | ||
6c155d33 JS |
342 | macro_menu->Append(TEX_LOAD_CUSTOM_MACROS, _T("&Load Custom Macros"), _T("Load custom LaTeX macro file")); |
343 | macro_menu->Append(TEX_VIEW_CUSTOM_MACROS, _T("View &Custom Macros"), _T("View custom LaTeX macros")); | |
9a29912f JS |
344 | |
345 | wxMenu *mode_menu = new wxMenu; | |
346 | ||
6c155d33 JS |
347 | mode_menu->Append(TEX_MODE_RTF, _T("Output linear &RTF"), _T("Wordprocessor-compatible RTF")); |
348 | mode_menu->Append(TEX_MODE_WINHELP, _T("Output &WinHelp RTF"), _T("WinHelp-compatible RTF")); | |
349 | mode_menu->Append(TEX_MODE_HTML, _T("Output &HTML"), _T("HTML World Wide Web hypertext file")); | |
350 | mode_menu->Append(TEX_MODE_XLP, _T("Output &XLP"), _T("wxHelp hypertext help file")); | |
9a29912f | 351 | |
fad535ee GT |
352 | wxMenu *options_menu = new wxMenu; |
353 | ||
c22b322f | 354 | options_menu->Append(TEX_OPTIONS_CURLEY_BRACE, _T("Curley brace matching"), _T("Checks for mismatched curley braces"),true); |
b63b07a8 | 355 | options_menu->Append(TEX_OPTIONS_SYNTAX_CHECKING, _T("Syntax checking"), _T("Syntax checking for common errors"),true); |
fad535ee | 356 | |
c22b322f | 357 | options_menu->Check(TEX_OPTIONS_CURLEY_BRACE, checkCurleyBraces); |
fad535ee GT |
358 | options_menu->Check(TEX_OPTIONS_SYNTAX_CHECKING, checkSyntax); |
359 | ||
9a29912f JS |
360 | wxMenu *help_menu = new wxMenu; |
361 | ||
6c155d33 JS |
362 | help_menu->Append(TEX_HELP, _T("&Help"), _T("Tex2RTF Contents Page")); |
363 | help_menu->Append(TEX_ABOUT, _T("&About Tex2RTF"), _T("About Tex2RTF")); | |
9a29912f JS |
364 | |
365 | menuBar = new wxMenuBar; | |
6c155d33 JS |
366 | menuBar->Append(file_menu, _T("&File")); |
367 | menuBar->Append(macro_menu, _T("&Macros")); | |
368 | menuBar->Append(mode_menu, _T("&Conversion Mode")); | |
369 | menuBar->Append(options_menu, _T("&Options")); | |
370 | menuBar->Append(help_menu, _T("&Help")); | |
9a29912f JS |
371 | |
372 | frame->SetMenuBar(menuBar); | |
b63b07a8 | 373 | frame->textWindow = new wxTextCtrl(frame, wxID_ANY, _T(""), wxDefaultPosition, wxDefaultSize, wxTE_READONLY|wxTE_MULTILINE); |
9a29912f | 374 | |
6c155d33 | 375 | (*frame->textWindow) << _T("Welcome to Tex2RTF.\n"); |
ffaaaacb | 376 | // ShowOptions(); |
9a29912f | 377 | |
ffaaaacb | 378 | #if wxUSE_HELP |
e5486aff WS |
379 | #if wxUSE_MS_HTML_HELP && !defined(__WXUNIVERSAL__) |
380 | HelpInstance = new wxCHMHelpController; | |
381 | #else | |
382 | HelpInstance = new wxHtmlHelpController; | |
383 | #endif | |
6c155d33 | 384 | HelpInstance->Initialize(_T("tex2rtf")); |
ffaaaacb | 385 | #endif // wxUSE_HELP |
9a29912f JS |
386 | |
387 | /* | |
388 | * Read macro/initialisation file | |
389 | * | |
390 | */ | |
ffaaaacb | 391 | |
6c155d33 JS |
392 | wxString path = TexPathList.FindValidPath(MacroFile); |
393 | if (path != _T("")) | |
394 | ReadCustomMacros((wxChar *)path.c_str()); | |
9a29912f | 395 | |
67a99992 | 396 | #if wxUSE_STATUSBAR |
6c155d33 | 397 | wxStrcpy(buf, _T("In ")); |
67a99992 WS |
398 | switch (convertMode) |
399 | { | |
400 | case TEX_RTF: | |
f8bd8dd5 | 401 | wxStrcat(buf, (winHelp) ? _T("WinHelp RTF") : _T("linear RTF")); |
67a99992 WS |
402 | break; |
403 | case TEX_HTML: | |
404 | wxStrcat(buf, _T("HTML")); | |
405 | break; | |
406 | case TEX_XLP: | |
407 | wxStrcat(buf, _T("XLP")); | |
408 | break; | |
409 | default: | |
410 | wxStrcat(buf, _T("unknown")); | |
411 | break; | |
412 | } | |
413 | wxStrcat(buf, _T(" mode.")); | |
9a29912f | 414 | frame->SetStatusText(buf, 1); |
67a99992 | 415 | #endif // wxUSE_STATUSBAR |
ffaaaacb | 416 | |
b63b07a8 RL |
417 | frame->Show(true); |
418 | return true; | |
9a29912f JS |
419 | } |
420 | else | |
421 | #endif // NO_GUI | |
422 | { | |
423 | /* | |
424 | * Read macro/initialisation file | |
425 | * | |
426 | */ | |
ffaaaacb | 427 | |
6c155d33 JS |
428 | wxString path = TexPathList.FindValidPath(MacroFile); |
429 | if (path != _T("")) | |
430 | ReadCustomMacros((wxChar*)path.c_str()); | |
9a29912f JS |
431 | |
432 | Go(); | |
254a2129 | 433 | if (runTwice) |
3924dd22 GT |
434 | { |
435 | Go(); | |
436 | } | |
9a29912f | 437 | #ifdef NO_GUI |
b63b07a8 | 438 | return true; |
9a29912f | 439 | #else |
00827094 | 440 | OnExit(); // Do cleanup since OnExit won't be called now |
b63b07a8 | 441 | return false; |
9a29912f JS |
442 | #endif |
443 | } | |
9a29912f JS |
444 | } |
445 | ||
c4c794e1 | 446 | #ifndef NO_GUI |
9a29912f JS |
447 | int MyApp::OnExit() |
448 | { | |
ddc4f3b5 | 449 | wxNode *node = CustomMacroList.GetFirst(); |
9a29912f JS |
450 | while (node) |
451 | { | |
ddc4f3b5 | 452 | CustomMacro *macro = (CustomMacro *)node->GetData(); |
9a29912f JS |
453 | delete macro; |
454 | delete node; | |
ddc4f3b5 | 455 | node = CustomMacroList.GetFirst(); |
9a29912f JS |
456 | } |
457 | MacroDefs.BeginFind(); | |
f6fe5318 MB |
458 | wxHashTable::Node* mNode = MacroDefs.Next(); |
459 | while (mNode) | |
9a29912f | 460 | { |
f6fe5318 | 461 | TexMacroDef* def = (TexMacroDef*) mNode->GetData(); |
9a29912f | 462 | delete def; |
f6fe5318 | 463 | mNode = MacroDefs.Next(); |
9a29912f JS |
464 | } |
465 | MacroDefs.Clear(); | |
466 | #ifdef __WXMSW__ | |
467 | delete TheTex2RTFServer; | |
23016fdd | 468 | wxDDECleanUp(); |
9a29912f | 469 | #endif |
ffaaaacb VZ |
470 | |
471 | #if wxUSE_HELP | |
9a29912f | 472 | delete HelpInstance; |
ffaaaacb | 473 | #endif // wxUSE_HELP |
9a29912f | 474 | |
71599f0a GT |
475 | if (BigBuffer) |
476 | { | |
477 | delete BigBuffer; | |
478 | BigBuffer = NULL; | |
479 | } | |
480 | if (currentArgData) | |
481 | { | |
482 | delete currentArgData; | |
483 | currentArgData = NULL; | |
484 | } | |
485 | if (TexFileRoot) | |
486 | { | |
487 | delete TexFileRoot; | |
488 | TexFileRoot = NULL; | |
489 | } | |
490 | if (TexBibName) | |
491 | { | |
492 | delete TexBibName; | |
493 | TexBibName = NULL; | |
494 | } | |
495 | if (TexTmpBibName) | |
496 | { | |
497 | delete TexTmpBibName; | |
498 | TexTmpBibName = NULL; | |
499 | } | |
500 | if (FileRoot) | |
501 | { | |
502 | delete FileRoot; | |
503 | FileRoot = NULL; | |
504 | } | |
505 | if (ContentsName) | |
506 | { | |
507 | delete ContentsName; | |
508 | ContentsName = NULL; | |
509 | } | |
510 | if (TmpContentsName) | |
511 | { | |
512 | delete TmpContentsName; | |
513 | TmpContentsName = NULL; | |
514 | } | |
515 | if (TmpFrameContentsName) | |
516 | { | |
517 | delete TmpFrameContentsName; | |
518 | TmpFrameContentsName = NULL; | |
519 | } | |
520 | if (WinHelpContentsFileName) | |
521 | { | |
522 | delete WinHelpContentsFileName; | |
523 | WinHelpContentsFileName = NULL; | |
524 | } | |
ad781c23 | 525 | if (RefFileName) |
71599f0a | 526 | { |
ad781c23 GD |
527 | delete RefFileName; |
528 | RefFileName = NULL; | |
71599f0a GT |
529 | } |
530 | if (TopLevel) | |
531 | { | |
532 | delete TopLevel; | |
533 | TopLevel = NULL; | |
534 | } | |
535 | if (MacroFile) | |
536 | { | |
537 | delete MacroFile; | |
538 | MacroFile = NULL; | |
539 | } | |
540 | if (RTFCharset) | |
541 | { | |
542 | delete RTFCharset; | |
543 | RTFCharset = NULL; | |
544 | } | |
545 | ||
3924dd22 GT |
546 | delete [] PageStyle; |
547 | delete [] BibliographyStyleString; | |
548 | delete [] DocumentStyleString; | |
549 | delete [] bitmapMethod; | |
550 | delete [] backgroundColourString; | |
551 | delete [] ContentsNameString; | |
552 | delete [] AbstractNameString; | |
553 | delete [] GlossaryNameString; | |
554 | delete [] ReferencesNameString; | |
555 | delete [] FiguresNameString; | |
556 | delete [] TablesNameString; | |
557 | delete [] FigureNameString; | |
558 | delete [] TableNameString; | |
559 | delete [] IndexNameString; | |
560 | delete [] ChapterNameString; | |
561 | delete [] SectionNameString; | |
562 | delete [] SubsectionNameString; | |
563 | delete [] SubsubsectionNameString; | |
564 | delete [] UpNameString; | |
565 | if (winHelpTitle) | |
566 | delete[] winHelpTitle; | |
567 | ||
9a29912f JS |
568 | // TODO: this simulates zero-memory leaks! |
569 | // Otherwise there are just too many... | |
12a44087 | 570 | #ifndef __WXGTK__ |
fad535ee | 571 | #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT |
9a29912f | 572 | wxDebugContext::SetCheckpoint(); |
fad535ee | 573 | #endif |
12a44087 | 574 | #endif |
9a29912f JS |
575 | |
576 | return 0; | |
577 | } | |
c4c794e1 | 578 | #endif |
9a29912f JS |
579 | void ShowOptions(void) |
580 | { | |
6c155d33 | 581 | wxChar buf[100]; |
b63b07a8 | 582 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF version %.2f"), versionNo); |
9a29912f | 583 | OnInform(buf); |
6c155d33 JS |
584 | OnInform(_T("Usage: tex2rtf [input] [output] [switches]\n")); |
585 | OnInform(_T("where valid switches are")); | |
610c6ded | 586 | #ifndef NO_GUI |
6c155d33 | 587 | OnInform(_T(" -interactive")); |
610c6ded | 588 | #endif |
6c155d33 JS |
589 | OnInform(_T(" -bufsize <size in K>")); |
590 | OnInform(_T(" -charset <pc | pca | ansi | mac> (default ansi)")); | |
591 | OnInform(_T(" -twice")); | |
592 | OnInform(_T(" -sync")); | |
593 | OnInform(_T(" -checkcurleybraces")); | |
594 | OnInform(_T(" -checksyntax")); | |
595 | OnInform(_T(" -macros <filename>")); | |
596 | OnInform(_T(" -winhelp")); | |
597 | OnInform(_T(" -rtf")); | |
598 | OnInform(_T(" -html")); | |
599 | OnInform(_T(" -xlp\n")); | |
9a29912f JS |
600 | } |
601 | ||
602 | #ifndef NO_GUI | |
603 | ||
604 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
605 | EVT_CLOSE(MyFrame::OnCloseWindow) | |
606 | EVT_MENU(TEX_QUIT, MyFrame::OnExit) | |
607 | EVT_MENU(TEX_GO, MyFrame::OnGo) | |
608 | EVT_MENU(TEX_SET_INPUT, MyFrame::OnSetInput) | |
609 | EVT_MENU(TEX_SET_OUTPUT, MyFrame::OnSetOutput) | |
610 | EVT_MENU(TEX_SAVE_FILE, MyFrame::OnSaveFile) | |
611 | EVT_MENU(TEX_VIEW_LATEX, MyFrame::OnViewLatex) | |
612 | EVT_MENU(TEX_VIEW_OUTPUT, MyFrame::OnViewOutput) | |
613 | EVT_MENU(TEX_VIEW_CUSTOM_MACROS, MyFrame::OnShowMacros) | |
614 | EVT_MENU(TEX_LOAD_CUSTOM_MACROS, MyFrame::OnLoadMacros) | |
615 | EVT_MENU(TEX_MODE_RTF, MyFrame::OnModeRTF) | |
616 | EVT_MENU(TEX_MODE_WINHELP, MyFrame::OnModeWinHelp) | |
617 | EVT_MENU(TEX_MODE_HTML, MyFrame::OnModeHTML) | |
618 | EVT_MENU(TEX_MODE_XLP, MyFrame::OnModeXLP) | |
c22b322f | 619 | EVT_MENU(TEX_OPTIONS_CURLEY_BRACE, MyFrame::OnOptionsCurleyBrace) |
fad535ee | 620 | EVT_MENU(TEX_OPTIONS_SYNTAX_CHECKING, MyFrame::OnOptionsSyntaxChecking) |
9a29912f JS |
621 | EVT_MENU(TEX_HELP, MyFrame::OnHelp) |
622 | EVT_MENU(TEX_ABOUT, MyFrame::OnAbout) | |
623 | END_EVENT_TABLE() | |
624 | ||
625 | // My frame constructor | |
626 | MyFrame::MyFrame(wxFrame *frame, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size): | |
627 | wxFrame(frame, id, title, pos, size) | |
628 | {} | |
629 | ||
6c155d33 | 630 | void MyFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) |
9a29912f JS |
631 | { |
632 | if (!stopRunning && !OkToClose) | |
633 | { | |
b63b07a8 RL |
634 | stopRunning = true; |
635 | runTwice = false; | |
9a29912f JS |
636 | return; |
637 | } | |
638 | else if (OkToClose) | |
639 | { | |
9a29912f JS |
640 | this->Destroy(); |
641 | } | |
642 | } | |
643 | ||
6c155d33 | 644 | void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 645 | { |
71599f0a GT |
646 | Close(); |
647 | // this->Destroy(); | |
9a29912f JS |
648 | } |
649 | ||
6c155d33 | 650 | void MyFrame::OnGo(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 651 | { |
f6bcfd97 | 652 | passNumber = 1; |
63ad540d | 653 | errorCount = 0; |
b63b07a8 RL |
654 | menuBar->EnableTop(0, false); |
655 | menuBar->EnableTop(1, false); | |
656 | menuBar->EnableTop(2, false); | |
657 | menuBar->EnableTop(3, false); | |
9a29912f | 658 | textWindow->Clear(); |
b63b07a8 | 659 | Tex2RTFYield(true); |
9a29912f JS |
660 | Go(); |
661 | ||
04b9c5bb GT |
662 | if (stopRunning) |
663 | { | |
67a99992 | 664 | #if wxUSE_STATUSBAR |
6c155d33 | 665 | SetStatusText(_T("Build aborted!")); |
67a99992 | 666 | #endif // wxUSE_STATUSBAR |
04b9c5bb | 667 | wxString errBuf; |
6c155d33 JS |
668 | errBuf.Printf(_T("\nErrors encountered during this pass: %lu\n"), errorCount); |
669 | OnInform((wxChar *)errBuf.c_str()); | |
04b9c5bb GT |
670 | } |
671 | ||
672 | ||
673 | if (runTwice && !stopRunning) | |
9a29912f | 674 | { |
b63b07a8 | 675 | Tex2RTFYield(true); |
9a29912f JS |
676 | Go(); |
677 | } | |
b63b07a8 RL |
678 | menuBar->EnableTop(0, true); |
679 | menuBar->EnableTop(1, true); | |
680 | menuBar->EnableTop(2, true); | |
681 | menuBar->EnableTop(3, true); | |
9a29912f JS |
682 | } |
683 | ||
6c155d33 | 684 | void MyFrame::OnSetInput(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 685 | { |
b63b07a8 | 686 | ChooseInputFile(true); |
9a29912f JS |
687 | } |
688 | ||
6c155d33 | 689 | void MyFrame::OnSetOutput(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 690 | { |
b63b07a8 | 691 | ChooseOutputFile(true); |
9a29912f JS |
692 | } |
693 | ||
6c155d33 | 694 | void MyFrame::OnSaveFile(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 695 | { |
6c155d33 JS |
696 | wxString s = wxFileSelector(_T("Save text to file"), _T(""), _T(""), _T("txt"), _T("*.txt")); |
697 | if (s != _T("")) | |
9a29912f JS |
698 | { |
699 | textWindow->SaveFile(s); | |
67a99992 | 700 | #if wxUSE_STATUSBAR |
6c155d33 | 701 | wxChar buf[350]; |
b63b07a8 | 702 | wxSnprintf(buf, sizeof(buf), _T("Saved text to %s"), (const wxChar*) s.c_str()); |
9a29912f | 703 | frame->SetStatusText(buf, 0); |
67a99992 | 704 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
705 | } |
706 | } | |
707 | ||
6c155d33 | 708 | void MyFrame::OnViewOutput(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
709 | { |
710 | ChooseOutputFile(); | |
711 | if (OutputFile && wxFileExists(OutputFile)) | |
712 | { | |
713 | textWindow->LoadFile(OutputFile); | |
6c155d33 | 714 | wxChar buf[300]; |
9a29912f | 715 | wxString str(wxFileNameFromPath(OutputFile)); |
b63b07a8 | 716 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF [%s]"), (const wxChar*) str.c_str()); |
9a29912f JS |
717 | frame->SetTitle(buf); |
718 | } | |
719 | } | |
720 | ||
6c155d33 | 721 | void MyFrame::OnViewLatex(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
722 | { |
723 | ChooseInputFile(); | |
724 | if (InputFile && wxFileExists(InputFile)) | |
725 | { | |
726 | textWindow->LoadFile(InputFile); | |
6c155d33 | 727 | wxChar buf[300]; |
9a29912f | 728 | wxString str(wxFileNameFromPath(OutputFile)); |
b63b07a8 | 729 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF [%s]"), (const wxChar*) str.c_str()); |
9a29912f JS |
730 | frame->SetTitle(buf); |
731 | } | |
732 | } | |
733 | ||
6c155d33 | 734 | void MyFrame::OnLoadMacros(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
735 | { |
736 | textWindow->Clear(); | |
6c155d33 JS |
737 | wxString s = wxFileSelector(_T("Choose custom macro file"), wxPathOnly(MacroFile), wxFileNameFromPath(MacroFile), _T("ini"), _T("*.ini")); |
738 | if (s != _T("") && wxFileExists(s)) | |
9a29912f JS |
739 | { |
740 | MacroFile = copystring(s); | |
6c155d33 | 741 | ReadCustomMacros((wxChar *)s.c_str()); |
9a29912f JS |
742 | ShowCustomMacros(); |
743 | } | |
744 | } | |
745 | ||
6c155d33 | 746 | void MyFrame::OnShowMacros(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
747 | { |
748 | textWindow->Clear(); | |
b63b07a8 | 749 | Tex2RTFYield(true); |
9a29912f JS |
750 | ShowCustomMacros(); |
751 | } | |
752 | ||
6c155d33 | 753 | void MyFrame::OnModeRTF(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
754 | { |
755 | convertMode = TEX_RTF; | |
b63b07a8 | 756 | winHelp = false; |
9a29912f JS |
757 | InputFile = NULL; |
758 | OutputFile = NULL; | |
67a99992 | 759 | #if wxUSE_STATUSBAR |
6c155d33 | 760 | SetStatusText(_T("In linear RTF mode."), 1); |
67a99992 | 761 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
762 | } |
763 | ||
6c155d33 | 764 | void MyFrame::OnModeWinHelp(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
765 | { |
766 | convertMode = TEX_RTF; | |
b63b07a8 | 767 | winHelp = true; |
9a29912f JS |
768 | InputFile = NULL; |
769 | OutputFile = NULL; | |
67a99992 | 770 | #if wxUSE_STATUSBAR |
6c155d33 | 771 | SetStatusText(_T("In WinHelp RTF mode."), 1); |
67a99992 | 772 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
773 | } |
774 | ||
6c155d33 | 775 | void MyFrame::OnModeHTML(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
776 | { |
777 | convertMode = TEX_HTML; | |
b63b07a8 | 778 | winHelp = false; |
9a29912f JS |
779 | InputFile = NULL; |
780 | OutputFile = NULL; | |
67a99992 | 781 | #if wxUSE_STATUSBAR |
6c155d33 | 782 | SetStatusText(_T("In HTML mode."), 1); |
67a99992 | 783 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
784 | } |
785 | ||
6c155d33 | 786 | void MyFrame::OnModeXLP(wxCommandEvent& WXUNUSED(event)) |
9a29912f JS |
787 | { |
788 | convertMode = TEX_XLP; | |
789 | InputFile = NULL; | |
790 | OutputFile = NULL; | |
67a99992 | 791 | #if wxUSE_STATUSBAR |
6c155d33 | 792 | SetStatusText(_T("In XLP mode."), 1); |
67a99992 | 793 | #endif // wxUSE_STATUSBAR |
9a29912f JS |
794 | } |
795 | ||
6c155d33 | 796 | void MyFrame::OnOptionsCurleyBrace(wxCommandEvent& WXUNUSED(event)) |
fad535ee GT |
797 | { |
798 | checkCurleyBraces = !checkCurleyBraces; | |
67a99992 | 799 | #if wxUSE_STATUSBAR |
fad535ee GT |
800 | if (checkCurleyBraces) |
801 | { | |
6c155d33 | 802 | SetStatusText(_T("Checking curley braces: YES"), 1); |
fad535ee GT |
803 | } |
804 | else | |
805 | { | |
6c155d33 | 806 | SetStatusText(_T("Checking curley braces: NO"), 1); |
fad535ee | 807 | } |
67a99992 | 808 | #endif // wxUSE_STATUSBAR |
fad535ee GT |
809 | } |
810 | ||
811 | ||
6c155d33 | 812 | void MyFrame::OnOptionsSyntaxChecking(wxCommandEvent& WXUNUSED(event)) |
fad535ee GT |
813 | { |
814 | checkSyntax = !checkSyntax; | |
67a99992 | 815 | #if wxUSE_STATUSBAR |
fad535ee GT |
816 | if (checkSyntax) |
817 | { | |
6c155d33 | 818 | SetStatusText(_T("Checking syntax: YES"), 1); |
fad535ee GT |
819 | } |
820 | else | |
821 | { | |
6c155d33 | 822 | SetStatusText(_T("Checking syntax: NO"), 1); |
fad535ee | 823 | } |
67a99992 | 824 | #endif // wxUSE_STATUSBAR |
fad535ee GT |
825 | } |
826 | ||
827 | ||
6c155d33 | 828 | void MyFrame::OnHelp(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 829 | { |
ffaaaacb | 830 | #if wxUSE_HELP |
9a29912f JS |
831 | HelpInstance->LoadFile(); |
832 | HelpInstance->DisplayContents(); | |
ffaaaacb | 833 | #endif // wxUSE_HELP |
9a29912f JS |
834 | } |
835 | ||
6c155d33 | 836 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
9a29912f | 837 | { |
6c155d33 | 838 | wxChar buf[300]; |
9a29912f | 839 | #ifdef __WIN32__ |
6c155d33 | 840 | wxChar *platform = _T(" (32-bit)"); |
9a29912f JS |
841 | #else |
842 | #ifdef __WXMSW__ | |
6c155d33 | 843 | wxChar *platform = _T(" (16-bit)"); |
9a29912f | 844 | #else |
6c155d33 | 845 | wxChar *platform = _T(""); |
9a29912f JS |
846 | #endif |
847 | #endif | |
b63b07a8 | 848 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, and HTML Conversion\n\n(c) Julian Smart, George Tasker and others, 1999-2002"), versionNo, platform); |
6c155d33 | 849 | wxMessageBox(buf, _T("About Tex2RTF")); |
9a29912f JS |
850 | } |
851 | ||
852 | void ChooseInputFile(bool force) | |
853 | { | |
854 | if (force || !InputFile) | |
855 | { | |
6c155d33 JS |
856 | wxString s = wxFileSelector(_T("Choose LaTeX input file"), wxPathOnly(InputFile), wxFileNameFromPath(InputFile), _T("tex"), _T("*.tex")); |
857 | if (s != _T("")) | |
9a29912f JS |
858 | { |
859 | // Different file, so clear index entries. | |
860 | ClearKeyWordTable(); | |
861 | ResetContentsLevels(0); | |
862 | passNumber = 1; | |
63ad540d GT |
863 | errorCount = 0; |
864 | ||
9a29912f JS |
865 | InputFile = copystring(s); |
866 | wxString str = wxFileNameFromPath(InputFile); | |
63ad540d | 867 | wxString buf; |
6c155d33 JS |
868 | buf.Printf(_T("Tex2RTF [%s]"), str.c_str()); |
869 | frame->SetTitle((wxChar *)buf.c_str()); | |
9a29912f JS |
870 | OutputFile = NULL; |
871 | } | |
872 | } | |
873 | } | |
874 | ||
875 | void ChooseOutputFile(bool force) | |
876 | { | |
6c155d33 JS |
877 | wxChar extensionBuf[10]; |
878 | wxChar wildBuf[10]; | |
879 | wxStrcpy(wildBuf, _T("*.")); | |
aed0ed3c | 880 | wxString path; |
9a29912f JS |
881 | if (OutputFile) |
882 | path = wxPathOnly(OutputFile); | |
883 | else if (InputFile) | |
884 | path = wxPathOnly(InputFile); | |
ffaaaacb | 885 | |
9a29912f JS |
886 | switch (convertMode) |
887 | { | |
888 | case TEX_RTF: | |
889 | { | |
6c155d33 JS |
890 | wxStrcpy(extensionBuf, _T("rtf")); |
891 | wxStrcat(wildBuf, _T("rtf")); | |
9a29912f JS |
892 | break; |
893 | } | |
894 | case TEX_XLP: | |
895 | { | |
6c155d33 JS |
896 | wxStrcpy(extensionBuf, _T("xlp")); |
897 | wxStrcat(wildBuf, _T("xlp")); | |
9a29912f JS |
898 | break; |
899 | } | |
900 | case TEX_HTML: | |
901 | { | |
6c155d33 JS |
902 | wxStrcpy(extensionBuf, _T("html")); |
903 | wxStrcat(wildBuf, _T("html")); | |
9a29912f JS |
904 | break; |
905 | } | |
906 | } | |
907 | if (force || !OutputFile) | |
908 | { | |
6c155d33 | 909 | wxString s = wxFileSelector(_T("Choose output file"), path, wxFileNameFromPath(OutputFile), |
9a29912f | 910 | extensionBuf, wildBuf); |
6c155d33 | 911 | if (s != _T("")) |
9a29912f JS |
912 | OutputFile = copystring(s); |
913 | } | |
914 | } | |
915 | #endif | |
916 | ||
917 | bool Go(void) | |
918 | { | |
919 | #ifndef NO_GUI | |
920 | ChooseInputFile(); | |
921 | ChooseOutputFile(); | |
922 | #endif | |
923 | ||
04b9c5bb | 924 | if (!InputFile || !OutputFile || stopRunning) |
b63b07a8 | 925 | return false; |
9a29912f JS |
926 | |
927 | #ifndef NO_GUI | |
928 | if (isInteractive) | |
929 | { | |
6c155d33 | 930 | wxChar buf[300]; |
9a29912f JS |
931 | wxString str = wxFileNameFromPath(InputFile); |
932 | ||
b63b07a8 | 933 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF [%s]"), (const wxChar*) str); |
9a29912f JS |
934 | frame->SetTitle(buf); |
935 | } | |
936 | ||
937 | wxStartTimer(); | |
938 | #endif | |
939 | ||
940 | // Find extension-less filename | |
6c155d33 | 941 | wxStrcpy(FileRoot, OutputFile); |
9a29912f JS |
942 | StripExtension(FileRoot); |
943 | ||
944 | if (truncateFilenames && convertMode == TEX_HTML) | |
945 | { | |
946 | // Truncate to five characters. This ensures that | |
947 | // we can generate DOS filenames such as thing999. But 1000 files | |
948 | // may not be enough, of course... | |
6c155d33 | 949 | wxChar* sName = wxFileNameFromPath( FileRoot); // this Julian's method is non-destructive reference |
9a29912f JS |
950 | |
951 | if(sName) | |
6c155d33 | 952 | if(wxStrlen( sName) > 5) |
9a29912f JS |
953 | sName[5] = '\0'; // that should do! |
954 | } | |
ffaaaacb | 955 | |
b63b07a8 RL |
956 | wxSnprintf(ContentsName, 300, _T("%s.con"), FileRoot); |
957 | wxSnprintf(TmpContentsName, 300, _T("%s.cn1"), FileRoot); | |
958 | wxSnprintf(TmpFrameContentsName, 300, _T("%s.frc"), FileRoot); | |
959 | wxSnprintf(WinHelpContentsFileName, 300, _T("%s.cnt"), FileRoot); | |
960 | wxSnprintf(RefFileName, 300, _T("%s.ref"), FileRoot); | |
9a29912f JS |
961 | |
962 | TexPathList.EnsureFileAccessible(InputFile); | |
963 | if (!bulletFile) | |
964 | { | |
6c155d33 JS |
965 | wxString s = TexPathList.FindValidPath(_T("bullet.bmp")); |
966 | if (s != _T("")) | |
9a29912f JS |
967 | { |
968 | wxString str = wxFileNameFromPath(s); | |
969 | bulletFile = copystring(str); | |
970 | } | |
971 | } | |
972 | ||
ad781c23 GD |
973 | if (wxFileExists(RefFileName)) |
974 | ReadTexReferences(RefFileName); | |
ffaaaacb | 975 | |
b63b07a8 | 976 | bool success = false; |
9a29912f JS |
977 | |
978 | if (InputFile && OutputFile) | |
979 | { | |
2b5f62a0 | 980 | if (!wxFileExists(InputFile)) |
9a29912f | 981 | { |
6c155d33 | 982 | OnError(_T("Cannot open input file!")); |
9a29912f | 983 | TexCleanUp(); |
b63b07a8 | 984 | return false; |
9a29912f | 985 | } |
67a99992 | 986 | #if !defined(NO_GUI) && wxUSE_STATUSBAR |
9a29912f JS |
987 | if (isInteractive) |
988 | { | |
63ad540d | 989 | wxString buf; |
6c155d33 JS |
990 | buf.Printf(_T("Working, pass %d...Click CLOSE to abort"), passNumber); |
991 | frame->SetStatusText((wxChar *)buf.c_str()); | |
9a29912f JS |
992 | } |
993 | #endif | |
b63b07a8 | 994 | OkToClose = false; |
6c155d33 | 995 | OnInform(_T("Reading LaTeX file...")); |
9a29912f JS |
996 | TexLoadFile(InputFile); |
997 | ||
04b9c5bb | 998 | if (stopRunning) |
e4941e3d | 999 | { |
b63b07a8 RL |
1000 | OkToClose = true; |
1001 | return false; | |
e4941e3d | 1002 | } |
04b9c5bb | 1003 | |
9a29912f JS |
1004 | switch (convertMode) |
1005 | { | |
1006 | case TEX_RTF: | |
1007 | { | |
1008 | success = RTFGo(); | |
1009 | break; | |
1010 | } | |
1011 | case TEX_XLP: | |
1012 | { | |
1013 | success = XLPGo(); | |
1014 | break; | |
1015 | } | |
1016 | case TEX_HTML: | |
1017 | { | |
1018 | success = HTMLGo(); | |
1019 | break; | |
1020 | } | |
1021 | } | |
1022 | } | |
1023 | if (stopRunning) | |
1024 | { | |
6c155d33 | 1025 | OnInform(_T("*** Aborted by user.")); |
b63b07a8 RL |
1026 | success = false; |
1027 | stopRunning = false; | |
1028 | OkToClose = true; | |
9a29912f JS |
1029 | } |
1030 | ||
1031 | if (success) | |
1032 | { | |
ad781c23 | 1033 | WriteTexReferences(RefFileName); |
9a29912f | 1034 | TexCleanUp(); |
b63b07a8 | 1035 | startedSections = false; |
9a29912f | 1036 | |
63ad540d | 1037 | wxString buf; |
9a29912f JS |
1038 | #ifndef NO_GUI |
1039 | long tim = wxGetElapsedTime(); | |
6c155d33 JS |
1040 | buf.Printf(_T("Finished PASS #%d in %ld seconds.\n"), passNumber, (long)(tim/1000.0)); |
1041 | OnInform((wxChar *)buf.c_str()); | |
63ad540d GT |
1042 | |
1043 | if (errorCount) | |
1044 | { | |
6c155d33 JS |
1045 | buf.Printf(_T("Errors encountered during this pass: %lu\n"), errorCount); |
1046 | OnInform((wxChar *)buf.c_str()); | |
63ad540d GT |
1047 | } |
1048 | ||
67a99992 | 1049 | #if wxUSE_STATUSBAR |
9a29912f JS |
1050 | if (isInteractive) |
1051 | { | |
6c155d33 JS |
1052 | buf.Printf(_T("Done, %d %s."), passNumber, (passNumber > 1) ? _T("passes") : _T("pass")); |
1053 | frame->SetStatusText((wxChar *)buf.c_str()); | |
9a29912f | 1054 | } |
67a99992 | 1055 | #endif // wxUSE_STATUSBAR |
9a29912f | 1056 | #else |
6c155d33 JS |
1057 | buf.Printf(_T("Done, %d %s."), passNumber, (passNumber > 1) ? _T("passes") : _T("pass")); |
1058 | OnInform((wxChar *)buf.c_str()); | |
63ad540d GT |
1059 | if (errorCount) |
1060 | { | |
6c155d33 JS |
1061 | buf.Printf(_T("Errors encountered during this pass: %lu\n"), errorCount); |
1062 | OnInform((wxChar *)buf.c_str()); | |
63ad540d | 1063 | } |
9a29912f JS |
1064 | #endif |
1065 | passNumber ++; | |
63ad540d | 1066 | errorCount = 0; |
b63b07a8 RL |
1067 | OkToClose = true; |
1068 | return true; | |
9a29912f JS |
1069 | } |
1070 | ||
1071 | TexCleanUp(); | |
b63b07a8 | 1072 | startedSections = false; |
9a29912f | 1073 | |
67a99992 | 1074 | #if !defined(NO_GUI) && wxUSE_STATUSBAR |
6c155d33 | 1075 | frame->SetStatusText(_T("Aborted by user.")); |
8efab359 | 1076 | #endif // GUI |
fad535ee | 1077 | |
6c155d33 | 1078 | OnInform(_T("Sorry, unsuccessful.")); |
b63b07a8 RL |
1079 | OkToClose = true; |
1080 | return false; | |
9a29912f JS |
1081 | } |
1082 | ||
6c155d33 | 1083 | void OnError(const wxChar *msg) |
9a29912f | 1084 | { |
b63b07a8 | 1085 | wxString msg_string = msg; |
63ad540d GT |
1086 | errorCount++; |
1087 | ||
9a29912f | 1088 | #ifdef NO_GUI |
b63b07a8 | 1089 | wxSTD cerr << "Error: " << msg_string.mb_str() << "\n"; |
219f4a6d | 1090 | wxSTD cerr.flush(); |
9a29912f | 1091 | #else |
3f8e5072 | 1092 | if (isInteractive && frame) |
6c155d33 | 1093 | (*frame->textWindow) << _T("Error: ") << msg << _T("\n"); |
9a29912f JS |
1094 | else |
1095 | #ifdef __UNIX__ | |
1096 | { | |
b63b07a8 | 1097 | wxSTD cerr << "Error: " << msg_string.mb_str() << "\n"; |
219f4a6d | 1098 | wxSTD cerr.flush(); |
9a29912f JS |
1099 | } |
1100 | #endif | |
63ad540d | 1101 | |
9a29912f | 1102 | #ifdef __WXMSW__ |
11611a62 | 1103 | wxLogError(msg); |
9a29912f | 1104 | #endif |
b63b07a8 | 1105 | Tex2RTFYield(true); |
9a29912f JS |
1106 | #endif // NO_GUI |
1107 | } | |
1108 | ||
6c155d33 | 1109 | void OnInform(const wxChar *msg) |
9a29912f | 1110 | { |
b63b07a8 | 1111 | wxString msg_string = msg; |
9a29912f | 1112 | #ifdef NO_GUI |
b63b07a8 | 1113 | wxSTD cout << msg_string.mb_str() << "\n"; |
219f4a6d | 1114 | wxSTD cout.flush(); |
9a29912f | 1115 | #else |
3f8e5072 | 1116 | if (isInteractive && frame) |
6c155d33 | 1117 | (*frame->textWindow) << msg << _T("\n"); |
fad535ee GT |
1118 | /* This whole block of code is just wrong I think. It would behave |
1119 | completely wrong under anything other than MSW due to the ELSE | |
4fe30bce | 1120 | with no statement, and the cout calls would fail under MSW, as |
254a2129 | 1121 | the code in this block is compiled if !NO_GUI This code has been |
4fe30bce | 1122 | here since v1.1 of this file too. - gt |
9a29912f JS |
1123 | else |
1124 | #ifdef __WXMSW__ | |
1125 | { | |
b63b07a8 | 1126 | wxSTD cout << msg_string.mb_str() << "\n"; |
219f4a6d | 1127 | wxSTD cout.flush(); |
9a29912f JS |
1128 | } |
1129 | #endif | |
1130 | #ifdef __WXMSW__ | |
1131 | {} | |
1132 | #endif | |
fad535ee | 1133 | */ |
9a29912f JS |
1134 | if (isInteractive) |
1135 | { | |
b63b07a8 | 1136 | Tex2RTFYield(true); |
9a29912f JS |
1137 | } |
1138 | #endif // NO_GUI | |
1139 | } | |
1140 | ||
1141 | void OnMacro(int macroId, int no_args, bool start) | |
1142 | { | |
1143 | switch (convertMode) | |
1144 | { | |
1145 | case TEX_RTF: | |
1146 | { | |
1147 | RTFOnMacro(macroId, no_args, start); | |
1148 | break; | |
1149 | } | |
1150 | case TEX_XLP: | |
1151 | { | |
1152 | XLPOnMacro(macroId, no_args, start); | |
1153 | break; | |
1154 | } | |
1155 | case TEX_HTML: | |
1156 | { | |
1157 | HTMLOnMacro(macroId, no_args, start); | |
1158 | break; | |
1159 | } | |
1160 | } | |
1161 | } | |
1162 | ||
1163 | bool OnArgument(int macroId, int arg_no, bool start) | |
1164 | { | |
1165 | switch (convertMode) | |
1166 | { | |
1167 | case TEX_RTF: | |
1168 | { | |
1169 | return RTFOnArgument(macroId, arg_no, start); | |
6c155d33 | 1170 | // break; |
9a29912f JS |
1171 | } |
1172 | case TEX_XLP: | |
1173 | { | |
1174 | return XLPOnArgument(macroId, arg_no, start); | |
6c155d33 | 1175 | // break; |
9a29912f JS |
1176 | } |
1177 | case TEX_HTML: | |
1178 | { | |
1179 | return HTMLOnArgument(macroId, arg_no, start); | |
6c155d33 | 1180 | // break; |
9a29912f JS |
1181 | } |
1182 | } | |
b63b07a8 | 1183 | return true; |
9a29912f JS |
1184 | } |
1185 | ||
1186 | /* | |
1187 | * DDE Stuff | |
1188 | */ | |
1189 | #if defined(__WXMSW__) && !defined(NO_GUI) | |
1190 | ||
1191 | /* | |
1192 | * Server | |
1193 | */ | |
1194 | ||
1195 | wxConnectionBase *Tex2RTFServer::OnAcceptConnection(const wxString& topic) | |
1196 | { | |
6c155d33 | 1197 | if (topic == _T("TEX2RTF")) |
9a29912f JS |
1198 | { |
1199 | if (!ipc_buffer) | |
6c155d33 | 1200 | ipc_buffer = new wxChar[1000]; |
ffaaaacb | 1201 | |
9a29912f JS |
1202 | return new Tex2RTFConnection(ipc_buffer, 4000); |
1203 | } | |
1204 | else | |
1205 | return NULL; | |
1206 | } | |
1207 | ||
1208 | /* | |
1209 | * Connection | |
1210 | */ | |
ffaaaacb | 1211 | |
6c155d33 | 1212 | Tex2RTFConnection::Tex2RTFConnection(wxChar *buf, int size):wxDDEConnection(buf, size) |
9a29912f JS |
1213 | { |
1214 | } | |
1215 | ||
6c155d33 | 1216 | bool SplitCommand(wxChar *data, wxChar *firstArg, wxChar *secondArg) |
9a29912f JS |
1217 | { |
1218 | firstArg[0] = 0; | |
1219 | secondArg[0] = 0; | |
1220 | int i = 0; | |
b63b07a8 | 1221 | bool stop = false; |
9a29912f JS |
1222 | // Find first argument (command name) |
1223 | while (!stop) | |
1224 | { | |
1225 | if (data[i] == ' ' || data[i] == 0) | |
b63b07a8 | 1226 | stop = true; |
9a29912f JS |
1227 | else |
1228 | { | |
1229 | firstArg[i] = data[i]; | |
1230 | i ++; | |
1231 | } | |
1232 | } | |
1233 | firstArg[i] = 0; | |
1234 | if (data[i] == ' ') | |
1235 | { | |
1236 | // Find second argument | |
1237 | i ++; | |
1238 | int j = 0; | |
1239 | while (data[i] != 0) | |
1240 | { | |
1241 | secondArg[j] = data[i]; | |
1242 | i ++; | |
1243 | j ++; | |
1244 | } | |
1245 | secondArg[j] = 0; | |
1246 | } | |
b63b07a8 | 1247 | return true; |
9a29912f JS |
1248 | } |
1249 | ||
6c155d33 | 1250 | bool Tex2RTFConnection::OnExecute(const wxString& WXUNUSED(topic), wxChar *data, int WXUNUSED(size), wxIPCFormat WXUNUSED(format)) |
9a29912f | 1251 | { |
6c155d33 | 1252 | wxStrcpy(Tex2RTFLastStatus, _T("OK")); |
9a29912f | 1253 | |
6c155d33 JS |
1254 | wxChar firstArg[50]; |
1255 | wxChar secondArg[300]; | |
9a29912f JS |
1256 | if (SplitCommand(data, firstArg, secondArg)) |
1257 | { | |
6c155d33 JS |
1258 | bool hasArg = (wxStrlen(secondArg) > 0); |
1259 | if (wxStrcmp(firstArg, _T("INPUT")) == 0 && hasArg) | |
9a29912f JS |
1260 | { |
1261 | if (InputFile) delete[] InputFile; | |
1262 | InputFile = copystring(secondArg); | |
1263 | if (frame) | |
1264 | { | |
6c155d33 | 1265 | wxChar buf[100]; |
9a29912f | 1266 | wxString str = wxFileNameFromPath(InputFile); |
b63b07a8 | 1267 | wxSnprintf(buf, sizeof(buf), _T("Tex2RTF [%s]"), (const wxChar*) str); |
9a29912f JS |
1268 | frame->SetTitle(buf); |
1269 | } | |
1270 | } | |
6c155d33 | 1271 | else if (wxStrcmp(firstArg, _T("OUTPUT")) == 0 && hasArg) |
9a29912f JS |
1272 | { |
1273 | if (OutputFile) delete[] OutputFile; | |
1274 | OutputFile = copystring(secondArg); | |
1275 | } | |
6c155d33 | 1276 | else if (wxStrcmp(firstArg, _T("GO")) == 0) |
9a29912f | 1277 | { |
6c155d33 | 1278 | wxStrcpy(Tex2RTFLastStatus, _T("WORKING")); |
9a29912f | 1279 | if (!Go()) |
6c155d33 | 1280 | wxStrcpy(Tex2RTFLastStatus, _T("CONVERSION ERROR")); |
9a29912f | 1281 | else |
6c155d33 | 1282 | wxStrcpy(Tex2RTFLastStatus, _T("OK")); |
9a29912f | 1283 | } |
6c155d33 | 1284 | else if (wxStrcmp(firstArg, _T("EXIT")) == 0) |
9a29912f | 1285 | { |
e3065973 | 1286 | if (frame) frame->Close(); |
9a29912f | 1287 | } |
6c155d33 | 1288 | else if (wxStrcmp(firstArg, _T("MINIMIZE")) == 0 || wxStrcmp(firstArg, _T("ICONIZE")) == 0) |
9a29912f JS |
1289 | { |
1290 | if (frame) | |
b63b07a8 | 1291 | frame->Iconize(true); |
9a29912f | 1292 | } |
6c155d33 | 1293 | else if (wxStrcmp(firstArg, _T("SHOW")) == 0 || wxStrcmp(firstArg, _T("RESTORE")) == 0) |
9a29912f JS |
1294 | { |
1295 | if (frame) | |
1296 | { | |
b63b07a8 RL |
1297 | frame->Iconize(false); |
1298 | frame->Show(true); | |
9a29912f JS |
1299 | } |
1300 | } | |
1301 | else | |
1302 | { | |
1303 | // Try for a setting | |
b63b07a8 | 1304 | wxStrcpy(Tex2RTFLastStatus, RegisterSetting(firstArg, secondArg, false)); |
67a99992 | 1305 | #if !defined(NO_GUI) && wxUSE_STATUSBAR |
6c155d33 | 1306 | if (frame && wxStrcmp(firstArg, _T("conversionMode")) == 0) |
9a29912f | 1307 | { |
6c155d33 JS |
1308 | wxChar buf[100]; |
1309 | wxStrcpy(buf, _T("In ")); | |
9a29912f JS |
1310 | |
1311 | if (winHelp && (convertMode == TEX_RTF)) | |
6c155d33 | 1312 | wxStrcat(buf, _T("WinHelp RTF")); |
9a29912f | 1313 | else if (!winHelp && (convertMode == TEX_RTF)) |
6c155d33 JS |
1314 | wxStrcat(buf, _T("linear RTF")); |
1315 | else if (convertMode == TEX_HTML) wxStrcat(buf, _T("HTML")); | |
1316 | else if (convertMode == TEX_XLP) wxStrcat(buf, _T("XLP")); | |
1317 | wxStrcat(buf, _T(" mode.")); | |
9a29912f JS |
1318 | frame->SetStatusText(buf, 1); |
1319 | } | |
1320 | #endif | |
1321 | } | |
1322 | } | |
b63b07a8 | 1323 | return true; |
9a29912f JS |
1324 | } |
1325 | ||
6c155d33 | 1326 | wxChar *Tex2RTFConnection::OnRequest(const wxString& WXUNUSED(topic), const wxString& WXUNUSED(item), int *WXUNUSED(size), wxIPCFormat WXUNUSED(format)) |
9a29912f JS |
1327 | { |
1328 | return Tex2RTFLastStatus; | |
1329 | } | |
1330 | ||
1331 | #endif | |
1332 | ||
c4c794e1 | 1333 | #ifndef NO_GUI |
17867d61 | 1334 | #ifndef __WXGTK__ |
dd107c50 | 1335 | //void wxObject::Dump(wxSTD ostream& str) |
7cf496bf RS |
1336 | //{ |
1337 | // if (GetClassInfo() && GetClassInfo()->GetClassName()) | |
1338 | // str << GetClassInfo()->GetClassName(); | |
1339 | // else | |
1340 | // str << "unknown object class"; | |
1341 | //} | |
1342 | #endif | |
17867d61 | 1343 | #endif |