]>
git.saurik.com Git - wxWidgets.git/blob - utils/tex2rtf/src/tex2rtf.cpp
42ca52a52985479e870669542e9bbbe544b44d96
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...
408 wxDebugContext::SetCheckpoint();
414 void ShowOptions(void)
417 sprintf(buf
, "Tex2RTF version %.2f", versionNo
);
419 OnInform("Usage: tex2rtf [input] [output] [switches]\n");
420 OnInform("where valid switches are");
421 OnInform(" -interactive");
422 OnInform(" -bufsize <size in K>");
423 OnInform(" -charset <pc | pca | ansi | mac> (default ansi)");
426 OnInform(" -macros <filename>");
427 OnInform(" -winhelp");
435 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
436 EVT_CLOSE(MyFrame::OnCloseWindow
)
437 EVT_MENU(TEX_QUIT
, MyFrame::OnExit
)
438 EVT_MENU(TEX_GO
, MyFrame::OnGo
)
439 EVT_MENU(TEX_SET_INPUT
, MyFrame::OnSetInput
)
440 EVT_MENU(TEX_SET_OUTPUT
, MyFrame::OnSetOutput
)
441 EVT_MENU(TEX_SAVE_FILE
, MyFrame::OnSaveFile
)
442 EVT_MENU(TEX_VIEW_LATEX
, MyFrame::OnViewLatex
)
443 EVT_MENU(TEX_VIEW_OUTPUT
, MyFrame::OnViewOutput
)
444 EVT_MENU(TEX_VIEW_CUSTOM_MACROS
, MyFrame::OnShowMacros
)
445 EVT_MENU(TEX_LOAD_CUSTOM_MACROS
, MyFrame::OnLoadMacros
)
446 EVT_MENU(TEX_MODE_RTF
, MyFrame::OnModeRTF
)
447 EVT_MENU(TEX_MODE_WINHELP
, MyFrame::OnModeWinHelp
)
448 EVT_MENU(TEX_MODE_HTML
, MyFrame::OnModeHTML
)
449 EVT_MENU(TEX_MODE_XLP
, MyFrame::OnModeXLP
)
450 EVT_MENU(TEX_HELP
, MyFrame::OnHelp
)
451 EVT_MENU(TEX_ABOUT
, MyFrame::OnAbout
)
454 // My frame constructor
455 MyFrame::MyFrame(wxFrame
*frame
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
456 wxFrame(frame
, id
, title
, pos
, size
)
459 void MyFrame::OnCloseWindow(wxCloseEvent
& event
)
461 if (!stopRunning
&& !OkToClose
)
470 delete TheTex2RTFServer
;
477 void MyFrame::OnExit(wxCommandEvent
& event
)
482 void MyFrame::OnGo(wxCommandEvent
& event
)
484 menuBar
->EnableTop(0, FALSE
);
485 menuBar
->EnableTop(1, FALSE
);
486 menuBar
->EnableTop(2, FALSE
);
487 menuBar
->EnableTop(3, FALSE
);
497 menuBar
->EnableTop(0, TRUE
);
498 menuBar
->EnableTop(1, TRUE
);
499 menuBar
->EnableTop(2, TRUE
);
500 menuBar
->EnableTop(3, TRUE
);
503 void MyFrame::OnSetInput(wxCommandEvent
& event
)
505 ChooseInputFile(TRUE
);
508 void MyFrame::OnSetOutput(wxCommandEvent
& event
)
510 ChooseOutputFile(TRUE
);
513 void MyFrame::OnSaveFile(wxCommandEvent
& event
)
515 wxString s
= wxFileSelector("Save text to file", "", "", "txt", "*.txt");
518 textWindow
->SaveFile(s
);
520 sprintf(buf
, "Saved text to %s", (const char*) s
);
521 frame
->SetStatusText(buf
, 0);
525 void MyFrame::OnViewOutput(wxCommandEvent
& event
)
528 if (OutputFile
&& wxFileExists(OutputFile
))
530 textWindow
->LoadFile(OutputFile
);
532 wxString
str(wxFileNameFromPath(OutputFile
));
533 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
534 frame
->SetTitle(buf
);
538 void MyFrame::OnViewLatex(wxCommandEvent
& event
)
541 if (InputFile
&& wxFileExists(InputFile
))
543 textWindow
->LoadFile(InputFile
);
545 wxString
str(wxFileNameFromPath(OutputFile
));
546 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
547 frame
->SetTitle(buf
);
551 void MyFrame::OnLoadMacros(wxCommandEvent
& event
)
554 wxString s
= wxFileSelector("Choose custom macro file", wxPathOnly(MacroFile
), wxFileNameFromPath(MacroFile
), "ini", "*.ini");
555 if (s
!= "" && wxFileExists(s
))
557 MacroFile
= copystring(s
);
558 ReadCustomMacros((char*) (const char*) s
);
563 void MyFrame::OnShowMacros(wxCommandEvent
& event
)
570 void MyFrame::OnModeRTF(wxCommandEvent
& event
)
572 convertMode
= TEX_RTF
;
576 SetStatusText("In linear RTF mode.", 1);
579 void MyFrame::OnModeWinHelp(wxCommandEvent
& event
)
581 convertMode
= TEX_RTF
;
585 SetStatusText("In WinHelp RTF mode.", 1);
588 void MyFrame::OnModeHTML(wxCommandEvent
& event
)
590 convertMode
= TEX_HTML
;
594 SetStatusText("In HTML mode.", 1);
597 void MyFrame::OnModeXLP(wxCommandEvent
& event
)
599 convertMode
= TEX_XLP
;
602 SetStatusText("In XLP mode.", 1);
605 void MyFrame::OnHelp(wxCommandEvent
& event
)
607 HelpInstance
->LoadFile();
608 HelpInstance
->DisplayContents();
611 void MyFrame::OnAbout(wxCommandEvent
& event
)
615 char *platform
= " (32-bit)";
618 char *platform
= " (16-bit)";
623 sprintf(buf
, "Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, HTML and wxHelp Conversion\n\n(c) Julian Smart 1999", versionNo
, platform
);
624 wxMessageBox(buf
, "About Tex2RTF");
627 void ChooseInputFile(bool force
)
629 if (force
|| !InputFile
)
631 wxString s
= wxFileSelector("Choose LaTeX input file", wxPathOnly(InputFile
), wxFileNameFromPath(InputFile
), "tex", "*.tex");
634 // Different file, so clear index entries.
636 ResetContentsLevels(0);
639 InputFile
= copystring(s
);
640 wxString str
= wxFileNameFromPath(InputFile
);
641 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
642 frame
->SetTitle(buf
);
648 void ChooseOutputFile(bool force
)
650 char extensionBuf
[10];
652 strcpy(wildBuf
, "*.");
655 path
= wxPathOnly(OutputFile
);
657 path
= wxPathOnly(InputFile
);
663 strcpy(extensionBuf
, "rtf");
664 strcat(wildBuf
, "rtf");
669 strcpy(extensionBuf
, "xlp");
670 strcat(wildBuf
, "xlp");
675 #if defined(__WXMSW__) && defined(__WIN16__)
676 strcpy(extensionBuf
, "htm");
677 strcat(wildBuf
, "htm");
679 strcpy(extensionBuf
, "html");
680 strcat(wildBuf
, "html");
685 if (force
|| !OutputFile
)
687 wxString s
= wxFileSelector("Choose output file", path
, wxFileNameFromPath(OutputFile
),
688 extensionBuf
, wildBuf
);
690 OutputFile
= copystring(s
);
702 if (!InputFile
|| !OutputFile
)
709 wxString str
= wxFileNameFromPath(InputFile
);
711 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
712 frame
->SetTitle(buf
);
718 // Find extension-less filename
719 strcpy(FileRoot
, OutputFile
);
720 StripExtension(FileRoot
);
722 if (truncateFilenames
&& convertMode
== TEX_HTML
)
724 // Truncate to five characters. This ensures that
725 // we can generate DOS filenames such as thing999. But 1000 files
726 // may not be enough, of course...
727 char* sName
= wxFileNameFromPath( FileRoot
); // this Julian's method is non-destructive reference
730 if(strlen( sName
) > 5)
731 sName
[5] = '\0'; // that should do!
734 sprintf(ContentsName
, "%s.con", FileRoot
);
735 sprintf(TmpContentsName
, "%s.cn1", FileRoot
);
736 sprintf(TmpFrameContentsName
, "%s.frc", FileRoot
);
737 sprintf(WinHelpContentsFileName
, "%s.cnt", FileRoot
);
738 sprintf(RefName
, "%s.ref", FileRoot
);
740 TexPathList
.EnsureFileAccessible(InputFile
);
743 wxString s
= TexPathList
.FindValidPath("bullet.bmp");
746 wxString str
= wxFileNameFromPath(s
);
747 bulletFile
= copystring(str
);
751 if (wxFileExists(RefName
))
752 ReadTexReferences(RefName
);
754 bool success
= FALSE
;
756 if (InputFile
&& OutputFile
)
758 if (!FileExists(InputFile
))
760 OnError("Cannot open input file!");
768 sprintf(buf
, "Working, pass %d...", passNumber
);
769 frame
->SetStatusText(buf
);
773 OnInform("Reading LaTeX file...");
774 TexLoadFile(InputFile
);
797 OnInform("*** Aborted by user.");
804 WriteTexReferences(RefName
);
806 startedSections
= FALSE
;
810 long tim
= wxGetElapsedTime();
811 sprintf(buf
, "Finished in %ld seconds.", (long)(tim
/1000.0));
815 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
816 frame
->SetStatusText(buf
);
819 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
828 startedSections
= FALSE
;
830 OnInform("Sorry, unsuccessful.");
835 void OnError(char *msg
)
838 cerr
<< "Error: " << msg
<< "\n";
842 (*frame
->textWindow
) << "Error: " << msg
<< "\n";
846 cerr
<< "Error: " << msg
<< "\n";
857 void OnInform(char *msg
)
864 (*frame
->textWindow
) << msg
<< "\n";
882 void OnMacro(int macroId
, int no_args
, bool start
)
888 RTFOnMacro(macroId
, no_args
, start
);
893 XLPOnMacro(macroId
, no_args
, start
);
898 HTMLOnMacro(macroId
, no_args
, start
);
904 bool OnArgument(int macroId
, int arg_no
, bool start
)
910 return RTFOnArgument(macroId
, arg_no
, start
);
915 return XLPOnArgument(macroId
, arg_no
, start
);
920 return HTMLOnArgument(macroId
, arg_no
, start
);
930 #if defined(__WXMSW__) && !defined(NO_GUI)
936 wxConnectionBase
*Tex2RTFServer::OnAcceptConnection(const wxString
& topic
)
938 if (topic
== "TEX2RTF")
941 ipc_buffer
= new char[1000];
943 return new Tex2RTFConnection(ipc_buffer
, 4000);
953 Tex2RTFConnection::Tex2RTFConnection(char *buf
, int size
):wxDDEConnection(buf
, size
)
957 Tex2RTFConnection::~Tex2RTFConnection(void)
961 bool SplitCommand(char *data
, char *firstArg
, char *secondArg
)
966 int len
= strlen(data
);
968 // Find first argument (command name)
971 if (data
[i
] == ' ' || data
[i
] == 0)
975 firstArg
[i
] = data
[i
];
982 // Find second argument
987 secondArg
[j
] = data
[i
];
996 bool Tex2RTFConnection::OnExecute(const wxString
& topic
, char *data
, int size
, int format
)
998 strcpy(Tex2RTFLastStatus
, "OK");
1001 char secondArg
[300];
1002 if (SplitCommand(data
, firstArg
, secondArg
))
1004 bool hasArg
= (strlen(secondArg
) > 0);
1005 if (strcmp(firstArg
, "INPUT") == 0 && hasArg
)
1007 if (InputFile
) delete[] InputFile
;
1008 InputFile
= copystring(secondArg
);
1012 wxString str
= wxFileNameFromPath(InputFile
);
1013 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
1014 frame
->SetTitle(buf
);
1017 else if (strcmp(firstArg
, "OUTPUT") == 0 && hasArg
)
1019 if (OutputFile
) delete[] OutputFile
;
1020 OutputFile
= copystring(secondArg
);
1022 else if (strcmp(firstArg
, "GO") == 0)
1024 strcpy(Tex2RTFLastStatus
, "WORKING");
1026 strcpy(Tex2RTFLastStatus
, "CONVERSION ERROR");
1028 strcpy(Tex2RTFLastStatus
, "OK");
1030 else if (strcmp(firstArg
, "EXIT") == 0)
1032 if (frame
&& frame
->OnClose())
1035 else if (strcmp(firstArg
, "MINIMIZE") == 0 || strcmp(firstArg
, "ICONIZE") == 0)
1038 frame
->Iconize(TRUE
);
1040 else if (strcmp(firstArg
, "SHOW") == 0 || strcmp(firstArg
, "RESTORE") == 0)
1044 frame
->Iconize(FALSE
);
1050 // Try for a setting
1051 strcpy(Tex2RTFLastStatus
, RegisterSetting(firstArg
, secondArg
, FALSE
));
1053 if (frame
&& strcmp(firstArg
, "conversionMode") == 0)
1058 if (winHelp
&& (convertMode
== TEX_RTF
))
1059 strcat(buf
, "WinHelp RTF");
1060 else if (!winHelp
&& (convertMode
== TEX_RTF
))
1061 strcat(buf
, "linear RTF");
1062 else if (convertMode
== TEX_HTML
) strcat(buf
, "HTML");
1063 else if (convertMode
== TEX_XLP
) strcat(buf
, "XLP");
1064 strcat(buf
, " mode.");
1065 frame
->SetStatusText(buf
, 1);
1073 char *Tex2RTFConnection::OnRequest(const wxString
& topic
, const wxString
& item
, int *size
, int format
)
1075 return Tex2RTFLastStatus
;