1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Converts Latex to linear/WinHelp RTF, HTML, wxHelp.
4 // Author: Julian Smart
5 // Modified by: Wlodzimiez ABX Skiba 2003/2004 Unicode support
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
14 #pragma implementation
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
27 #include "wx/textctrl.h"
28 #include "wx/filedlg.h"
29 #include "wx/msgdlg.h"
53 #if (defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXX11__)) && !defined(NO_GUI)
54 #include "tex2rtf.xpm"
57 #if !WXWIN_COMPATIBILITY_2_4
58 static inline wxChar
* copystring(const wxChar
* s
)
59 { return wxStrcpy(new wxChar
[wxStrlen(s
) + 1], s
); }
62 const float versionNo
= TEX2RTF_VERSION_NUMBER
;
64 TexChunk
*currentMember
= NULL
;
65 bool startedSections
= false;
66 wxChar
*contentsString
= NULL
;
67 bool suppressNameDecoration
= false;
68 bool OkToClose
= true;
70 unsigned long errorCount
= 0;
74 extern wxChar
*BigBuffer
;
75 extern wxChar
*TexFileRoot
;
76 extern wxChar
*TexBibName
; // Bibliography output file name
77 extern wxChar
*TexTmpBibName
; // Temporary bibliography output file name
78 extern wxList ColourTable
;
79 extern TexChunk
*TopLevel
;
84 wxHelpController
*HelpInstance
= NULL
;
88 static wxChar
*ipc_buffer
= NULL
;
89 static wxChar Tex2RTFLastStatus
[100];
90 Tex2RTFServer
*TheTex2RTFServer
= NULL
;
94 wxChar
*bulletFile
= NULL
;
96 FILE *Contents
= NULL
; // Contents page
97 FILE *Chapters
= NULL
; // Chapters (WinHelp RTF) or rest of file (linear RTF)
98 FILE *Sections
= NULL
;
99 FILE *Subsections
= NULL
;
100 FILE *Subsubsections
= NULL
;
102 FILE *WinHelpContentsFile
= NULL
;
104 wxChar
*InputFile
= NULL
;
105 wxChar
*OutputFile
= NULL
;
106 wxChar
*MacroFile
= copystring(_T("tex2rtf.ini"));
108 wxChar
*FileRoot
= NULL
;
109 wxChar
*ContentsName
= NULL
; // Contents page from last time around
110 wxChar
*TmpContentsName
= NULL
; // Current contents page
111 wxChar
*TmpFrameContentsName
= NULL
; // Current frame contents page
112 wxChar
*WinHelpContentsFileName
= NULL
; // WinHelp .cnt file
113 wxChar
*RefFileName
= NULL
; // Reference file name
115 wxChar
*RTFCharset
= copystring(_T("ansi"));
118 int BufSize
= 100; // Size of buffer in K
124 void ShowOptions(void);
126 wxChar wxTex2RTFBuffer
[1500];
129 IMPLEMENT_APP_CONSOLE(MyApp
)
131 wxMenuBar
*menuBar
= NULL
;
132 MyFrame
*frame
= NULL
;
133 // DECLARE_APP(MyApp)
137 // `Main program' equivalent, creating windows and returning main app frame
140 // Use default list of macros defined in tex2any.cc
141 DefineDefaultMacros();
142 AddMacroDef(ltHARDY
, _T("hardy"), 0);
144 FileRoot
= new wxChar
[300];
145 ContentsName
= new wxChar
[300];
146 TmpContentsName
= new wxChar
[300];
147 TmpFrameContentsName
= new wxChar
[300];
148 WinHelpContentsFileName
= new wxChar
[300];
149 RefFileName
= new wxChar
[300];
151 ColourTable
.DeleteContents(true);
155 // Read input/output files
158 if (argv
[1][0] != '-')
165 if (argv
[2][0] != '-')
167 OutputFile
= argv
[2];
175 if (!InputFile
|| !OutputFile
)
177 wxSTD cout
<< "Tex2RTF: input or output file is missing.\n";
185 TexPathList
.EnsureFileAccessible(InputFile
);
187 if (!InputFile
|| !OutputFile
)
188 isInteractive
= true;
191 for (i
= n
; i
< argc
;)
193 if (wxStrcmp(argv
[i
], _T("-winhelp")) == 0)
196 convertMode
= TEX_RTF
;
200 else if (wxStrcmp(argv
[i
], _T("-interactive")) == 0)
203 isInteractive
= true;
206 else if (wxStrcmp(argv
[i
], _T("-sync")) == 0) // Don't yield
211 else if (wxStrcmp(argv
[i
], _T("-rtf")) == 0)
214 convertMode
= TEX_RTF
;
216 else if (wxStrcmp(argv
[i
], _T("-html")) == 0)
219 convertMode
= TEX_HTML
;
221 else if (wxStrcmp(argv
[i
], _T("-xlp")) == 0)
224 convertMode
= TEX_XLP
;
226 else if (wxStrcmp(argv
[i
], _T("-twice")) == 0)
231 else if (wxStrcmp(argv
[i
], _T("-macros")) == 0)
236 MacroFile
= copystring(argv
[i
]);
240 else if (wxStrcmp(argv
[i
], _T("-bufsize")) == 0)
245 BufSize
= wxAtoi(argv
[i
]);
249 else if (wxStrcmp(argv
[i
], _T("-charset")) == 0)
256 if (wxStrcmp(s
, _T("ansi")) == 0 || wxStrcmp(s
, _T("pc")) == 0 || wxStrcmp(s
, _T("mac")) == 0 ||
257 wxStrcmp(s
, _T("pca")) == 0)
258 RTFCharset
= copystring(s
);
261 OnError(_T("Incorrect argument for -charset"));
266 else if (wxStrcmp(argv
[i
], _T("-checkcurleybraces")) == 0)
269 checkCurleyBraces
= true;
271 else if (wxStrcmp(argv
[i
], _T("-checksyntax")) == 0)
279 buf
.Printf(_T("Invalid switch %s.\n"), argv
[i
]);
280 OnError((wxChar
*)buf
.c_str());
289 #if defined(__WXMSW__) && !defined(NO_GUI)
291 Tex2RTFLastStatus
[0] = 0; // DDE connection return value
292 TheTex2RTFServer
= new Tex2RTFServer
;
293 TheTex2RTFServer
->Create(_T("TEX2RTF"));
296 #if defined(__WXMSW__) && defined(__WIN16__)
297 // Limit to max Windows array size
298 if (BufSize
> 64) BufSize
= 64;
301 TexInitialize(BufSize
);
302 ResetContentsLevels(0);
310 // Create the main frame window
311 frame
= new MyFrame(NULL
, wxID_ANY
, _T("Tex2RTF"), wxDefaultPosition
, wxSize(400, 300));
312 frame
->CreateStatusBar(2);
315 // TODO: uncomment this when we have tex2rtf.xpm
316 frame
->SetIcon(wxICON(tex2rtf
));
320 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF [%s]"), wxFileNameFromPath(InputFile
));
321 frame
->SetTitle(buf
);
325 wxMenu
*file_menu
= new wxMenu
;
326 file_menu
->Append(TEX_GO
, _T("&Go"), _T("Run converter"));
327 file_menu
->Append(TEX_SET_INPUT
, _T("Set &Input File"), _T("Set the LaTeX input file"));
328 file_menu
->Append(TEX_SET_OUTPUT
, _T("Set &Output File"), _T("Set the output file"));
329 file_menu
->AppendSeparator();
330 file_menu
->Append(TEX_VIEW_LATEX
, _T("View &LaTeX File"), _T("View the LaTeX input file"));
331 file_menu
->Append(TEX_VIEW_OUTPUT
, _T("View Output &File"), _T("View output file"));
332 file_menu
->Append(TEX_SAVE_FILE
, _T("&Save log file"), _T("Save displayed text into file"));
333 file_menu
->AppendSeparator();
334 file_menu
->Append(TEX_QUIT
, _T("E&xit"), _T("Exit Tex2RTF"));
336 wxMenu
*macro_menu
= new wxMenu
;
338 macro_menu
->Append(TEX_LOAD_CUSTOM_MACROS
, _T("&Load Custom Macros"), _T("Load custom LaTeX macro file"));
339 macro_menu
->Append(TEX_VIEW_CUSTOM_MACROS
, _T("View &Custom Macros"), _T("View custom LaTeX macros"));
341 wxMenu
*mode_menu
= new wxMenu
;
343 mode_menu
->Append(TEX_MODE_RTF
, _T("Output linear &RTF"), _T("Wordprocessor-compatible RTF"));
344 mode_menu
->Append(TEX_MODE_WINHELP
, _T("Output &WinHelp RTF"), _T("WinHelp-compatible RTF"));
345 mode_menu
->Append(TEX_MODE_HTML
, _T("Output &HTML"), _T("HTML World Wide Web hypertext file"));
346 mode_menu
->Append(TEX_MODE_XLP
, _T("Output &XLP"), _T("wxHelp hypertext help file"));
348 wxMenu
*options_menu
= new wxMenu
;
350 options_menu
->Append(TEX_OPTIONS_CURELY_BRACE
, _T("Curley brace matching"), _T("Checks for mismatched curley braces"),true);
351 options_menu
->Append(TEX_OPTIONS_SYNTAX_CHECKING
, _T("Syntax checking"), _T("Syntax checking for common errors"),true);
353 options_menu
->Check(TEX_OPTIONS_CURELY_BRACE
, checkCurleyBraces
);
354 options_menu
->Check(TEX_OPTIONS_SYNTAX_CHECKING
, checkSyntax
);
356 wxMenu
*help_menu
= new wxMenu
;
358 help_menu
->Append(TEX_HELP
, _T("&Help"), _T("Tex2RTF Contents Page"));
359 help_menu
->Append(TEX_ABOUT
, _T("&About Tex2RTF"), _T("About Tex2RTF"));
361 menuBar
= new wxMenuBar
;
362 menuBar
->Append(file_menu
, _T("&File"));
363 menuBar
->Append(macro_menu
, _T("&Macros"));
364 menuBar
->Append(mode_menu
, _T("&Conversion Mode"));
365 menuBar
->Append(options_menu
, _T("&Options"));
366 menuBar
->Append(help_menu
, _T("&Help"));
368 frame
->SetMenuBar(menuBar
);
369 frame
->textWindow
= new wxTextCtrl(frame
, wxID_ANY
, _T(""), wxDefaultPosition
, wxDefaultSize
, wxTE_READONLY
|wxTE_MULTILINE
);
371 (*frame
->textWindow
) << _T("Welcome to Tex2RTF.\n");
375 HelpInstance
= new wxHelpController();
376 HelpInstance
->Initialize(_T("tex2rtf"));
380 * Read macro/initialisation file
384 wxString path
= TexPathList
.FindValidPath(MacroFile
);
386 ReadCustomMacros((wxChar
*)path
.c_str());
388 wxStrcpy(buf
, _T("In "));
390 if (winHelp
&& (convertMode
== TEX_RTF
))
391 wxStrcat(buf
, _T("WinHelp RTF"));
392 else if (!winHelp
&& (convertMode
== TEX_RTF
))
393 wxStrcat(buf
, _T("linear RTF"));
394 else if (convertMode
== TEX_HTML
) wxStrcat(buf
, _T("HTML"));
395 else if (convertMode
== TEX_XLP
) wxStrcat(buf
, _T("XLP"));
396 wxStrcat(buf
, _T(" mode."));
397 frame
->SetStatusText(buf
, 1);
406 * Read macro/initialisation file
410 wxString path
= TexPathList
.FindValidPath(MacroFile
);
412 ReadCustomMacros((wxChar
*)path
.c_str());
430 wxNode
*node
= CustomMacroList
.GetFirst();
433 CustomMacro
*macro
= (CustomMacro
*)node
->GetData();
436 node
= CustomMacroList
.GetFirst();
438 MacroDefs
.BeginFind();
439 node
= MacroDefs
.Next();
442 TexMacroDef
* def
= (TexMacroDef
*) node
->GetData();
444 node
= MacroDefs
.Next();
448 delete TheTex2RTFServer
;
463 delete currentArgData
;
464 currentArgData
= NULL
;
478 delete TexTmpBibName
;
479 TexTmpBibName
= NULL
;
493 delete TmpContentsName
;
494 TmpContentsName
= NULL
;
496 if (TmpFrameContentsName
)
498 delete TmpFrameContentsName
;
499 TmpFrameContentsName
= NULL
;
501 if (WinHelpContentsFileName
)
503 delete WinHelpContentsFileName
;
504 WinHelpContentsFileName
= NULL
;
528 delete [] BibliographyStyleString
;
529 delete [] DocumentStyleString
;
530 delete [] bitmapMethod
;
531 delete [] backgroundColourString
;
532 delete [] ContentsNameString
;
533 delete [] AbstractNameString
;
534 delete [] GlossaryNameString
;
535 delete [] ReferencesNameString
;
536 delete [] FiguresNameString
;
537 delete [] TablesNameString
;
538 delete [] FigureNameString
;
539 delete [] TableNameString
;
540 delete [] IndexNameString
;
541 delete [] ChapterNameString
;
542 delete [] SectionNameString
;
543 delete [] SubsectionNameString
;
544 delete [] SubsubsectionNameString
;
545 delete [] UpNameString
;
547 delete[] winHelpTitle
;
549 // TODO: this simulates zero-memory leaks!
550 // Otherwise there are just too many...
552 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
553 wxDebugContext::SetCheckpoint();
560 void ShowOptions(void)
563 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF version %.2f"), versionNo
);
565 OnInform(_T("Usage: tex2rtf [input] [output] [switches]\n"));
566 OnInform(_T("where valid switches are"));
568 OnInform(_T(" -interactive"));
570 OnInform(_T(" -bufsize <size in K>"));
571 OnInform(_T(" -charset <pc | pca | ansi | mac> (default ansi)"));
572 OnInform(_T(" -twice"));
573 OnInform(_T(" -sync"));
574 OnInform(_T(" -checkcurleybraces"));
575 OnInform(_T(" -checksyntax"));
576 OnInform(_T(" -macros <filename>"));
577 OnInform(_T(" -winhelp"));
578 OnInform(_T(" -rtf"));
579 OnInform(_T(" -html"));
580 OnInform(_T(" -xlp\n"));
585 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
586 EVT_CLOSE(MyFrame::OnCloseWindow
)
587 EVT_MENU(TEX_QUIT
, MyFrame::OnExit
)
588 EVT_MENU(TEX_GO
, MyFrame::OnGo
)
589 EVT_MENU(TEX_SET_INPUT
, MyFrame::OnSetInput
)
590 EVT_MENU(TEX_SET_OUTPUT
, MyFrame::OnSetOutput
)
591 EVT_MENU(TEX_SAVE_FILE
, MyFrame::OnSaveFile
)
592 EVT_MENU(TEX_VIEW_LATEX
, MyFrame::OnViewLatex
)
593 EVT_MENU(TEX_VIEW_OUTPUT
, MyFrame::OnViewOutput
)
594 EVT_MENU(TEX_VIEW_CUSTOM_MACROS
, MyFrame::OnShowMacros
)
595 EVT_MENU(TEX_LOAD_CUSTOM_MACROS
, MyFrame::OnLoadMacros
)
596 EVT_MENU(TEX_MODE_RTF
, MyFrame::OnModeRTF
)
597 EVT_MENU(TEX_MODE_WINHELP
, MyFrame::OnModeWinHelp
)
598 EVT_MENU(TEX_MODE_HTML
, MyFrame::OnModeHTML
)
599 EVT_MENU(TEX_MODE_XLP
, MyFrame::OnModeXLP
)
600 EVT_MENU(TEX_OPTIONS_CURELY_BRACE
, MyFrame::OnOptionsCurleyBrace
)
601 EVT_MENU(TEX_OPTIONS_SYNTAX_CHECKING
, MyFrame::OnOptionsSyntaxChecking
)
602 EVT_MENU(TEX_HELP
, MyFrame::OnHelp
)
603 EVT_MENU(TEX_ABOUT
, MyFrame::OnAbout
)
606 // My frame constructor
607 MyFrame::MyFrame(wxFrame
*frame
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
608 wxFrame(frame
, id
, title
, pos
, size
)
611 void MyFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
613 if (!stopRunning
&& !OkToClose
)
625 void MyFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
631 void MyFrame::OnGo(wxCommandEvent
& WXUNUSED(event
))
635 menuBar
->EnableTop(0, false);
636 menuBar
->EnableTop(1, false);
637 menuBar
->EnableTop(2, false);
638 menuBar
->EnableTop(3, false);
645 SetStatusText(_T("Build aborted!"));
647 errBuf
.Printf(_T("\nErrors encountered during this pass: %lu\n"), errorCount
);
648 OnInform((wxChar
*)errBuf
.c_str());
652 if (runTwice
&& !stopRunning
)
657 menuBar
->EnableTop(0, true);
658 menuBar
->EnableTop(1, true);
659 menuBar
->EnableTop(2, true);
660 menuBar
->EnableTop(3, true);
663 void MyFrame::OnSetInput(wxCommandEvent
& WXUNUSED(event
))
665 ChooseInputFile(true);
668 void MyFrame::OnSetOutput(wxCommandEvent
& WXUNUSED(event
))
670 ChooseOutputFile(true);
673 void MyFrame::OnSaveFile(wxCommandEvent
& WXUNUSED(event
))
675 wxString s
= wxFileSelector(_T("Save text to file"), _T(""), _T(""), _T("txt"), _T("*.txt"));
678 textWindow
->SaveFile(s
);
680 wxSnprintf(buf
, sizeof(buf
), _T("Saved text to %s"), (const wxChar
*) s
.c_str());
681 frame
->SetStatusText(buf
, 0);
685 void MyFrame::OnViewOutput(wxCommandEvent
& WXUNUSED(event
))
688 if (OutputFile
&& wxFileExists(OutputFile
))
690 textWindow
->LoadFile(OutputFile
);
692 wxString
str(wxFileNameFromPath(OutputFile
));
693 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF [%s]"), (const wxChar
*) str
.c_str());
694 frame
->SetTitle(buf
);
698 void MyFrame::OnViewLatex(wxCommandEvent
& WXUNUSED(event
))
701 if (InputFile
&& wxFileExists(InputFile
))
703 textWindow
->LoadFile(InputFile
);
705 wxString
str(wxFileNameFromPath(OutputFile
));
706 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF [%s]"), (const wxChar
*) str
.c_str());
707 frame
->SetTitle(buf
);
711 void MyFrame::OnLoadMacros(wxCommandEvent
& WXUNUSED(event
))
714 wxString s
= wxFileSelector(_T("Choose custom macro file"), wxPathOnly(MacroFile
), wxFileNameFromPath(MacroFile
), _T("ini"), _T("*.ini"));
715 if (s
!= _T("") && wxFileExists(s
))
717 MacroFile
= copystring(s
);
718 ReadCustomMacros((wxChar
*)s
.c_str());
723 void MyFrame::OnShowMacros(wxCommandEvent
& WXUNUSED(event
))
730 void MyFrame::OnModeRTF(wxCommandEvent
& WXUNUSED(event
))
732 convertMode
= TEX_RTF
;
736 SetStatusText(_T("In linear RTF mode."), 1);
739 void MyFrame::OnModeWinHelp(wxCommandEvent
& WXUNUSED(event
))
741 convertMode
= TEX_RTF
;
745 SetStatusText(_T("In WinHelp RTF mode."), 1);
748 void MyFrame::OnModeHTML(wxCommandEvent
& WXUNUSED(event
))
750 convertMode
= TEX_HTML
;
754 SetStatusText(_T("In HTML mode."), 1);
757 void MyFrame::OnModeXLP(wxCommandEvent
& WXUNUSED(event
))
759 convertMode
= TEX_XLP
;
762 SetStatusText(_T("In XLP mode."), 1);
765 void MyFrame::OnOptionsCurleyBrace(wxCommandEvent
& WXUNUSED(event
))
767 checkCurleyBraces
= !checkCurleyBraces
;
768 if (checkCurleyBraces
)
770 SetStatusText(_T("Checking curley braces: YES"), 1);
774 SetStatusText(_T("Checking curley braces: NO"), 1);
779 void MyFrame::OnOptionsSyntaxChecking(wxCommandEvent
& WXUNUSED(event
))
781 checkSyntax
= !checkSyntax
;
784 SetStatusText(_T("Checking syntax: YES"), 1);
788 SetStatusText(_T("Checking syntax: NO"), 1);
793 void MyFrame::OnHelp(wxCommandEvent
& WXUNUSED(event
))
796 HelpInstance
->LoadFile();
797 HelpInstance
->DisplayContents();
801 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
805 wxChar
*platform
= _T(" (32-bit)");
808 wxChar
*platform
= _T(" (16-bit)");
810 wxChar
*platform
= _T("");
813 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
);
814 wxMessageBox(buf
, _T("About Tex2RTF"));
817 void ChooseInputFile(bool force
)
819 if (force
|| !InputFile
)
821 wxString s
= wxFileSelector(_T("Choose LaTeX input file"), wxPathOnly(InputFile
), wxFileNameFromPath(InputFile
), _T("tex"), _T("*.tex"));
824 // Different file, so clear index entries.
826 ResetContentsLevels(0);
830 InputFile
= copystring(s
);
831 wxString str
= wxFileNameFromPath(InputFile
);
833 buf
.Printf(_T("Tex2RTF [%s]"), str
.c_str());
834 frame
->SetTitle((wxChar
*)buf
.c_str());
840 void ChooseOutputFile(bool force
)
842 wxChar extensionBuf
[10];
844 wxStrcpy(wildBuf
, _T("*."));
847 path
= wxPathOnly(OutputFile
);
849 path
= wxPathOnly(InputFile
);
855 wxStrcpy(extensionBuf
, _T("rtf"));
856 wxStrcat(wildBuf
, _T("rtf"));
861 wxStrcpy(extensionBuf
, _T("xlp"));
862 wxStrcat(wildBuf
, _T("xlp"));
867 #if defined(__WXMSW__) && defined(__WIN16__)
868 wxStrcpy(extensionBuf
, _T("htm"));
869 wxStrcat(wildBuf
, _T("htm"));
871 wxStrcpy(extensionBuf
, _T("html"));
872 wxStrcat(wildBuf
, _T("html"));
877 if (force
|| !OutputFile
)
879 wxString s
= wxFileSelector(_T("Choose output file"), path
, wxFileNameFromPath(OutputFile
),
880 extensionBuf
, wildBuf
);
882 OutputFile
= copystring(s
);
894 if (!InputFile
|| !OutputFile
|| stopRunning
)
901 wxString str
= wxFileNameFromPath(InputFile
);
903 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF [%s]"), (const wxChar
*) str
);
904 frame
->SetTitle(buf
);
910 // Find extension-less filename
911 wxStrcpy(FileRoot
, OutputFile
);
912 StripExtension(FileRoot
);
914 if (truncateFilenames
&& convertMode
== TEX_HTML
)
916 // Truncate to five characters. This ensures that
917 // we can generate DOS filenames such as thing999. But 1000 files
918 // may not be enough, of course...
919 wxChar
* sName
= wxFileNameFromPath( FileRoot
); // this Julian's method is non-destructive reference
922 if(wxStrlen( sName
) > 5)
923 sName
[5] = '\0'; // that should do!
926 wxSnprintf(ContentsName
, 300, _T("%s.con"), FileRoot
);
927 wxSnprintf(TmpContentsName
, 300, _T("%s.cn1"), FileRoot
);
928 wxSnprintf(TmpFrameContentsName
, 300, _T("%s.frc"), FileRoot
);
929 wxSnprintf(WinHelpContentsFileName
, 300, _T("%s.cnt"), FileRoot
);
930 wxSnprintf(RefFileName
, 300, _T("%s.ref"), FileRoot
);
932 TexPathList
.EnsureFileAccessible(InputFile
);
935 wxString s
= TexPathList
.FindValidPath(_T("bullet.bmp"));
938 wxString str
= wxFileNameFromPath(s
);
939 bulletFile
= copystring(str
);
943 if (wxFileExists(RefFileName
))
944 ReadTexReferences(RefFileName
);
946 bool success
= false;
948 if (InputFile
&& OutputFile
)
950 if (!wxFileExists(InputFile
))
952 OnError(_T("Cannot open input file!"));
960 buf
.Printf(_T("Working, pass %d...Click CLOSE to abort"), passNumber
);
961 frame
->SetStatusText((wxChar
*)buf
.c_str());
965 OnInform(_T("Reading LaTeX file..."));
966 TexLoadFile(InputFile
);
995 OnInform(_T("*** Aborted by user."));
1003 WriteTexReferences(RefFileName
);
1005 startedSections
= false;
1009 long tim
= wxGetElapsedTime();
1010 buf
.Printf(_T("Finished PASS #%d in %ld seconds.\n"), passNumber
, (long)(tim
/1000.0));
1011 OnInform((wxChar
*)buf
.c_str());
1015 buf
.Printf(_T("Errors encountered during this pass: %lu\n"), errorCount
);
1016 OnInform((wxChar
*)buf
.c_str());
1021 buf
.Printf(_T("Done, %d %s."), passNumber
, (passNumber
> 1) ? _T("passes") : _T("pass"));
1022 frame
->SetStatusText((wxChar
*)buf
.c_str());
1025 buf
.Printf(_T("Done, %d %s."), passNumber
, (passNumber
> 1) ? _T("passes") : _T("pass"));
1026 OnInform((wxChar
*)buf
.c_str());
1029 buf
.Printf(_T("Errors encountered during this pass: %lu\n"), errorCount
);
1030 OnInform((wxChar
*)buf
.c_str());
1040 startedSections
= false;
1043 frame
->SetStatusText(_T("Aborted by user."));
1046 OnInform(_T("Sorry, unsuccessful."));
1051 void OnError(const wxChar
*msg
)
1053 wxString msg_string
= msg
;
1057 wxSTD cerr
<< "Error: " << msg_string
.mb_str() << "\n";
1060 if (isInteractive
&& frame
)
1061 (*frame
->textWindow
) << _T("Error: ") << msg
<< _T("\n");
1065 wxSTD cerr
<< "Error: " << msg_string
.mb_str() << "\n";
1077 void OnInform(const wxChar
*msg
)
1079 wxString msg_string
= msg
;
1081 wxSTD cout
<< msg_string
.mb_str() << "\n";
1084 if (isInteractive
&& frame
)
1085 (*frame
->textWindow
) << msg
<< _T("\n");
1086 /* This whole block of code is just wrong I think. It would behave
1087 completely wrong under anything other than MSW due to the ELSE
1088 with no statement, and the cout calls would fail under MSW, as
1089 the code in this block is compiled if !NO_GUI This code has been
1090 here since v1.1 of this file too. - gt
1094 wxSTD cout << msg_string.mb_str() << "\n";
1109 void OnMacro(int macroId
, int no_args
, bool start
)
1111 switch (convertMode
)
1115 RTFOnMacro(macroId
, no_args
, start
);
1120 XLPOnMacro(macroId
, no_args
, start
);
1125 HTMLOnMacro(macroId
, no_args
, start
);
1131 bool OnArgument(int macroId
, int arg_no
, bool start
)
1133 switch (convertMode
)
1137 return RTFOnArgument(macroId
, arg_no
, start
);
1142 return XLPOnArgument(macroId
, arg_no
, start
);
1147 return HTMLOnArgument(macroId
, arg_no
, start
);
1157 #if defined(__WXMSW__) && !defined(NO_GUI)
1163 wxConnectionBase
*Tex2RTFServer::OnAcceptConnection(const wxString
& topic
)
1165 if (topic
== _T("TEX2RTF"))
1168 ipc_buffer
= new wxChar
[1000];
1170 return new Tex2RTFConnection(ipc_buffer
, 4000);
1180 Tex2RTFConnection::Tex2RTFConnection(wxChar
*buf
, int size
):wxDDEConnection(buf
, size
)
1184 Tex2RTFConnection::~Tex2RTFConnection(void)
1188 bool SplitCommand(wxChar
*data
, wxChar
*firstArg
, wxChar
*secondArg
)
1194 // Find first argument (command name)
1197 if (data
[i
] == ' ' || data
[i
] == 0)
1201 firstArg
[i
] = data
[i
];
1208 // Find second argument
1211 while (data
[i
] != 0)
1213 secondArg
[j
] = data
[i
];
1222 bool Tex2RTFConnection::OnExecute(const wxString
& WXUNUSED(topic
), wxChar
*data
, int WXUNUSED(size
), wxIPCFormat
WXUNUSED(format
))
1224 wxStrcpy(Tex2RTFLastStatus
, _T("OK"));
1226 wxChar firstArg
[50];
1227 wxChar secondArg
[300];
1228 if (SplitCommand(data
, firstArg
, secondArg
))
1230 bool hasArg
= (wxStrlen(secondArg
) > 0);
1231 if (wxStrcmp(firstArg
, _T("INPUT")) == 0 && hasArg
)
1233 if (InputFile
) delete[] InputFile
;
1234 InputFile
= copystring(secondArg
);
1238 wxString str
= wxFileNameFromPath(InputFile
);
1239 wxSnprintf(buf
, sizeof(buf
), _T("Tex2RTF [%s]"), (const wxChar
*) str
);
1240 frame
->SetTitle(buf
);
1243 else if (wxStrcmp(firstArg
, _T("OUTPUT")) == 0 && hasArg
)
1245 if (OutputFile
) delete[] OutputFile
;
1246 OutputFile
= copystring(secondArg
);
1248 else if (wxStrcmp(firstArg
, _T("GO")) == 0)
1250 wxStrcpy(Tex2RTFLastStatus
, _T("WORKING"));
1252 wxStrcpy(Tex2RTFLastStatus
, _T("CONVERSION ERROR"));
1254 wxStrcpy(Tex2RTFLastStatus
, _T("OK"));
1256 else if (wxStrcmp(firstArg
, _T("EXIT")) == 0)
1258 if (frame
) frame
->Close();
1260 else if (wxStrcmp(firstArg
, _T("MINIMIZE")) == 0 || wxStrcmp(firstArg
, _T("ICONIZE")) == 0)
1263 frame
->Iconize(true);
1265 else if (wxStrcmp(firstArg
, _T("SHOW")) == 0 || wxStrcmp(firstArg
, _T("RESTORE")) == 0)
1269 frame
->Iconize(false);
1275 // Try for a setting
1276 wxStrcpy(Tex2RTFLastStatus
, RegisterSetting(firstArg
, secondArg
, false));
1278 if (frame
&& wxStrcmp(firstArg
, _T("conversionMode")) == 0)
1281 wxStrcpy(buf
, _T("In "));
1283 if (winHelp
&& (convertMode
== TEX_RTF
))
1284 wxStrcat(buf
, _T("WinHelp RTF"));
1285 else if (!winHelp
&& (convertMode
== TEX_RTF
))
1286 wxStrcat(buf
, _T("linear RTF"));
1287 else if (convertMode
== TEX_HTML
) wxStrcat(buf
, _T("HTML"));
1288 else if (convertMode
== TEX_XLP
) wxStrcat(buf
, _T("XLP"));
1289 wxStrcat(buf
, _T(" mode."));
1290 frame
->SetStatusText(buf
, 1);
1298 wxChar
*Tex2RTFConnection::OnRequest(const wxString
& WXUNUSED(topic
), const wxString
& WXUNUSED(item
), int *WXUNUSED(size
), wxIPCFormat
WXUNUSED(format
))
1300 return Tex2RTFLastStatus
;
1307 //void wxObject::Dump(wxSTD ostream& str)
1309 // if (GetClassInfo() && GetClassInfo()->GetClassName())
1310 // str << GetClassInfo()->GetClassName();
1312 // str << "unknown object class";