]>
git.saurik.com Git - wxWidgets.git/blob - utils/tex2rtf/src/tex2rtf.cpp
239e310c00a35c7233d318768c87415ba2dd1d97
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"
32 #if defined(NO_GUI) || defined(__UNIX__)
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
;
63 extern char *BigBuffer
;
64 extern char *TexFileRoot
;
65 extern char *TexBibName
; // Bibliography output file name
66 extern char *TexTmpBibName
; // Temporary bibliography output file name
67 extern wxList ColourTable
;
68 extern TexChunk
*TopLevel
;
69 extern char *PageStyle
;
70 extern char *BibliographyStyleString
;
71 extern char *DocumentStyleString
;
72 extern char *bitmapMethod
;
73 extern char *backgroundColourString
;
74 extern char *ContentsNameString
;
75 extern char *AbstractNameString
;
76 extern char *GlossaryNameString
;
77 extern char *ReferencesNameString
;
78 extern char *FiguresNameString
;
79 extern char *TablesNameString
;
80 extern char *FigureNameString
;
81 extern char *TableNameString
;
82 extern char *IndexNameString
;
83 extern char *ChapterNameString
;
84 extern char *SectionNameString
;
85 extern char *SubsectionNameString
;
86 extern char *SubsubsectionNameString
;
87 extern char *UpNameString
;
92 wxHelpController
*HelpInstance
= NULL
;
96 static char *ipc_buffer
= NULL
;
97 static char Tex2RTFLastStatus
[100];
98 Tex2RTFServer
*TheTex2RTFServer
= NULL
;
102 char *bulletFile
= NULL
;
104 FILE *Contents
= NULL
; // Contents page
105 FILE *Chapters
= NULL
; // Chapters (WinHelp RTF) or rest of file (linear RTF)
106 FILE *Sections
= NULL
;
107 FILE *Subsections
= NULL
;
108 FILE *Subsubsections
= NULL
;
110 FILE *WinHelpContentsFile
= NULL
;
112 char *InputFile
= NULL
;
113 char *OutputFile
= NULL
;
114 char *MacroFile
= copystring("tex2rtf.ini");
116 char *FileRoot
= NULL
;
117 char *ContentsName
= NULL
; // Contents page from last time around
118 char *TmpContentsName
= NULL
; // Current contents page
119 char *TmpFrameContentsName
= NULL
; // Current frame contents page
120 char *WinHelpContentsFileName
= NULL
; // WinHelp .cnt file
121 char *RefName
= NULL
; // Reference file name
123 char *RTFCharset
= copystring("ansi");
126 int BufSize
= 100; // Size of buffer in K
132 void ShowOptions(void);
136 #if wxUSE_GUI || !defined(__UNIX__)
137 // wxBase for Unix does not have wxBuffer
140 char *wxBuffer
; // we must init it, otherwise tex2rtf will crash
142 int main(int argc
, char **argv
)
144 wxMenuBar
*menuBar
= NULL
;
145 MyFrame
*frame
= NULL
;
147 // DECLARE_APP(MyApp)
150 // `Main program' equivalent, creating windows and returning main app frame
154 // Use default list of macros defined in tex2any.cc
155 DefineDefaultMacros();
156 AddMacroDef(ltHARDY
, "hardy", 0);
158 FileRoot
= new char[300];
159 ContentsName
= new char[300];
160 TmpContentsName
= new char[300];
161 TmpFrameContentsName
= new char[300];
162 WinHelpContentsFileName
= new char[300];
163 RefName
= new char[300];
165 ColourTable
.DeleteContents(TRUE
);
169 // Read input/output files
172 if (argv
[1][0] != '-')
179 if (argv
[2][0] != '-')
181 OutputFile
= argv
[2];
189 wxBuffer
= new char[1500];
190 // this is done in wxApp, but NO_GUI version doesn't call it :-(
192 if (!InputFile
|| !OutputFile
)
194 cout
<< "Tex2RTF: input or output file is missing.\n";
202 TexPathList
.EnsureFileAccessible(InputFile
);
204 if (!InputFile
|| !OutputFile
)
205 isInteractive
= TRUE
;
208 for (i
= n
; i
< argc
;)
210 if (strcmp(argv
[i
], "-winhelp") == 0)
213 convertMode
= TEX_RTF
;
217 else if (strcmp(argv
[i
], "-interactive") == 0)
220 isInteractive
= TRUE
;
223 else if (strcmp(argv
[i
], "-sync") == 0) // Don't yield
228 else if (strcmp(argv
[i
], "-rtf") == 0)
231 convertMode
= TEX_RTF
;
233 else if (strcmp(argv
[i
], "-html") == 0)
236 convertMode
= TEX_HTML
;
238 else if (strcmp(argv
[i
], "-xlp") == 0)
241 convertMode
= TEX_XLP
;
243 else if (strcmp(argv
[i
], "-twice") == 0)
248 else if (strcmp(argv
[i
], "-macros") == 0)
253 MacroFile
= copystring(argv
[i
]);
257 else if (strcmp(argv
[i
], "-bufsize") == 0)
262 BufSize
= atoi(argv
[i
]);
266 else if (strcmp(argv
[i
], "-charset") == 0)
273 if (strcmp(s
, "ansi") == 0 || strcmp(s
, "pc") == 0 || strcmp(s
, "mac") == 0 ||
274 strcmp(s
, "pca") == 0)
275 RTFCharset
= copystring(s
);
278 OnError("Incorrect argument for -charset");
286 sprintf(buf
, "Invalid switch %s.\n", argv
[i
]);
297 #if defined(__WXMSW__) && !defined(NO_GUI)
299 Tex2RTFLastStatus
[0] = 0; // DDE connection return value
300 TheTex2RTFServer
= new Tex2RTFServer
;
301 TheTex2RTFServer
->Create("TEX2RTF");
304 #if defined(__WXMSW__) && defined(__WIN16__)
305 // Limit to max Windows array size
306 if (BufSize
> 64) BufSize
= 64;
309 TexInitialize(BufSize
);
310 ResetContentsLevels(0);
318 // Create the main frame window
319 frame
= new MyFrame(NULL
, -1, "Tex2RTF", wxPoint(-1, -1), wxSize(400, 300));
320 frame
->CreateStatusBar(2);
323 // TODO: uncomment this when we have tex2rtf.xpm
324 frame
->SetIcon(wxICON(tex2rtf
));
328 sprintf(buf
, "Tex2RTF [%s]", FileNameFromPath(InputFile
));
329 frame
->SetTitle(buf
);
333 wxMenu
*file_menu
= new wxMenu
;
334 file_menu
->Append(TEX_GO
, "&Go", "Run converter");
335 file_menu
->Append(TEX_SET_INPUT
, "Set &Input File", "Set the LaTeX input file");
336 file_menu
->Append(TEX_SET_OUTPUT
, "Set &Output File", "Set the output file");
337 file_menu
->AppendSeparator();
338 file_menu
->Append(TEX_VIEW_LATEX
, "View &LaTeX File", "View the LaTeX input file");
339 file_menu
->Append(TEX_VIEW_OUTPUT
, "View Output &File", "View output file");
340 file_menu
->Append(TEX_SAVE_FILE
, "&Save log file", "Save displayed text into file");
341 file_menu
->AppendSeparator();
342 file_menu
->Append(TEX_QUIT
, "E&xit", "Exit Tex2RTF");
344 wxMenu
*macro_menu
= new wxMenu
;
346 macro_menu
->Append(TEX_LOAD_CUSTOM_MACROS
, "&Load Custom Macros", "Load custom LaTeX macro file");
347 macro_menu
->Append(TEX_VIEW_CUSTOM_MACROS
, "View &Custom Macros", "View custom LaTeX macros");
349 wxMenu
*mode_menu
= new wxMenu
;
351 mode_menu
->Append(TEX_MODE_RTF
, "Output linear &RTF", "Wordprocessor-compatible RTF");
352 mode_menu
->Append(TEX_MODE_WINHELP
, "Output &WinHelp RTF", "WinHelp-compatible RTF");
353 mode_menu
->Append(TEX_MODE_HTML
, "Output &HTML", "HTML World Wide Web hypertext file");
354 mode_menu
->Append(TEX_MODE_XLP
, "Output &XLP", "wxHelp hypertext help file");
356 wxMenu
*help_menu
= new wxMenu
;
358 help_menu
->Append(TEX_HELP
, "&Help", "Tex2RTF Contents Page");
359 help_menu
->Append(TEX_ABOUT
, "&About Tex2RTF", "About Tex2RTF");
361 menuBar
= new wxMenuBar
;
362 menuBar
->Append(file_menu
, "&File");
363 menuBar
->Append(macro_menu
, "&Macros");
364 menuBar
->Append(mode_menu
, "&Conversion Mode");
365 menuBar
->Append(help_menu
, "&Help");
367 frame
->SetMenuBar(menuBar
);
368 frame
->textWindow
= new wxTextCtrl(frame
, -1, "", wxPoint(-1, -1), wxSize(-1, -1), wxTE_READONLY
|wxTE_MULTILINE
);
370 (*frame
->textWindow
) << "Welcome to Julian Smart's LaTeX to RTF converter.\n";
374 HelpInstance
= new wxHelpController();
375 HelpInstance
->Initialize("tex2rtf");
379 * Read macro/initialisation file
384 if ((path
= TexPathList
.FindValidPath(MacroFile
)) != "")
385 ReadCustomMacros((char*) (const char*) path
);
389 if (winHelp
&& (convertMode
== TEX_RTF
))
390 strcat(buf
, "WinHelp RTF");
391 else if (!winHelp
&& (convertMode
== TEX_RTF
))
392 strcat(buf
, "linear RTF");
393 else if (convertMode
== TEX_HTML
) strcat(buf
, "HTML");
394 else if (convertMode
== TEX_XLP
) strcat(buf
, "XLP");
395 strcat(buf
, " mode.");
396 frame
->SetStatusText(buf
, 1);
405 * Read macro/initialisation file
410 if ((path
= TexPathList
.FindValidPath(MacroFile
)) != "")
411 ReadCustomMacros((char*) (const char*) path
);
426 // Return the main frame window
437 wxNode
*node
= CustomMacroList
.First();
440 CustomMacro
*macro
= (CustomMacro
*)node
->Data();
443 node
= CustomMacroList
.First();
445 MacroDefs
.BeginFind();
446 node
= MacroDefs
.Next();
449 TexMacroDef
* def
= (TexMacroDef
*) node
->Data();
451 node
= MacroDefs
.Next();
455 delete TheTex2RTFServer
;
470 delete currentArgData
;
471 currentArgData
= NULL
;
485 delete TexTmpBibName
;
486 TexTmpBibName
= NULL
;
500 delete TmpContentsName
;
501 TmpContentsName
= NULL
;
503 if (TmpFrameContentsName
)
505 delete TmpFrameContentsName
;
506 TmpFrameContentsName
= NULL
;
508 if (WinHelpContentsFileName
)
510 delete WinHelpContentsFileName
;
511 WinHelpContentsFileName
= NULL
;
535 delete [] BibliographyStyleString
;
536 delete [] DocumentStyleString
;
537 delete [] bitmapMethod
;
538 delete [] backgroundColourString
;
539 delete [] ContentsNameString
;
540 delete [] AbstractNameString
;
541 delete [] GlossaryNameString
;
542 delete [] ReferencesNameString
;
543 delete [] FiguresNameString
;
544 delete [] TablesNameString
;
545 delete [] FigureNameString
;
546 delete [] TableNameString
;
547 delete [] IndexNameString
;
548 delete [] ChapterNameString
;
549 delete [] SectionNameString
;
550 delete [] SubsectionNameString
;
551 delete [] SubsubsectionNameString
;
552 delete [] UpNameString
;
554 delete[] winHelpTitle
;
556 // TODO: this simulates zero-memory leaks!
557 // Otherwise there are just too many...
559 wxDebugContext::SetCheckpoint();
565 void ShowOptions(void)
568 sprintf(buf
, "Tex2RTF version %.2f", versionNo
);
570 OnInform("Usage: tex2rtf [input] [output] [switches]\n");
571 OnInform("where valid switches are");
572 OnInform(" -interactive");
573 OnInform(" -bufsize <size in K>");
574 OnInform(" -charset <pc | pca | ansi | mac> (default ansi)");
577 OnInform(" -macros <filename>");
578 OnInform(" -winhelp");
586 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
587 EVT_CLOSE(MyFrame::OnCloseWindow
)
588 EVT_MENU(TEX_QUIT
, MyFrame::OnExit
)
589 EVT_MENU(TEX_GO
, MyFrame::OnGo
)
590 EVT_MENU(TEX_SET_INPUT
, MyFrame::OnSetInput
)
591 EVT_MENU(TEX_SET_OUTPUT
, MyFrame::OnSetOutput
)
592 EVT_MENU(TEX_SAVE_FILE
, MyFrame::OnSaveFile
)
593 EVT_MENU(TEX_VIEW_LATEX
, MyFrame::OnViewLatex
)
594 EVT_MENU(TEX_VIEW_OUTPUT
, MyFrame::OnViewOutput
)
595 EVT_MENU(TEX_VIEW_CUSTOM_MACROS
, MyFrame::OnShowMacros
)
596 EVT_MENU(TEX_LOAD_CUSTOM_MACROS
, MyFrame::OnLoadMacros
)
597 EVT_MENU(TEX_MODE_RTF
, MyFrame::OnModeRTF
)
598 EVT_MENU(TEX_MODE_WINHELP
, MyFrame::OnModeWinHelp
)
599 EVT_MENU(TEX_MODE_HTML
, MyFrame::OnModeHTML
)
600 EVT_MENU(TEX_MODE_XLP
, MyFrame::OnModeXLP
)
601 EVT_MENU(TEX_HELP
, MyFrame::OnHelp
)
602 EVT_MENU(TEX_ABOUT
, MyFrame::OnAbout
)
605 // My frame constructor
606 MyFrame::MyFrame(wxFrame
*frame
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
607 wxFrame(frame
, id
, title
, pos
, size
)
610 void MyFrame::OnCloseWindow(wxCloseEvent
& event
)
612 if (!stopRunning
&& !OkToClose
)
624 void MyFrame::OnExit(wxCommandEvent
& event
)
630 void MyFrame::OnGo(wxCommandEvent
& event
)
633 menuBar
->EnableTop(0, FALSE
);
634 menuBar
->EnableTop(1, FALSE
);
635 menuBar
->EnableTop(2, FALSE
);
636 menuBar
->EnableTop(3, FALSE
);
646 menuBar
->EnableTop(0, TRUE
);
647 menuBar
->EnableTop(1, TRUE
);
648 menuBar
->EnableTop(2, TRUE
);
649 menuBar
->EnableTop(3, TRUE
);
652 void MyFrame::OnSetInput(wxCommandEvent
& event
)
654 ChooseInputFile(TRUE
);
657 void MyFrame::OnSetOutput(wxCommandEvent
& event
)
659 ChooseOutputFile(TRUE
);
662 void MyFrame::OnSaveFile(wxCommandEvent
& event
)
664 wxString s
= wxFileSelector("Save text to file", "", "", "txt", "*.txt");
667 textWindow
->SaveFile(s
);
669 sprintf(buf
, "Saved text to %s", (const char*) s
);
670 frame
->SetStatusText(buf
, 0);
674 void MyFrame::OnViewOutput(wxCommandEvent
& event
)
677 if (OutputFile
&& wxFileExists(OutputFile
))
679 textWindow
->LoadFile(OutputFile
);
681 wxString
str(wxFileNameFromPath(OutputFile
));
682 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
683 frame
->SetTitle(buf
);
687 void MyFrame::OnViewLatex(wxCommandEvent
& event
)
690 if (InputFile
&& wxFileExists(InputFile
))
692 textWindow
->LoadFile(InputFile
);
694 wxString
str(wxFileNameFromPath(OutputFile
));
695 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
696 frame
->SetTitle(buf
);
700 void MyFrame::OnLoadMacros(wxCommandEvent
& event
)
703 wxString s
= wxFileSelector("Choose custom macro file", wxPathOnly(MacroFile
), wxFileNameFromPath(MacroFile
), "ini", "*.ini");
704 if (s
!= "" && wxFileExists(s
))
706 MacroFile
= copystring(s
);
707 ReadCustomMacros((char*) (const char*) s
);
712 void MyFrame::OnShowMacros(wxCommandEvent
& event
)
719 void MyFrame::OnModeRTF(wxCommandEvent
& event
)
721 convertMode
= TEX_RTF
;
725 SetStatusText("In linear RTF mode.", 1);
728 void MyFrame::OnModeWinHelp(wxCommandEvent
& event
)
730 convertMode
= TEX_RTF
;
734 SetStatusText("In WinHelp RTF mode.", 1);
737 void MyFrame::OnModeHTML(wxCommandEvent
& event
)
739 convertMode
= TEX_HTML
;
743 SetStatusText("In HTML mode.", 1);
746 void MyFrame::OnModeXLP(wxCommandEvent
& event
)
748 convertMode
= TEX_XLP
;
751 SetStatusText("In XLP mode.", 1);
754 void MyFrame::OnHelp(wxCommandEvent
& event
)
757 HelpInstance
->LoadFile();
758 HelpInstance
->DisplayContents();
762 void MyFrame::OnAbout(wxCommandEvent
& event
)
766 char *platform
= " (32-bit)";
769 char *platform
= " (16-bit)";
774 sprintf(buf
, "Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, HTML and wxHelp Conversion\n\n(c) Julian Smart 1999", versionNo
, platform
);
775 wxMessageBox(buf
, "About Tex2RTF");
778 void ChooseInputFile(bool force
)
780 if (force
|| !InputFile
)
782 wxString s
= wxFileSelector("Choose LaTeX input file", wxPathOnly(InputFile
), wxFileNameFromPath(InputFile
), "tex", "*.tex");
785 // Different file, so clear index entries.
787 ResetContentsLevels(0);
790 InputFile
= copystring(s
);
791 wxString str
= wxFileNameFromPath(InputFile
);
792 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
793 frame
->SetTitle(buf
);
799 void ChooseOutputFile(bool force
)
801 char extensionBuf
[10];
803 strcpy(wildBuf
, "*.");
806 path
= wxPathOnly(OutputFile
);
808 path
= wxPathOnly(InputFile
);
814 strcpy(extensionBuf
, "rtf");
815 strcat(wildBuf
, "rtf");
820 strcpy(extensionBuf
, "xlp");
821 strcat(wildBuf
, "xlp");
826 #if defined(__WXMSW__) && defined(__WIN16__)
827 strcpy(extensionBuf
, "htm");
828 strcat(wildBuf
, "htm");
830 strcpy(extensionBuf
, "html");
831 strcat(wildBuf
, "html");
836 if (force
|| !OutputFile
)
838 wxString s
= wxFileSelector("Choose output file", path
, wxFileNameFromPath(OutputFile
),
839 extensionBuf
, wildBuf
);
841 OutputFile
= copystring(s
);
853 if (!InputFile
|| !OutputFile
)
860 wxString str
= wxFileNameFromPath(InputFile
);
862 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
863 frame
->SetTitle(buf
);
869 // Find extension-less filename
870 strcpy(FileRoot
, OutputFile
);
871 StripExtension(FileRoot
);
873 if (truncateFilenames
&& convertMode
== TEX_HTML
)
875 // Truncate to five characters. This ensures that
876 // we can generate DOS filenames such as thing999. But 1000 files
877 // may not be enough, of course...
878 char* sName
= wxFileNameFromPath( FileRoot
); // this Julian's method is non-destructive reference
881 if(strlen( sName
) > 5)
882 sName
[5] = '\0'; // that should do!
885 sprintf(ContentsName
, "%s.con", FileRoot
);
886 sprintf(TmpContentsName
, "%s.cn1", FileRoot
);
887 sprintf(TmpFrameContentsName
, "%s.frc", FileRoot
);
888 sprintf(WinHelpContentsFileName
, "%s.cnt", FileRoot
);
889 sprintf(RefName
, "%s.ref", FileRoot
);
891 TexPathList
.EnsureFileAccessible(InputFile
);
894 wxString s
= TexPathList
.FindValidPath("bullet.bmp");
897 wxString str
= wxFileNameFromPath(s
);
898 bulletFile
= copystring(str
);
902 if (wxFileExists(RefName
))
903 ReadTexReferences(RefName
);
905 bool success
= FALSE
;
907 if (InputFile
&& OutputFile
)
909 if (!FileExists(InputFile
))
911 OnError("Cannot open input file!");
919 sprintf(buf
, "Working, pass %d...", passNumber
);
920 frame
->SetStatusText(buf
);
924 OnInform("Reading LaTeX file...");
925 TexLoadFile(InputFile
);
948 OnInform("*** Aborted by user.");
955 WriteTexReferences(RefName
);
957 startedSections
= FALSE
;
961 long tim
= wxGetElapsedTime();
962 sprintf(buf
, "Finished PASS #%d in %ld seconds.\n", passNumber
, (long)(tim
/1000.0));
966 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
967 frame
->SetStatusText(buf
);
970 sprintf(buf
, "Done, %d %s.", passNumber
, (passNumber
> 1) ? "passes" : "pass");
979 startedSections
= FALSE
;
981 OnInform("Sorry, unsuccessful.");
986 void OnError(char *msg
)
989 cerr
<< "Error: " << msg
<< "\n";
992 if (isInteractive
&& frame
)
993 (*frame
->textWindow
) << "Error: " << msg
<< "\n";
997 cerr
<< "Error: " << msg
<< "\n";
1008 void OnInform(char *msg
)
1011 cout
<< msg
<< "\n";
1014 if (isInteractive
&& frame
)
1015 (*frame
->textWindow
) << msg
<< "\n";
1019 cout
<< msg
<< "\n";
1033 void OnMacro(int macroId
, int no_args
, bool start
)
1035 switch (convertMode
)
1039 RTFOnMacro(macroId
, no_args
, start
);
1044 XLPOnMacro(macroId
, no_args
, start
);
1049 HTMLOnMacro(macroId
, no_args
, start
);
1055 bool OnArgument(int macroId
, int arg_no
, bool start
)
1057 switch (convertMode
)
1061 return RTFOnArgument(macroId
, arg_no
, start
);
1066 return XLPOnArgument(macroId
, arg_no
, start
);
1071 return HTMLOnArgument(macroId
, arg_no
, start
);
1081 #if defined(__WXMSW__) && !defined(NO_GUI)
1087 wxConnectionBase
*Tex2RTFServer::OnAcceptConnection(const wxString
& topic
)
1089 if (topic
== "TEX2RTF")
1092 ipc_buffer
= new char[1000];
1094 return new Tex2RTFConnection(ipc_buffer
, 4000);
1104 Tex2RTFConnection::Tex2RTFConnection(char *buf
, int size
):wxDDEConnection(buf
, size
)
1108 Tex2RTFConnection::~Tex2RTFConnection(void)
1112 bool SplitCommand(char *data
, char *firstArg
, char *secondArg
)
1117 int len
= strlen(data
);
1119 // Find first argument (command name)
1122 if (data
[i
] == ' ' || data
[i
] == 0)
1126 firstArg
[i
] = data
[i
];
1133 // Find second argument
1136 while (data
[i
] != 0)
1138 secondArg
[j
] = data
[i
];
1147 bool Tex2RTFConnection::OnExecute(const wxString
& topic
, char *data
, int size
, int format
)
1149 strcpy(Tex2RTFLastStatus
, "OK");
1152 char secondArg
[300];
1153 if (SplitCommand(data
, firstArg
, secondArg
))
1155 bool hasArg
= (strlen(secondArg
) > 0);
1156 if (strcmp(firstArg
, "INPUT") == 0 && hasArg
)
1158 if (InputFile
) delete[] InputFile
;
1159 InputFile
= copystring(secondArg
);
1163 wxString str
= wxFileNameFromPath(InputFile
);
1164 sprintf(buf
, "Tex2RTF [%s]", (const char*) str
);
1165 frame
->SetTitle(buf
);
1168 else if (strcmp(firstArg
, "OUTPUT") == 0 && hasArg
)
1170 if (OutputFile
) delete[] OutputFile
;
1171 OutputFile
= copystring(secondArg
);
1173 else if (strcmp(firstArg
, "GO") == 0)
1175 strcpy(Tex2RTFLastStatus
, "WORKING");
1177 strcpy(Tex2RTFLastStatus
, "CONVERSION ERROR");
1179 strcpy(Tex2RTFLastStatus
, "OK");
1181 else if (strcmp(firstArg
, "EXIT") == 0)
1183 if (frame
) frame
->Close();
1185 else if (strcmp(firstArg
, "MINIMIZE") == 0 || strcmp(firstArg
, "ICONIZE") == 0)
1188 frame
->Iconize(TRUE
);
1190 else if (strcmp(firstArg
, "SHOW") == 0 || strcmp(firstArg
, "RESTORE") == 0)
1194 frame
->Iconize(FALSE
);
1200 // Try for a setting
1201 strcpy(Tex2RTFLastStatus
, RegisterSetting(firstArg
, secondArg
, FALSE
));
1203 if (frame
&& strcmp(firstArg
, "conversionMode") == 0)
1208 if (winHelp
&& (convertMode
== TEX_RTF
))
1209 strcat(buf
, "WinHelp RTF");
1210 else if (!winHelp
&& (convertMode
== TEX_RTF
))
1211 strcat(buf
, "linear RTF");
1212 else if (convertMode
== TEX_HTML
) strcat(buf
, "HTML");
1213 else if (convertMode
== TEX_XLP
) strcat(buf
, "XLP");
1214 strcat(buf
, " mode.");
1215 frame
->SetStatusText(buf
, 1);
1223 char *Tex2RTFConnection::OnRequest(const wxString
& topic
, const wxString
& item
, int *size
, int format
)
1225 return Tex2RTFLastStatus
;
1232 //void wxObject::Dump(ostream& str)
1234 // if (GetClassInfo() && GetClassInfo()->GetClassName())
1235 // str << GetClassInfo()->GetClassName();
1237 // str << "unknown object class";