Some doc changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4362 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-11-04 20:04:04 +00:00
parent 2e5c594e36
commit 7f24fdbfea
12 changed files with 56 additions and 36 deletions

View File

@@ -3,6 +3,10 @@ rem Zip up an external, generic + Windows distribution of wxWindows 2.0
set src=%wxwin set src=%wxwin
set dest=%src\deliver set dest=%src\deliver
set wise=0 set wise=0
Rem Set this to the required version
set version=2_1_11
if "%src" == "" goto usage if "%src" == "" goto usage
if "%dest" == "" goto usage if "%dest" == "" goto usage
if "%1" == "-help" goto usage if "%1" == "-help" goto usage
@@ -18,7 +22,7 @@ pause
rem goto dounzip rem goto dounzip
erase %dest\wx200*.zip erase %dest\wx*.zip
erase %dest\glcanvas.zip erase %dest\glcanvas.zip
erase %dest\ogl3.zip erase %dest\ogl3.zip
erase %dest\tex2rtf2.zip erase %dest\tex2rtf2.zip
@@ -29,31 +33,31 @@ if direxist %dest\wx deltree /Y %dest\wx
cd %src cd %src
echo Zipping... echo Zipping...
zip32 -@ %dest\wx200gen.zip < %src\distrib\msw\generic.rsp zip32 -@ %dest\wx%version%_gen.zip < %src\distrib\msw\generic.rsp
zip32 -@ -u %dest\wx200gen.zip < %src\distrib\msw\makefile.rsp zip32 -@ -u %dest\wx%version%_gen.zip < %src\distrib\msw\makefile.rsp
zip32 -@ %dest\wx200msw.zip < %src\distrib\msw\msw.rsp zip32 -@ %dest\wx%version%_msw.zip < %src\distrib\msw\msw.rsp
zip32 -@ -u %dest\wx200msw.zip < %src\distrib\msw\makefile.rsp zip32 -@ -u %dest\wx%version%_msw.zip < %src\distrib\msw\makefile.rsp
zip32 -@ %dest\wx200gtk.zip < %src\distrib\msw\gtk.rsp zip32 -@ %dest\wx%version%_gtk.zip < %src\distrib\msw\gtk.rsp
zip32 -@ -u %dest\wx200gtk.zip < %src\distrib\msw\makefile.rsp zip32 -@ -u %dest\wx%version%_gtk.zip < %src\distrib\msw\makefile.rsp
zip32 -@ %dest\wx200stubs.zip < %src\distrib\msw\stubs.rsp zip32 -@ %dest\wx%version%_stubs.zip < %src\distrib\msw\stubs.rsp
zip32 -@ %dest\wx200mot.zip < %src\distrib\msw\motif.rsp zip32 -@ %dest\wx%version%_mot.zip < %src\distrib\msw\motif.rsp
zip32 -@ -u %dest\wx200mot.zip < %src\distrib\msw\makefile.rsp zip32 -@ -u %dest\wx%version%_mot.zip < %src\distrib\msw\makefile.rsp
zip32 -@ %dest\wx200user.zip < %src\distrib\msw\user.rsp zip32 -@ %dest\wx%version%_user.zip < %src\distrib\msw\user.rsp
zip32 -@ %dest\wx200doc.zip < %src\distrib\msw\docsrc.rsp zip32 -@ %dest\wx%version%_doc.zip < %src\distrib\msw\docsrc.rsp
zip32 -@ %dest\wx200hlp.zip < %src\distrib\msw\wx_hlp.rsp zip32 -@ %dest\wx%version%_hlp.zip < %src\distrib\msw\wx_hlp.rsp
zip32 -@ %dest\wx200htm.zip < %src\distrib\msw\wx_html.rsp zip32 -@ %dest\wx%version%_htm.zip < %src\distrib\msw\wx_html.rsp
zip32 -@ %dest\wx200pdf.zip < %src\distrib\msw\wx_pdf.rsp zip32 -@ %dest\wx%version%_pdf.zip < %src\distrib\msw\wx_pdf.rsp
zip32 -@ %dest\wx200wrd.zip < %src\distrib\msw\wx_word.rsp zip32 -@ %dest\wx%version%_wrd.zip < %src\distrib\msw\wx_word.rsp
rem VC++ project files rem VC++ project files
zip32 -@ %dest\wx200vc.zip < %src\distrib\msw\vc.rsp zip32 -@ %dest\wx%version%_vc.zip < %src\distrib\msw\vc.rsp
rem BC++ project files rem BC++ project files
zip32 -@ %dest\wx200bc.zip < %src\distrib\msw\bc.rsp zip32 -@ %dest\wx%version%_bc.zip < %src\distrib\msw\bc.rsp
rem CodeWarrior project files rem CodeWarrior project files
zip32 -@ %dest\wx200cw.zip < %src\distrib\msw\cw.rsp zip32 -@ %dest\wx%version%_cw.zip < %src\distrib\msw\cw.rsp
rem OGL 3 rem OGL 3
zip32 -@ %dest\ogl3.zip < %src\distrib\msw\ogl.rsp zip32 -@ %dest\ogl3.zip < %src\distrib\msw\ogl.rsp
@@ -92,13 +96,13 @@ Rem After this change of directory, we're in the
Rem temporary 'wx' directory and not acting on Rem temporary 'wx' directory and not acting on
Rem the source wxWindows directory. Rem the source wxWindows directory.
cd %dest\wx cd %dest\wx
unzip32 -o ..\wx200msw.zip unzip32 -o ..\wx%version%_msw.zip
unzip32 -o ..\wx200gen.zip unzip32 -o ..\wx%version%_gen.zip
unzip32 -o ..\wx200vc.zip unzip32 -o ..\wx%version%_vc.zip
unzip32 -o ..\wx200bc.zip unzip32 -o ..\wx%version%_bc.zip
unzip32 -o ..\wx200hlp.zip unzip32 -o ..\wx%version%_hlp.zip
Rem Need Word file, for Remstar DB classes Rem Need Word file, for Remstar DB classes
unzip32 -o ..\wx200wrd.zip unzip32 -o ..\wx%version%_wrd.zip
unzip32 -o ..\glcanvas.zip unzip32 -o ..\glcanvas.zip
unzip32 -o ..\treedraw.zip unzip32 -o ..\treedraw.zip
unzip32 -o ..\ogl3.zip unzip32 -o ..\ogl3.zip

