]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/wxPython.tex
Small distrib updates,
[wxWidgets.git] / docs / latex / wx / wxPython.tex
index 71d6a836544b73a7f3d704b6cbd8a33ce1e45ec3..e8230b56d20611ce3f92f7469c7d63d10b147ce0 100644 (file)
@@ -3,6 +3,8 @@
 \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
 \setfooter{\thepage}{}{}{}{}{\thepage}%
 
+This addendum is written by Robin Dunn, author of the wxPython wrapper
+
 %----------------------------------------------------------------------
 \section{What is wxPython?}\label{wxpwhat}
 
@@ -43,18 +45,17 @@ applications, or in situations where Python is embedded in a C++
 application as an internal scripting or macro language.
 
 Currently wxPython is available for Win32 platforms and the GTK
-toolkit (wxGTK) on most *nix/X-windows platforms.  The effort to
-enable wxPython for wxMotif will begin shortly.  See \helpref{Building
-Python}{wxpbuild} for details about getting wxPython working for you.
+toolkit (wxGTK) on most Unix/X-windows platforms.  The effort to
+enable wxPython for wxMotif will begin shortly.  See \helpref{Building Python}{wxpbuild} for
+details about getting wxPython working for you.
 
 
 %----------------------------------------------------------------------
 \section{Why use wxPython?}\label{wxpwhy}
 
-
 So why would you want to use wxPython over just C++ and wxWindows?
-Personally I prefer using Python for everything.  I only use C++ when
-I absolutly have to eek more performance out of an algorithm, and even
+Personally I prefer using Python for everything. I only use C++ when
+I absolutely have to eek more performance out of an algorithm, and even
 then I ususally code it as an extension module and leave the majority
 of the program in Python.
 
@@ -66,7 +67,6 @@ application in a few hours with Python that would normally take a few
 days or longer with C++.  Converting a wxPython app to a C++/wxWindows app
 should be a straight forward task.
 
-
 %----------------------------------------------------------------------
 \section{Other Python GUIs}\label{wxpother}
 
