Added files for creating independent Tex2RTF distributions

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-08-07 09:56:23 +00:00
parent 5991550a13
commit 56d349220f
21 changed files with 1571 additions and 29 deletions

View File

@@ -219,6 +219,10 @@ SOURCE=.\rtfutils.h
# End Source File
# Begin Source File
SOURCE=.\symbols.h
# End Source File
# Begin Source File
SOURCE=.\table.cpp
!IF "$(CFG)" == "Tex2RTFVC - Win32 Release"

View File

@@ -0,0 +1,22 @@
/////////////////////////////////////////////////////////////////////////////
// Name: symbols.h
// Purpose: Tex2RTF symbols file
// Author: Julian Smart
// Modified by:
// Created: 2002-03-26
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _TEX2RTF_SYMBOLS_H_
#define _TEX2RTF_SYMBOLS_H_
//// Build settings
// ScriptTracks version
#define TEX2RTF_VERSION_NUMBER 2.01
#endif
// _TEX2RTF_SYMBOLS_H_

View File

@@ -44,12 +44,13 @@
#include "tex2any.h"
#include "tex2rtf.h"
#include "rtfutils.h"
#include "symbols.h"
#if (defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__)) && !defined(NO_GUI)
#include "tex2rtf.xpm"
#endif
const float versionNo = 2.0;
const float versionNo = TEX2RTF_VERSION_NUMBER;
TexChunk *currentMember = NULL;
bool startedSections = FALSE;
@@ -380,7 +381,7 @@ bool MyApp::OnInit()
frame->SetMenuBar(menuBar);
frame->textWindow = new wxTextCtrl(frame, -1, "", wxPoint(-1, -1), wxSize(-1, -1), wxTE_READONLY|wxTE_MULTILINE);
(*frame->textWindow) << "Welcome to Julian Smart's LaTeX to RTF converter.\n";
(*frame->textWindow) << "Welcome to Tex2RTF.\n";
// ShowOptions();
#if wxUSE_HELP
@@ -829,7 +830,7 @@ void MyFrame::OnAbout(wxCommandEvent& event)
char *platform = "";
#endif
#endif
sprintf(buf, "Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, HTML and wxHelp Conversion\n\n(c) Julian Smart 1999", versionNo, platform);
sprintf(buf, "Tex2RTF Version %.2f%s\nLaTeX to RTF, WinHelp, and HTML Conversion\n\n(c) Julian Smart, George Tasker and others, 1999-2002", versionNo, platform);
wxMessageBox(buf, "About Tex2RTF");
}