View File

@@ -24,7 +24,7 @@ efficiency.
\wxheading{See also} \wxheading{See also}
\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, \helpref{Clipboard and drag and drop overview}{wxdndoverview},
\helpref{wxDataObject}{wxdataobject}, \helpref{wxDataObject}{wxdataobject},
\helpref{wxDataObjectSimple}{wxdataobjectsimple}, \helpref{wxDataObjectSimple}{wxdataobjectsimple},
\helpref{wxFileDataObject}{wxfiledataobject}, \helpref{wxFileDataObject}{wxfiledataobject},

View File

@@ -119,7 +119,7 @@ None
\wxheading{See also} \wxheading{See also}
\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, \helpref{Clipboard and drag and drop overview}{wxdndoverview},
\helpref{DnD sample}{samplednd}, \helpref{DnD sample}{samplednd},
\helpref{wxFileDataObject}{wxfiledataobject}, \helpref{wxFileDataObject}{wxfiledataobject},
\helpref{wxTextDataObject}{wxtextdataobject}, \helpref{wxTextDataObject}{wxtextdataobject},

View File

@@ -38,7 +38,7 @@ None, this class should be used directly.
\wxheading{See also} \wxheading{See also}
\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, \helpref{Clipboard and drag and drop overview}{wxdndoverview},
\helpref{wxDataObject}{wxdataobject}, \helpref{wxDataObject}{wxdataobject},
\helpref{wxDataObjectSimple}{wxdataobjectsimple}, \helpref{wxDataObjectSimple}{wxdataobjectsimple},
\helpref{wxFileDataObject}{wxfiledataobject}, \helpref{wxFileDataObject}{wxfiledataobject},

View File

@@ -38,7 +38,7 @@ methods.
\wxheading{See also} \wxheading{See also}
\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, \helpref{Clipboard and drag and drop overview}{wxdndoverview},
\helpref{DnD sample}{samplednd}, \helpref{DnD sample}{samplednd},
\helpref{wxFileDataObject}{wxfiledataobject}, \helpref{wxFileDataObject}{wxfiledataobject},
\helpref{wxTextDataObject}{wxtextdataobject}, \helpref{wxTextDataObject}{wxtextdataobject},

View File

@@ -118,7 +118,7 @@ This method is only called if \helpref{CanOpen}{wxfilesystemhandlercanopen} retu
Returns next filename that matches parameters passed to \helpref{FindFirst}{wxfilesystemfindfirst}. Returns next filename that matches parameters passed to \helpref{FindFirst}{wxfilesystemfindfirst}.
This method is only called if \helpref{CanRead}{wxfilesystemhandlercanread} returns TRUE and FindFirst This method is only called if \helpref{CanOpen}{wxfilesystemhandlercanopen} returns TRUE and FindFirst
returned a non-empty string. returned a non-empty string.
\membersection{wxFileSystemHandler::OpenFile}\label{wxfilesystemhandleropenfile} \membersection{wxFileSystemHandler::OpenFile}\label{wxfilesystemhandleropenfile}

View File