@@ -118,7 +118,6 @@ cross-platform compatible.  See \urlref{this
 link}{http://www.python.org/download/Contributed.html\#Graphics}
 for a listing of a few of them.
 
-
 %----------------------------------------------------------------------
 \section{Building wxPython}\label{wxpbuild}
 
@@ -148,8 +147,7 @@ The default is \tt{\$(WXWIN)/utils/wxPython}.  If you leave it here
 then you should add \tt{\$(WXWIN)/utils} to your \tt{PYTHONPATH}.
 However, you may prefer to use something that is already on your
 \tt{PYTHONPATH}, such as the \tt{site-packages} directory on Unix
- systems.
-
+systems.
 
 \wxheading{Win32}
 
@@ -163,38 +161,30 @@ specified below.
 \item Build wxWindows with \tt{wxUSE_RESOURCE_LOADING_IN_MSW} set to 1 in
 \tt{include/wx/msw/setup.h} so icons can be loaded dynamically.  While
 there, make sure \tt{wxUSE_OWNER_DRAWN} is also set to 1.
-
 \item Change into the \tt{\$(WXWIN)/utils/wxPython/src} directory.
-
 \item Edit makefile.vc and specify where your python installation is at.
 You may also want to fiddle with the \tt{TARGETDIR} variable as described
 above.
-
 \item Run \tt{nmake -f makefile.vc}
-
 \item If it builds successfully, congratulations!  Move on to the next
 step.  If not then you can try mailing the wxwin-developers list for
 help.  Also, I will always have a pre-built win32 version of this extension module at
 \urlref{http://alldunn.com/wxPython}{http://alldunn.com/wxPython}.
-
-\item Change to the \tt{\$(WXWIN)/utils/wxPython/tests} directory.
-
-\item Try executing the test programs.  Note that some of these print
+\item Change to the \tt{\$(WXWIN)/utils/wxPython/demo} directory.
+\item Try executing the demo program.  Note that some of the demos print
 diagnositc or test info to standard output, so they will require the
 console version of python.  For example:
 
-    \tt{python test1.py}
+\tt{python demo.py}
 
 To run them without requiring a console, you can use the \tt{pythonw.exe}
 version of Python either from the command line or from a shortcut.
-
 \end{enumerate}
 
-
 \wxheading{Unix}
 
 These directions assume that you have already successfully built
-wxWindows for GTK, and installed Python 1.5.1.  If you build Python
+wxWindows for GTK, and installed Python 1.5.1 or later.  If you build Python
 yourself, you will get everything installed that you need simply by
 doing \bftt{make install}.  If you get Python from an RPM or other
 pre-packaged source then there will probably be a separate package
@@ -203,29 +193,23 @@ with the development libraries, etc. that you will need to install.
 
 \begin{enumerate}\itemsep=0pt
 \item Change into the \tt{\$(WXWIN)/utils/wxPython/src} directory.
-
 \item Edit \tt{Setup.in} and ensure that the flags, directories, and toolkit
 options are correct, (hopefully this will be done by \tt{configure}
 soon.)  See the above commentary about \tt{TARGETDIR}.  There are a
 few sample Setup.in.[platform] files provided.
-
 \item Run this command to generate a makefile:
 
-    \tt{make -f Makefile.pre.in boot}
+\tt{make -f Makefile.pre.in boot}
 
 \item Once you have the \tt{Makefile}, run \bftt{make} to build and then
 \bftt{make install} to install the wxPython extension module.
+\item Change to the \tt{\$(WXWIN)/utils/wxPython/demo} directory.
+\item Try executing the demo program.  For example:
 
-\item Change to the \tt{\$(WXWIN)/utils/wxPython/tests} directory.
-
-\item Try executing the test programs.  For example:
-
-    \tt{python test1.py}
-
+\tt{python demo.py}
 \end{enumerate}
 
 
-
 %----------------------------------------------------------------------
 \section{Using wxPython}\label{wxpusing}
 
@@ -237,12 +221,12 @@ I'm also going to assume that you know a bit about wxWindows already,
 enough to notice the similarities in the classes used.
 
 Take a look at the following wxPython program.  You can find a similar
-program in the \tt{wxPython/tests} directory, named \tt{test7.py}.  If your
+program in the \tt{wxPython/demo} directory, named \tt{DialogUnits.py}.  If your
 Python and wxPython are properly installed, you should be able to run
 it by issuing this command:
 
 \begin{indented}{1cm}
-    \bftt{python test7.py}
+    \bftt{python DialogUnits.py}
 \end{indented}
 
 \hrule
@@ -325,13 +309,14 @@ it by issuing this command:
 \end{verbatim}
 \hrule
 
-\wxheading{Things to notice:}\begin{enumerate}\itemsep=0pt
+\wxheading{Things to notice}
+
+\begin{enumerate}\itemsep=0pt
 \item At line 2 the wxPython classes, constants, and etc. are imported
 into the current module's namespace.  If you prefer to reduce
 namespace polution you can use "\tt{from wxPython import wx}" and
 then access all the wxPython identifiers through the wx module, for
 example, "\tt{wx.wxFrame}".
-
 \item At line 13 the frame's sizing and moving events are connected to
 methods of the class.  These helper functions are intended to be like
 the event table macros that wxWindows employs.  But since static event
@@ -339,20 +324,17 @@ tables are impossible with wxPython, we use helpers that are named the
 same to dynamically build the table.  The only real difference is
 that the first arguemnt to the event helpers is always the window that
 the event table entry should be added to.
-
-\item Notice the use of \tt{wxDLG_PNT} and \tt{wxDLG_SZE} in lines 19
+\item Notice the use of \tt{wxDLG\_PNT} and \tt{wxDLG\_SZE} in lines 19
 - 29 to convert from dialog units to pixels.  These helpers are unique
 to wxPython since Python can't do method overloading like C++.
-
 \item There is an \tt{OnCloseWindow} method at line 34 but no call to
-EVT_CLOSE to attach the event to the method.  Does it really get
+EVT\_CLOSE to attach the event to the method.  Does it really get
 called?  The answer is, yes it does.  This is because many of the
 \em{standard} events are attached to windows that have the associated
 \em{standard} method names.  I have tried to follow the lead of the
 C++ classes in this area to determine what is \em{standard} but since
 that changes from time to time I can make no guarentees, nor will it
-be fully documented.  When in doubt, use an EVT_*** function.
-
+be fully documented.  When in doubt, use an EVT\_*** function.
 \item At lines 17 to 21 notice that there are no saved references to
 the panel or the static text items that are created.  Those of you
 who know Python might be wondering what happens when Python deletes
@@ -361,16 +343,14 @@ don't.  Remember that in wxPython the Python objects are just shadows of the
 coresponding C++ objects.  Once the C++ windows and controls are
 attached to their parents, the parents manage them and delete them
 when necessary.  For this reason, most wxPython objects do not need to
-have a __del__ method that explicitly causes the C++ object to be
+have a \_\_del\_\_ method that explicitly causes the C++ object to be
 deleted.  If you ever have the need to forcibly delete a window, use
 the Destroy() method as shown on line 36.
-
 \item Just like wxWindows in C++, wxPython apps need to create a class
 derived from \tt{wxApp} (line 56) that implements a method named
 \tt{OnInit}, (line 59.) This method should create the application's
 main window (line 62) and use \tt{wxApp.SetTopWindow()} (line 66) to
 inform wxWindows about it.
-
 \item And finally, at line 72 an instance of the application class is
 created.  At this point wxPython finishes initializing itself, and calls
 the \tt{OnInit} method to get things started.  (The zero parameter here is
@@ -378,11 +358,8 @@ a flag for functionality that isn't quite implemented yet.  Just
 ignore it for now.)  The call to \tt{MainLoop} at line 73 starts the event
 loop which continues until the application terminates or all the top
 level windows are closed.
-
 \end{enumerate}
 
-
-
 %----------------------------------------------------------------------
 \section{wxWindows classes implemented in wxPython}\label{wxpclasses}
 
@@ -397,6 +374,7 @@ as possible to the C++ spec over time.
 \item \helpref{wxActivateEvent}{wxactivateevent}
 \item \helpref{wxBitmapButton}{wxbitmapbutton}
 \item \helpref{wxBitmap}{wxbitmap}
+\item wxBMPHandler
 \item \helpref{wxBrush}{wxbrush}
 \item \helpref{wxButton}{wxbutton}
 \item \helpref{wxCalculateLayoutEvent}{wxcalculatelayoutevent}
@@ -427,16 +405,21 @@ as possible to the C++ spec over time.
 \item \helpref{wxFont}{wxfont}
 \item \helpref{wxFrame}{wxframe}
 \item \helpref{wxGauge}{wxgauge}
-\item \helpref{wxGridCell}{wxgridcell}
-\item \helpref{wxGridEvent}{wxgridevent}
+\item wxGIFHandler
+\item wxGLCanvas
+\item wxGridCell
+\item wxGridEvent
 \item \helpref{wxGrid}{wxgrid}
-\item \helpref{wxIconizeEvent}{wxiconizeevent}
+\item wxIconizeEvent
 \item \helpref{wxIcon}{wxicon}
 \item \helpref{wxIdleEvent}{wxidleevent}
+\item \helpref{wxImage}{wximage}
+\item \helpref{wxImageHandler}{wximagehandler}
 \item \helpref{wxImageList}{wximagelist}
 \item \helpref{wxIndividualLayoutConstraint}{wxindividuallayoutconstraint}
 \item \helpref{wxInitDialogEvent}{wxinitdialogevent}
 \item \helpref{wxJoystickEvent}{wxjoystickevent}
+\item wxJPEGHandler
 \item \helpref{wxKeyEvent}{wxkeyevent}
 \item \helpref{wxLayoutAlgorithm}{wxlayoutalgorithm}
 \item \helpref{wxLayoutConstraints}{wxlayoutconstraints}
@@ -448,7 +431,7 @@ as possible to the C++ spec over time.
 \item \helpref{wxMDIClientWindow}{wxmdiclientwindow}
 \item \helpref{wxMDIParentFrame}{wxmdiparentframe}
 \item \helpref{wxMask}{wxmask}
-\item \helpref{wxMaximizeEvent}{wxmaximizeevent}
+\item wxMaximizeEvent
 \item \helpref{wxMemoryDC}{wxmemorydc}
 \item \helpref{wxMenuBar}{wxmenubar}
 \item \helpref{wxMenuEvent}{wxmenuevent}
@@ -461,18 +444,24 @@ as possible to the C++ spec over time.
 \item \helpref{wxMoveEvent}{wxmoveevent}
 \item \helpref{wxNotebookEvent}{wxnotebookevent}
 \item \helpref{wxNotebook}{wxnotebook}
-\item \helpref{wxPageSetupData}{wxpagesetupdata}
+\item \helpref{wxPageSetupDialogData}{wxpagesetupdialogdata}
 \item \helpref{wxPageSetupDialog}{wxpagesetupdialog}
 \item \helpref{wxPaintDC}{wxpaintdc}
 \item \helpref{wxPaintEvent}{wxpaintevent}
 \item \helpref{wxPalette}{wxpalette}
 \item \helpref{wxPanel}{wxpanel}
 \item \helpref{wxPen}{wxpen}
+\item wxPNGHandler
 \item \helpref{wxPoint}{wxpoint}
 \item \helpref{wxPostScriptDC}{wxpostscriptdc}
+\item \helpref{wxPreviewFrame}{wxpreviewframe}
 \item \helpref{wxPrintData}{wxprintdata}
+\item \helpref{wxPrintDialogData}{wxprintdialogdata}
 \item \helpref{wxPrintDialog}{wxprintdialog}
+\item \helpref{wxPrinter}{wxprinter}
+\item \helpref{wxPrintPreview}{wxprintpreview}
 \item \helpref{wxPrinterDC}{wxprinterdc}
+\item \helpref{wxPrintout}{wxprintout}
 \item \helpref{wxQueryLayoutInfoEvent}{wxquerylayoutinfoevent}
 \item \helpref{wxRadioBox}{wxradiobox}
 \item \helpref{wxRadioButton}{wxradiobutton}
@@ -487,16 +476,17 @@ as possible to the C++ spec over time.
 \item \helpref{wxScrollBar}{wxscrollbar}
 \item \helpref{wxScrollEvent}{wxscrollevent}
 \item \helpref{wxScrolledWindow}{wxscrolledwindow}
-\item \helpref{wxShowEvent}{wxshowevent}
+\item wxShowEvent
 \item \helpref{wxSingleChoiceDialog}{wxsinglechoicedialog}
 \item \helpref{wxSizeEvent}{wxsizeevent}
 \item \helpref{wxSize}{wxsize}
 \item \helpref{wxSlider}{wxslider}
 \item \helpref{wxSpinButton}{wxspinbutton}
-\item \helpref{wxSpinEvent}{wxspinevent}
+\item wxSpinEvent
 \item \helpref{wxSplitterWindow}{wxsplitterwindow}
 \item \helpref{wxStaticBitmap}{wxstaticbitmap}
 \item \helpref{wxStaticBox}{wxstaticbox}
+\item wxStaticLine
 \item \helpref{wxStaticText}{wxstatictext}
 \item \helpref{wxStatusBar}{wxstatusbar}
 \item \helpref{wxSysColourChangedEvent}{wxsyscolourchangedevent}
@@ -504,23 +494,25 @@ as possible to the C++ spec over time.
 \item \helpref{wxTextCtrl}{wxtextctrl}
 \item \helpref{wxTextEntryDialog}{wxtextentrydialog}
 \item \helpref{wxTimer}{wxtimer}
-\item \helpref{wxToolBarTool}{wxtoolbartool}
+\item wxToolBarTool
 \item \helpref{wxToolBar}{wxtoolbar}
-\item \helpref{wxToolTip}{wxtooltip}
+\item wxToolTip
 \item \helpref{wxTreeCtrl}{wxtreectrl}
 \item \helpref{wxTreeEvent}{wxtreeevent}
 \item \helpref{wxTreeItemData}{wxtreeitemdata}
-\item \helpref{wxTreeItemId}{wxtreeitemid}
+\item wxTreeItemId
 \item \helpref{wxUpdateUIEvent}{wxupdateuievent}
 \item \helpref{wxWindowDC}{wxwindowdc}
 \item \helpref{wxWindow}{wxwindow}
+
+
 \end{itemize}
 
 %----------------------------------------------------------------------
 \section{Where to go for help}\label{wxphelp}
 
 Since wxPython is a blending of multiple technologies, help comes from
-multiple sources.  See
+multiple sources. See
 \urlref{http://alldunn.com/wxPython}{http://alldunn.com/wxPython} for details on
 various sources of help, but probably the best source is the
 wxPython-users mail list.  You can view the archive or subscribe by
@@ -532,8 +524,3 @@ Or you can send mail directly to the list using this address:
 
 wxpython-users@starship.python.net
 
-
-
-
-
-