]>
git.saurik.com Git - wxWidgets.git/blob - utils/tex2rtf/src/tex2rtf.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Converts Latex to linear/WinHelp RTF, HTML, wxHelp.
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
48 #if (defined(__WXGTK__) || defined(__WXMOTIF__)) && !defined(NO_GUI)
49 #include "tex2rtf.xpm"
52 const float versionNo
= 2.0;
54 TexChunk
*currentMember
= NULL
;
55 bool startedSections
= FALSE
;
56 char *contentsString
= NULL
;
57 bool suppressNameDecoration
= FALSE
;
58 bool OkToClose
= TRUE
;
62 wxHelpController
*HelpInstance
= NULL
;
65 static char *ipc_buffer
= NULL
;
66 static char Tex2RTFLastStatus
[100];
67 Tex2RTFServer
*TheTex2RTFServer
= NULL
;
71 char *bulletFile
= NULL
;
73 FILE *Contents
= NULL
; // Contents page
74 FILE *Chapters
= NULL
; // Chapters (WinHelp RTF) or rest of file (linear RTF)
75 FILE *Sections
= NULL
;
76 FILE *Subsections
= NULL
;
77 FILE *Subsubsections
= NULL
;
79 FILE *WinHelpContentsFile
= NULL
;
81 char *InputFile
= NULL
;
82 char *OutputFile
= NULL
;
83 char *MacroFile
= copystring("tex2rtf.ini");
85 char *FileRoot
= NULL
;
86 char *ContentsName
= NULL
; // Contents page from last time around
87 char *TmpContentsName
= NULL
; // Current contents page
88 char *TmpFrameContentsName
= NULL
; // Current frame contents page
89 char *WinHelpContentsFileName
= NULL
; // WinHelp .cnt file
90 char *RefName
= NULL
; // Reference file name
92 char *RTFCharset
= copystring("ansi");
95 int BufSize
= 100; // Size of buffer in K
101 void ShowOptions(void);
104 int main(int argc
, char **argv
)
106 wxMenuBar
*menuBar
= NULL
;
107 MyFrame
*frame
= NULL
;
109 // DECLARE_APP(MyApp)
112 // `Main program' equivalent, creating windows and returning main app frame
116 // Use default list of macros defined in tex2any.cc
117 DefineDefaultMacros();
118 AddMacroDef(ltHARDY
, "hardy", 0);
120 FileRoot
= new char[300];
121 ContentsName
= new char[300];
122 TmpContentsName
= new char[300];
123 TmpFrameContentsName
= new char[300];
124 WinHelpContentsFileName
= new char[300];
125 RefName
= new char[300];
129 // Read input/output files
132 if (argv
[1][0] != '-')
139 if (argv
[2][0] != '-')
141 OutputFile
= argv
[2];
149 if (!InputFile
|| !OutputFile
)
151 cout
<< "Tex2RTF: input or output file is missing.\n";
158 TexPathList
.EnsureFileAccessible(InputFile
);
160 if (!InputFile
|| !OutputFile
)
161 isInteractive
= TRUE
;
163 for (int i
= n
; i
< argc
;)
165 if (strcmp(argv
[i
], "-winhelp") == 0)
168 convertMode
= TEX_RTF
;
172 else if (strcmp(argv
[i
], "-interactive") == 0)
175 isInteractive
= TRUE
;
178 else if (strcmp(argv
[i
], "-sync") == 0) // Don't yield
183 else if (strcmp(argv
[i
], "-rtf") == 0)
186 convertMode
= TEX_RTF
;
188 else if (strcmp(argv
[i
], "-html") == 0)
191 convertMode
= TEX_HTML
;
193 else if (strcmp(argv
[i
], "-xlp") == 0)
196 convertMode
= TEX_XLP
;
198 else if (strcmp(argv
[i
], "-twice") == 0)
203 else if (strcmp(argv
[i
], "-macros") == 0)
208 MacroFile
= copystring(argv
[i
]);
212 else if (strcmp(argv
[i
], "-bufsize") == 0)
217 BufSize
= atoi(argv
[i
]);
221 else if (strcmp(argv
[i
], "-charset") == 0)
228 if (strcmp(s
, "ansi") == 0 || strcmp(s
, "pc") == 0 || strcmp(s
, "mac") == 0 ||
229 strcmp(s
, "pca") == 0)
230 RTFCharset
= copystring(s
);
233 OnError("Incorrect argument for -charset");
240 sprintf(buf
, "Invalid switch %s.\n", argv
[i
]);
250 #if defined(__WXMSW__) && !defined(NO_GUI)
252 Tex2RTFLastStatus
[0] = 0; // DDE connection return value
253 TheTex2RTFServer
= new Tex2RTFServer
;
254 TheTex2RTFServer
->Create("TEX2RTF");
257 #if defined(__WXMSW__) && defined(__WIN16__)
258 // Limit to max Windows array size
259 if (BufSize
> 64) BufSize
= 64;
262 TexInitialize(BufSize
);
263 ResetContentsLevels(0);
271 // Create the main frame window
272 frame
= new MyFrame(NULL
, -1, "Tex2RTF", wxPoint(-1, -1), wxSize(400, 300));
273 frame
->CreateStatusBar(2);
276 // TODO: uncomment this when we have tex2rtf.xpm
277 frame
->SetIcon(wxICON(tex2rtf
));
281 sprintf(buf
, "Tex2RTF [%s]", FileNameFromPath(InputFile
));
282 frame
->SetTitle(buf
);
286 wxMenu
*file_menu
= new wxMenu
;
287 file_menu
->Append(TEX_GO
, "&Go", "Run converter");
288 file_menu
->Append(TEX_SET_INPUT
, "Set &Input File", "Set the LaTeX input file");
289 file_menu
->Append(TEX_SET_OUTPUT
, "Set &Output File", "Set the output file");
290 file_menu
->AppendSeparator();
291 file_menu
->Append(TEX_VIEW_LATEX
, "View &LaTeX File", "View the LaTeX input file");
292 file_menu
->Append(TEX_VIEW_OUTPUT
, "View Output &File", "View output file");
293 file_menu
->Append(TEX_SAVE_FILE
, "&Save log file", "Save displayed text into file");
294 file_menu
->AppendSeparator();
295 file_menu
->Append(TEX_QUIT
, "E&xit", "Exit Tex2RTF");
297 wxMenu
*macro_menu
= new wxMenu
;
299 macro_menu
->Append(TEX_LOAD_CUSTOM_MACROS
, "&Load Custom Macros", "Load custom LaTeX macro file");
300 macro_menu
->Append(TEX_VIEW_CUSTOM_MACROS
, "View &Custom Macros", "View custom LaTeX macros");
302 wxMenu
*mode_menu
= new wxMenu
;
304 mode_menu
->Append(TEX_MODE_RTF
, "Output linear &RTF", "Wordprocessor-compatible RTF");
305 mode_menu
->Append(TEX_MODE_WINHELP
, "Output &WinHelp RTF", "WinHelp-compatible RTF");
306 mode_menu
->Append(TEX_MODE_HTML
, "Output &HTML", "HTML World Wide Web hypertext file");
307 mode_menu
->Append(TEX_MODE_XLP
, "Output &XLP", "wxHelp hypertext help file");
309 wxMenu
*help_menu
= new wxMenu
;
311 help_menu
->Append(TEX_HELP
, "&Help", "Tex2RTF Contents Page");
312 help_menu
->Append(TEX_ABOUT
, "&About Tex2RTF", "About Tex2RTF");
314 menuBar
= new wxMenuBar
;
315 menuBar
->Append(file_menu
, "&File");
316 menuBar
->Append(macro_menu
, "&Macros");
317 menuBar
->Append(mode_menu
, "&Conversion Mode");
318 menuBar
->Append(help_menu
, "&Help");
320 frame
->SetMenuBar(menuBar
);
321 frame
->textWindow
= new wxTextCtrl(frame
, -1, "", wxPoint(-1, -1), wxSize(-1, -1), wxTE_READONLY
|wxTE_MULTILINE
);
323 (*frame
->textWindow
) << "Welcome to Julian Smart's LaTeX to RTF converter.\n";
326 HelpInstance
= new wxHelpController();
327 HelpInstance
->Initialize("tex2rtf");
330 * Read macro/initialisation file
335 if ((path
= TexPathList
.FindValidPath(MacroFile
)) != "")
336 ReadCustomMacros((char*) (const char*) path
);
340 if (winHelp
&& (convertMode
== TEX_RTF
))
341 strcat(buf
, "WinHelp RTF");
342 else if (!winHelp
&& (convertMode
== TEX_RTF
))
343 strcat(buf
, "linear RTF");
344 else if (convertMode
== TEX_HTML
) strcat(buf
, "HTML");
345 else if (convertMode
== TEX_XLP
) strcat(buf
, "XLP");
346 strcat(buf
, " mode.");
347 frame
->SetStatusText(buf
, 1);
356 * Read macro/initialisation file
361 if ((path
= TexPathList
.FindValidPath(MacroFile
)) != "")
362 ReadCustomMacros((char*) (const char*) path
);
374 // Return the main frame window
383 wxNode
*node
= CustomMacroList
.First();
386 CustomMacro
*macro
= (CustomMacro
*)node
->Data();
389 node
= CustomMacroList
.First();
391 MacroDefs
.BeginFind();
392 node
= MacroDefs
.Next();
395 TexMacroDef
* def
= (TexMacroDef
*) node
->Data();
397 node
= MacroDefs
.Next();
401 delete TheTex2RTFServer
;
405 // TODO: this simulates zero-memory leaks!
406 // Otherwise there are just too many...
407 wxDebugContext::SetCheckpoint();
412 void ShowOptions(void)
415 sprintf(buf
, "Tex2RTF version %.2f", versionNo
);
417 OnInform("Usage: tex2rtf [input] [output] [switches]\n");
418 OnInform("where valid switches are");
419 OnInform(" -interactive");
420 OnInform(" -bufsize <size in K>");
421 OnInform(" -charset <pc | pca | ansi | mac> (default ansi)");
424 OnInform(" -macros <filename>");
425 OnInform(" -winhelp");
433 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
434 EVT_CLOSE(MyFrame::OnCloseWindow
)
435 EVT_MENU(TEX_QUIT
, MyFrame::OnExit
)
436 EVT_MENU(TEX_GO
, MyFrame::OnGo
)
437 EVT_MENU(TEX_SET_INPUT
, MyFrame::OnSetInput
)
438 EVT_MENU(TEX_SET_OUTPUT
, MyFrame::OnSetOutput
)
439 EVT_MENU(TEX_SAVE_FILE
, MyFrame::OnSaveFile
)
440 EVT_MENU(TEX_VIEW_LATEX
, MyFrame::OnViewLatex
)
441 EVT_MENU(TEX_VIEW_OUTPUT
, MyFrame::OnViewOutput
)
442 EVT_MENU(TEX_VIEW_CUSTOM_MACROS
, MyFrame::OnShowMacros
)
443 EVT_MENU(TEX_LOAD_CUSTOM_MACROS
, MyFrame::OnLoadMacros
)
444 EVT_MENU(TEX_MODE_RTF
, MyFrame::OnModeRTF
)
445 EVT_MENU(TEX_MODE_WINHELP
, MyFrame::OnModeWinHelp
)
446 EVT_MENU(TEX_MODE_HTML
, MyFrame::OnModeHTML
)
447 EVT_MENU(TEX_MODE_XLP
, MyFrame::OnModeXLP
)
448 EVT_MENU(TEX_HELP
, MyFrame::OnHelp
)
449 EVT_MENU(TEX_ABOUT
, MyFrame::OnAbout
)
452 // My frame constructor
453 MyFrame::MyFrame(wxFrame
*frame
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
454 wxFrame(frame
, id
, title
, pos
, size
)
457 void MyFrame::OnCloseWindow(wxCloseEvent
& event
)
459 if (!stopRunning
&& !OkToClose
)
468 delete TheTex2RTFServer
;
475 void MyFrame::OnExit(wxCommandEvent
& event
)
480 void MyFrame::OnGo(wxCommandEvent
& event
)
482 menuBar
->EnableTop(0, FALSE
);
483 menuBar
->EnableTop(1, FALSE
);
484 menuBar
->EnableTop(2, FALSE
);
485 menuBar
->EnableTop(3, FALSE
);
495 menuBar
->EnableTop(0, TRUE
);
496 menuBar
->EnableTop(1, TRUE
);
497 menuBar
->EnableTop(2, TRUE
);
498 menuBar
->EnableTop(3, TRUE
);
501 void MyFrame::OnSetInput(wxCommandEvent
& event
)
503 ChooseInputFile(TRUE
);
506 void MyFrame::OnSetOutput(wxCommandEvent
& event
)
508 ChooseOutputFile(TRUE
);
511 void MyFrame::OnSaveFile(wxCommandEvent
& event
)
513 wxString s
= wxFileSelector("Save text to file", "", "", "txt", "*.txt");
516 textWindow
->SaveFile(s
);
518 sprintf(buf
, "Saved text to %s", (const char*) s
);
519 frame
->SetStatusText(buf
, 0);
523 void MyFrame::OnViewOutput(wxCommandEvent
& event
)
526 if (OutputFile
&& wxFileExists(OutputFile
))
528 textWindow
->LoadFile(OutputFile
);
530 wxString
str(wxFileNameFromPath(OutputFile
));
531 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
532 frame
->SetTitle(buf
);
536 void MyFrame::OnViewLatex(wxCommandEvent
& event
)
539 if (InputFile
&& wxFileExists(InputFile
))
541 textWindow
->LoadFile(InputFile
);
543 wxString
str(wxFileNameFromPath(OutputFile
));
544 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
545 frame
->SetTitle(buf
);
549 void MyFrame::OnLoadMacros(wxCommandEvent
& event
)
552 wxString s
= wxFileSelector("Choose custom macro file", wxPathOnly(MacroFile
), wxFileNameFromPath(MacroFile
), "ini", "*.ini");
553 if (s
!= "" && wxFileExists(s
))
555 MacroFile
= copystring(s
);
556 ReadCustomMacros((char*) (const char*) s
);
561 void MyFrame::OnShowMacros(wxCommandEvent
& event
)
568 void MyFrame::OnModeRTF(wxCommandEvent
& event
)
570 convertMode
= TEX_RTF
;
574 SetStatusText("In linear RTF mode.", 1);
577 void MyFrame::OnModeWinHelp(wxCommandEvent
& event
)
579 convertMode
= TEX_RTF
;
583 SetStatusText("In WinHelp RTF mode.", 1);
586 void MyFrame::OnModeHTML(wxCommandEvent
& event
)
588 convertMode
= TEX_HTML
;
592 SetStatusText("In HTML mode.", 1);
595 void MyFrame::OnModeXLP(wxCommandEvent
& event
)
597 convertMode
= TEX_XLP
;
600 SetStatusText("In XLP mode.", 1);
603 void MyFrame::OnHelp(wxCommandEvent
& event
)
605 HelpInstance
->LoadFile();
606 HelpInstance
->DisplayContents();
609 void MyFrame::OnAbout(wxCommandEvent
& event
)
613 char *platform
= " (32-bit)";
616 char *platform
= " (16-bit)";
621 sprintf(buf
, "Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, HTML and wxHelp Conversion\n\n(c) Julian Smart 1999", versionNo
, platform
);
622 wxMessageBox(buf
, "About Tex2RTF");
625 void ChooseInputFile(bool force
)
627 if (force
|| !InputFile
)
629 wxString s
= wxFileSelector("Choose LaTeX input file", wxPathOnly(InputFile
), wxFileNameFromPath(InputFile
), "tex", "*.tex");
632 // Different file, so clear index entries.
634 ResetContentsLevels(0);
637 InputFile
= copystring(s
);
638 wxString str
= wxFileNameFromPath(InputFile
);
639 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
640 frame
->SetTitle(buf
);
646 void ChooseOutputFile(bool force
)
648 char extensionBuf
[10];
650 strcpy(wildBuf
, "*.");
653 path
= wxPathOnly(OutputFile
);
655 path
= wxPathOnly(InputFile
);
661 strcpy(extensionBuf
, "rtf");
662 strcat(wildBuf
, "rtf");
667 strcpy(extensionBuf
, "xlp");
668 strcat(wildBuf
, "xlp");
673 #if defined(__WXMSW__) && defined(__WIN16__)
674 strcpy(extensionBuf
, "htm");
675 strcat(wildBuf
, "htm");
677 strcpy(extensionBuf
, "html");
678 strcat(wildBuf
, "html");
683 if (force
|| !OutputFile
)
685 wxString s
= wxFileSelector("Choose output file", path
, wxFileNameFromPath(OutputFile
),
686 extensionBuf
, wildBuf
);
688 OutputFile
= copystring(s
);
700 if (!InputFile
|| !OutputFile
)
707 wxString str
= wxFileNameFromPath(InputFile
);
709 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
710 frame
->SetTitle(buf
);
716 // Find extension-less filename
717 strcpy(FileRoot
, OutputFile
);
718 StripExtension(FileRoot
);
720 if (truncateFilenames
&& convertMode
== TEX_HTML
)
722 // Truncate to five characters. This ensures that
723 // we can generate DOS filenames such as thing999. But 1000 files
724 // may not be enough, of course...
725 char* sName
= wxFileNameFromPath( FileRoot
); // this Julian's method is non-destructive reference
728 if(strlen( sName
) > 5)
729 sName
[5] = '\0'; // that should do!
732 sprintf(ContentsName
, "%s.con", FileRoot
);
733 sprintf(TmpContentsName
, "%s.cn1", FileRoot
);
734 sprintf(TmpFrameContentsName
, "%s.frc", FileRoot
);
735 sprintf(WinHelpContentsFileName
, "%s.cnt", FileRoot
);
736 sprintf(RefName
, "%s.ref", FileRoot
);
738 TexPathList
.EnsureFileAccessible(InputFile
);
741 wxString s
= TexPathList
.FindValidPath("bullet.bmp");
744 wxString str
= wxFileNameFromPath(s
);
745 bulletFile
= copystring(str
);
749 if (wxFileExists(RefName
))
750 ReadTexReferences(RefName
);
752 bool success
= FALSE
;
754 if (InputFile
&& OutputFile
)
756 if (!FileExists(InputFile
))
758 OnError("Cannot open input file!");
766 sprintf(buf
, "Working, pass %d...", passNumber
);
767 frame
->SetStatusText(buf
);
771 OnInform("Reading LaTeX file...");
772 TexLoadFile(InputFile
);
795 OnInform("*** Aborted by user.");
802 WriteTexReferences(RefName
);
804 startedSections
= FALSE
;
808 long tim
= wxGetElapsedTime();
809 sprintf(buf
, "Finished in %ld seconds.", (long)(tim
/1000.0));
813 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
814 frame
->SetStatusText(buf
);
817 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
826 startedSections
= FALSE
;
828 OnInform("Sorry, unsuccessful.");
833 void OnError(char *msg
)
836 cerr
<< "Error: " << msg
<< "\n";
840 (*frame
->textWindow
) << "Error: " << msg
<< "\n";
844 cerr
<< "Error: " << msg
<< "\n";
855 void OnInform(char *msg
)
862 (*frame
->textWindow
) << msg
<< "\n";
880 void OnMacro(int macroId
, int no_args
, bool start
)
886 RTFOnMacro(macroId
, no_args
, start
);
891 XLPOnMacro(macroId
, no_args
, start
);
896 HTMLOnMacro(macroId
, no_args
, start
);
902 bool OnArgument(int macroId
, int arg_no
, bool start
)
908 return RTFOnArgument(macroId
, arg_no
, start
);
913 return XLPOnArgument(macroId
, arg_no
, start
);
918 return HTMLOnArgument(macroId
, arg_no
, start
);
928 #if defined(__WXMSW__) && !defined(NO_GUI)
934 wxConnectionBase
*Tex2RTFServer::OnAcceptConnection(const wxString
& topic
)
936 if (topic
== "TEX2RTF")
939 ipc_buffer
= new char[1000];
941 return new Tex2RTFConnection(ipc_buffer
, 4000);
951 Tex2RTFConnection::Tex2RTFConnection(char *buf
, int size
):wxDDEConnection(buf
, size
)
955 Tex2RTFConnection::~Tex2RTFConnection(void)
959 bool SplitCommand(char *data
, char *firstArg
, char *secondArg
)
964 int len
= strlen(data
);
966 // Find first argument (command name)
969 if (data
[i
] == ' ' || data
[i
] == 0)
973 firstArg
[i
] = data
[i
];
980 // Find second argument
985 secondArg
[j
] = data
[i
];
994 bool Tex2RTFConnection::OnExecute(const wxString
& topic
, char *data
, int size
, int format
)
996 strcpy(Tex2RTFLastStatus
, "OK");
1000 if (SplitCommand(data
, firstArg
, secondArg
))
1002 bool hasArg
= (strlen(secondArg
) > 0);
1003 if (strcmp(firstArg
, "INPUT") == 0 && hasArg
)
1005 if (InputFile
) delete[] InputFile
;
1006 InputFile
= copystring(secondArg
);
1010 wxString str
= wxFileNameFromPath(InputFile
);
1011 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
1012 frame
->SetTitle(buf
);
1015 else if (strcmp(firstArg
, "OUTPUT") == 0 && hasArg
)
1017 if (OutputFile
) delete[] OutputFile
;
1018 OutputFile
= copystring(secondArg
);
1020 else if (strcmp(firstArg
, "GO") == 0)
1022 strcpy(Tex2RTFLastStatus
, "WORKING");
1024 strcpy(Tex2RTFLastStatus
, "CONVERSION ERROR");
1026 strcpy(Tex2RTFLastStatus
, "OK");
1028 else if (strcmp(firstArg
, "EXIT") == 0)
1030 if (frame
&& frame
->OnClose())
1033 else if (strcmp(firstArg
, "MINIMIZE") == 0 || strcmp(firstArg
, "ICONIZE") == 0)
1036 frame
->Iconize(TRUE
);
1038 else if (strcmp(firstArg
, "SHOW") == 0 || strcmp(firstArg
, "RESTORE") == 0)
1042 frame
->Iconize(FALSE
);
1048 // Try for a setting
1049 strcpy(Tex2RTFLastStatus
, RegisterSetting(firstArg
, secondArg
, FALSE
));
1051 if (frame
&& strcmp(firstArg
, "conversionMode") == 0)
1056 if (winHelp
&& (convertMode
== TEX_RTF
))
1057 strcat(buf
, "WinHelp RTF");
1058 else if (!winHelp
&& (convertMode
== TEX_RTF
))
1059 strcat(buf
, "linear RTF");
1060 else if (convertMode
== TEX_HTML
) strcat(buf
, "HTML");
1061 else if (convertMode
== TEX_XLP
) strcat(buf
, "XLP");
1062 strcat(buf
, " mode.");
1063 frame
->SetStatusText(buf
, 1);
1071 char *Tex2RTFConnection::OnRequest(const wxString
& topic
, const wxString
& item
, int *size
, int format
)
1073 return Tex2RTFLastStatus
;