@@ -2,6 +2,9 @@
A dialog suitable for handling tabs. A dialog suitable for handling tabs.
Please note that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
This class is retained for backward compatibility.
\wxheading{Derived from} \wxheading{Derived from}
\helpref{wxDialog}{wxdialog}\\ \helpref{wxDialog}{wxdialog}\\
@@ -50,6 +53,9 @@ Returns the tab view associated with the dialog box.
A panel suitable for handling tabs. A panel suitable for handling tabs.
Please note that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
This class is retained for backward compatibility.
\wxheading{Derived from} \wxheading{Derived from}
\helpref{wxPanel}{wxpanel}\\ \helpref{wxPanel}{wxpanel}\\
@@ -90,6 +96,9 @@ Returns the tab view associated with the panel.
You will rarely need to use this class directly. You will rarely need to use this class directly.
Please note that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
This class is retained for backward compatibility.
\wxheading{Derived from} \wxheading{Derived from}
\helpref{wxObject}{wxobject} \helpref{wxObject}{wxobject}
@@ -235,6 +244,9 @@ Sets the width and height for this tab.
Responsible for drawing tabs onto a window, and dealing with input. Responsible for drawing tabs onto a window, and dealing with input.
Please note that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
This class is retained for backward compatibility.
\wxheading{Derived from} \wxheading{Derived from}
\helpref{wxObject}{wxobject} \helpref{wxObject}{wxobject}

View File

@@ -9,7 +9,7 @@
%% Licence: wxWindows licence %% Licence: wxWindows licence
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Clipboard and drag and drop overview}\label{wxdndoverview}\label{wxclipboardonfigoverview} \section{Clipboard and drag and drop overview}\label{wxdndoverview}
Classes: \helpref{wxDataObject}{wxdataobject}, Classes: \helpref{wxDataObject}{wxdataobject},
\helpref{wxClipboard}{wxclipboard}, \helpref{wxClipboard}{wxclipboard},

View File

@@ -9,6 +9,10 @@ used to switch between panels or other information. Tabs are most
commonly used in dialog boxes where the number of options is too great commonly used in dialog boxes where the number of options is too great
to fit on one dialog. to fit on one dialog.
{\bf Please note} that the preferred class for programming tabbed windows is \helpref{wxNotebook}{wxnotebook}.
The old tab classes are retained for backward compatibility and also to implement
wxNotebook on platforms that don't have native tab controls.
\wxheading{The appearance and behaviour of a wxTabbedDialog} \wxheading{The appearance and behaviour of a wxTabbedDialog}
The following screenshot shows the appearance of the sample tabbed dialog application. The following screenshot shows the appearance of the sample tabbed dialog application.

View File

@@ -31,7 +31,7 @@ overridden to increase efficiency.
\wxheading{See also} \wxheading{See also}
\helpref{Clipboard and drag and drop overview}{wxclipboardonfigoverview}, \helpref{Clipboard and drag and drop overview}{wxdndoverview},
\helpref{wxDataObject}{wxdataobject}, \helpref{wxDataObject}{wxdataobject},
\helpref{wxDataObjectSimple}{wxdataobjectsimple}, \helpref{wxDataObjectSimple}{wxdataobjectsimple},
\helpref{wxFileDataObject}{wxfiledataobject}, \helpref{wxFileDataObject}{wxfiledataobject},

View File

@@ -1,14 +1,14 @@
[OPTIONS] [OPTIONS]
BMROOT=L:\wxWindows\docs\latex\wx ; Assume that bitmaps are where the source is BMROOT=d:\wx2\wxWind~1\docs\latex\wx ; Assume that bitmaps are where the source is
TITLE=wxWindows Manual TITLE=wxWindows Manual
CONTENTS=Contents CONTENTS=Contents
COMPRESS=HIGH COMPRESS=HIGH
[FILES] [FILES]
Wx.rtf wx.rtf
[CONFIG] [CONFIG]
CreateButton("Up", "&Up", "JumpId(`Wx.hlp', `Contents')") CreateButton("Up", "&Up", "JumpId(`wx.hlp', `Contents')")
BrowseButtons() BrowseButtons()
[MAP] [MAP]

View File

@@ -167,7 +167,7 @@ void BombsCanvasClass::Refresh(int xc1, int yc1, int xc2, int yc2)
// Called when the canvas receives a mouse event. // Called when the canvas receives a mouse event.
void BombsCanvasClass::OnEvent(wxMouseEvent& event) void BombsCanvasClass::OnEvent(wxMouseEvent& event)
{ {
long fx, fy; wxCoord fx, fy;
event.GetPosition(&fx, &fy); event.GetPosition(&fx, &fy);
int x = fx/(x_cell*X_UNIT); int x = fx/(x_cell*X_UNIT);
int y = fy/(y_cell*Y_UNIT); int y = fy/(y_cell*Y_UNIT);