]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/wxPython.tex
added HTML printing
[wxWidgets.git] / docs / latex / wx / wxPython.tex
... / ...
CommitLineData
1\chapter{wxPython Notes}\label{wxPython}
2\pagenumbering{arabic}%
3\setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
4\setfooter{\thepage}{}{}{}{}{\thepage}%
5
6This addendum is written by Robin Dunn, author of the wxPython wrapper
7
8%----------------------------------------------------------------------
9\section{What is wxPython?}\label{wxpwhat}
10
11wxPython is a blending of the wxWindows GUI classes and the
12\urlref{Python}{http://www.python.org/} programming language.
13
14\wxheading{Python}
15
16So what is Python? Go to
17\urlref{http://www.python.org}{http://www.python.org} to learn more,
18but in a nutshell Python is an interpreted,
19interactive, object-oriented programming language. It is often
20compared to Tcl, Perl, Scheme or Java.
21
22Python combines remarkable power with very clear syntax. It has
23modules, classes, exceptions, very high level dynamic data types, and
24dynamic typing. There are interfaces to many system calls and
25libraries, and new built-in modules are easily written in C or
26C++. Python is also usable as an extension language for applications
27that need a programmable interface.
28
29Python is copyrighted but freely usable and distributable, even for
30commercial use.
31
32\wxheading{wxPython}
33
34wxPython is a Python package that can be imported at runtime that
35includes a collection of Python modules and an extension module
36(native code). It provides a series of Python classes that mirror (or
37shadow) many of the wxWindows GUI classes. This extension module
38attempts to mirror the class heiarchy of wxWindows as closely as
39possble. This means that there is a wxFrame class in wxPython that
40looks, smells, tastes and acts almost the same as the wxFrame class in
41the C++ version.
42
43wxPython is very versitile. It can be used to create standalone GUI
44applications, or in situations where Python is embedded in a C++
45application as an internal scripting or macro language.
46
47Currently wxPython is available for Win32 platforms and the GTK
48toolkit (wxGTK) on most Unix/X-windows platforms. The effort to
49enable wxPython for wxMotif will begin shortly. See \helpref{Building Python}{wxpbuild} for
50details about getting wxPython working for you.
51
52%----------------------------------------------------------------------
53\section{Why use wxPython?}\label{wxpwhy}
54
55So why would you want to use wxPython over just C++ and wxWindows?
56Personally I prefer using Python for everything. I only use C++ when
57I absolutely have to eek more performance out of an algorithm, and even
58then I ususally code it as an extension module and leave the majority
59of the program in Python.
60
61Another good thing to use wxPython for is quick prototyping of your
62wxWindows apps. With C++ you have to continuously go though the
63edit-compile-link-run cycle, which can be quite time consuming. With
64Python it is only an edit-run cycle. You can easily build an
65application in a few hours with Python that would normally take a few
66days or longer with C++. Converting a wxPython app to a C++/wxWindows app
67should be a straight forward task.
68
69%----------------------------------------------------------------------
70\section{Other Python GUIs}\label{wxpother}
71
72There are other GUI solutions out there for Python.
73
74\wxheading{Tkinter}
75
76Tkinter is the defacto standard GUI for Python. It is available
77on nearly every platform that Python and Tcl/TK are. Why Tcl/Tk?
78Well because Tkinter is just a wrapper around Tcl's GUI toolkit, Tk.
79This has its upsides and its downsides...
80
81The upside is that Tk is a pretty versatile toolkit. It can be made
82to do a lot of things in a lot of different environments. It is fairly
83easy to create new widgets and use them interchangably in your
84programs.
85
86The downside is Tcl. When using Tkinter you actually have two
87separate language interpreters running, the Python interpreter and the
88Tcl interpreter for the GUI. Since the guts of Tcl is mostly about
89string processing, it is fairly slow as well. (Not too bad on a fast
90Pentium II, but you really notice the difference on slower machines.)
91
92It wasn't until the lastest version of Tcl/Tk that native Look and
93Feel was possible on non-Motif platforms. This is because Tk
94usually implements its own widgets (controls) even when there are
95native controls available.
96
97Tkinter is a pretty low-level toolkit. You have to do a lot of work
98(verbose program code) to do things that would be much simpler with a higher
99level of abstraction.
100
101\wxheading{PythonWin}
102
103PythonWin is an add-on package for Python for the Win32 platform. It
104includes wrappers for MFC as well as much of the Win32 API. Because
105of its foundation, it is very familiar for programmers who have
106experience with MFC and the Win32 API. It is obviously not compatible
107with other platforms and toolkits. PythonWin is organized as separate
108packages and modules so you can use the pieces you need without having
109to use the GUI portions.
110
111\wxheading{Others}
112
113There are quite a few other GUI modules available for Python, some in
114active use, some that havn't been updated for ages. Most are simple
115wrappers around some C or C++ toolkit or another, and most are not
116cross-platform compatible. See \urlref{this link}{http://www.python.org/download/Contributed.html\#Graphics}
117for a listing of a few of them.
118
119%----------------------------------------------------------------------
120\section{Building wxPython}\label{wxpbuild}
121
122I used SWIG (\urlref{http://www.swig.org}{http://www.swig.org}) to
123to create the source code for the
124extension module. This enabled me to only have to deal with a small
125amount of code and only have to bother with the exceptional issues.
126SWIG takes care of the rest and generates all the repetative code for
127me. You don't need SWIG to build the extension module as all the
128generated C++ code is included under the src directory.
129
130I added a few minor features to SWIG to control some of the code
131generation. If you want to play around with this you will need to get
132a recent version of SWIG from their CVS or from a daily build. See
133\urlref{http://www.swig.org/}{http://www.swig.org/} for details.
134
135wxPython is organized as a Python package. This means that the
136directory containing the results of the build process should be a
137subdirectory of a directory on the \tt{PYTHONPATH}. (And preferably should
138be named wxPython.) You can control where the build process will dump
139wxPython by setting the \tt{TARGETDIR} variable for the build utility (see
140below).
141
142\begin{enumerate}\itemsep=0pt
143\item Build wxWindows as described in its BuildCVS.txt file. For Unix
144systems I run configure with these flags:
145
146\begin{verbatim}
147 --with-gtk
148 --with-libjpeg
149 --without-odbc
150 --enable-unicode=no
151 --enable-threads=yes
152 --enable-socket=yes
153 --enable-static=no
154 --enable-shared=yes
155 --disable-std_iostreams
156\end{verbatim}
157
158You can use whatever flags you want, but I know these work.
159
160For Win32 systems I use Visual C++ 6.0, but 5.0 should work also. The
161build utility currently does not support any other Win32 compilers.
162
163\item At this point you may want to make an alias or symlink, script,
164batch file, whatever on the PATH that invokes \tt{\$(WXWIN)/utils/wxPython/distrib/build.py} to
165help simplify matters somewhat. For example, on my Win32 system I have a file named
166 \tt{build}.bat in a directory on the PATH that contains:
167
168\tt{python \%WXWIN/utils/wxPython/distrib/build.py \%1 \%2 \%3 \%4 \%5 \%6}
169
170\item Change into the \tt{\$(WXWIN)/utils/wxPython/src} directory.
171
172\item Type "\tt{build -b}" to build wxPython and "\tt{build -i}" to
173install it, or "\tt{build -bi}" to do both steps at once.
174
175The build.py script actually generates a Makefile based on what it
176finds on your system and information found in the build.cfg file.
177If you have troubles building or you want it built or installed in
178a different way, take a look at the docstring in build.py. You are
179able to to override many configuration options in a file named
180build.local.
181
182\item To build and install the add-on modules, change to the appropriate
183directory under \tt{\$(WXWIN)/utils/wxPython/modules} and run the build
184utility again.
185
186\item Change to the \tt{\$(WXWIN)/utils/wxPython/demo} directory.
187
188\item Try executing the demo program. For example:
189
190\tt{python demo.py}
191
192To run it without requiring a console on Win32, you can use the
193\tt{pythonw.exe} version of Python either from the command line or from a
194shortcut.
195\end{enumerate}
196
197%----------------------------------------------------------------------
198\section{Using wxPython}\label{wxpusing}
199
200\wxheading{First things first...}
201
202I'm not going to try and teach the Python language here. You can do
203that at the \urlref{Python Tutorial}{http://www.python.org/doc/tut/tut.html}.
204I'm also going to assume that you know a bit about wxWindows already,
205enough to notice the similarities in the classes used.
206
207Take a look at the following wxPython program. You can find a similar
208program in the \tt{wxPython/demo} directory, named \tt{DialogUnits.py}. If your
209Python and wxPython are properly installed, you should be able to run
210it by issuing this command:
211
212\begin{indented}{1cm}
213 \bftt{python DialogUnits.py}
214\end{indented}
215
216\hrule
217
218\begin{verbatim}
219001: ## import all of the wxPython GUI package
220002: from wxPython.wx import *
221003:
222004: ## Create a new frame class, derived from the wxPython Frame.
223005: class MyFrame(wxFrame):
224006:
225007: def __init__(self, parent, id, title):
226008: # First, call the base class' __init__ method to create the frame
227009: wxFrame.__init__(self, parent, id, title,
228010: wxPoint(100, 100), wxSize(160, 100))
229011:
230012: # Associate some events with methods of this class
231013: EVT_SIZE(self, self.OnSize)
232014: EVT_MOVE(self, self.OnMove)
233015:
234016: # Add a panel and some controls to display the size and position
235017: panel = wxPanel(self, -1)
236018: wxStaticText(panel, -1, "Size:",
237019: wxDLG_PNT(panel, wxPoint(4, 4)), wxDefaultSize)
238020: wxStaticText(panel, -1, "Pos:",
239021: wxDLG_PNT(panel, wxPoint(4, 14)), wxDefaultSize)
240022: self.sizeCtrl = wxTextCtrl(panel, -1, "",
241023: wxDLG_PNT(panel, wxPoint(24, 4)),
242024: wxDLG_SZE(panel, wxSize(36, -1)),
243025: wxTE_READONLY)
244026: self.posCtrl = wxTextCtrl(panel, -1, "",
245027: wxDLG_PNT(panel, wxPoint(24, 14)),
246028: wxDLG_SZE(panel, wxSize(36, -1)),
247029: wxTE_READONLY)
248030:
249031:
250032: # This method is called automatically when the CLOSE event is
251033: # sent to this window
252034: def OnCloseWindow(self, event):
253035: # tell the window to kill itself
254036: self.Destroy()
255037:
256038: # This method is called by the system when the window is resized,
257039: # because of the association above.
258040: def OnSize(self, event):
259041: size = event.GetSize()
260042: self.sizeCtrl.SetValue("%s, %s" % (size.width, size.height))
261043:
262044: # tell the event system to continue looking for an event handler,
263045: # so the default handler will get called.
264046: event.Skip()
265047:
266048: # This method is called by the system when the window is moved,
267049: # because of the association above.
268050: def OnMove(self, event):
269051: pos = event.GetPosition()
270052: self.posCtrl.SetValue("%s, %s" % (pos.x, pos.y))
271053:
272054:
273055: # Every wxWindows application must have a class derived from wxApp
274056: class MyApp(wxApp):
275057:
276058: # wxWindows calls this method to initialize the application
277059: def OnInit(self):
278060:
279061: # Create an instance of our customized Frame class
280062: frame = MyFrame(NULL, -1, "This is a test")
281063: frame.Show(true)
282064:
283065: # Tell wxWindows that this is our main window
284066: self.SetTopWindow(frame)
285067:
286068: # Return a success flag
287069: return true
288070:
289071:
290072: app = MyApp(0) # Create an instance of the application class
291073: app.MainLoop() # Tell it to start processing events
292074:
293\end{verbatim}
294\hrule
295
296\wxheading{Things to notice}
297
298\begin{enumerate}\itemsep=0pt
299\item At line 2 the wxPython classes, constants, and etc. are imported
300into the current module's namespace. If you prefer to reduce
301namespace pollution you can use "\tt{from wxPython import wx}" and
302then access all the wxPython identifiers through the wx module, for
303example, "\tt{wx.wxFrame}".
304
305\item At line 13 the frame's sizing and moving events are connected to
306methods of the class. These helper functions are intended to be like
307the event table macros that wxWindows employs. But since static event
308tables are impossible with wxPython, we use helpers that are named the
309same to dynamically build the table. The only real difference is
310that the first arguemnt to the event helpers is always the window that
311the event table entry should be added to.
312
313\item Notice the use of \tt{wxDLG\_PNT} and \tt{wxDLG\_SZE} in lines 19
314- 29 to convert from dialog units to pixels. These helpers are unique
315to wxPython since Python can't do method overloading like C++.
316
317\item There is an \tt{OnCloseWindow} method at line 34 but no call to
318EVT\_CLOSE to attach the event to the method. Does it really get
319called? The answer is, yes it does. This is because many of the
320\em{standard} events are attached to windows that have the associated
321\em{standard} method names. I have tried to follow the lead of the
322C++ classes in this area to determine what is \em{standard} but since
323that changes from time to time I can make no guarentees, nor will it
324be fully documented. When in doubt, use an EVT\_*** function.
325
326\item At lines 17 to 21 notice that there are no saved references to
327the panel or the static text items that are created. Those of you
328who know Python might be wondering what happens when Python deletes
329these objects when they go out of scope. Do they disappear from the GUI? They
330don't. Remember that in wxPython the Python objects are just shadows of the
331coresponding C++ objects. Once the C++ windows and controls are
332attached to their parents, the parents manage them and delete them
333when necessary. For this reason, most wxPython objects do not need to
334have a \_\_del\_\_ method that explicitly causes the C++ object to be
335deleted. If you ever have the need to forcibly delete a window, use
336the Destroy() method as shown on line 36.
337
338\item Just like wxWindows in C++, wxPython apps need to create a class
339derived from \tt{wxApp} (line 56) that implements a method named
340\tt{OnInit}, (line 59.) This method should create the application's
341main window (line 62) and use \tt{wxApp.SetTopWindow()} (line 66) to
342inform wxWindows about it.
343
344\item And finally, at line 72 an instance of the application class is
345created. At this point wxPython finishes initializing itself, and calls
346the \tt{OnInit} method to get things started. (The zero parameter here is
347a flag for functionality that isn't quite implemented yet. Just
348ignore it for now.) The call to \tt{MainLoop} at line 73 starts the event
349loop which continues until the application terminates or all the top
350level windows are closed.
351\end{enumerate}
352
353%----------------------------------------------------------------------
354\section{wxWindows classes implemented in wxPython}\label{wxpclasses}
355
356The following classes are supported in wxPython. Most provide nearly
357full implementations of the public interfaces specified in the C++
358documentation, others are less so. They will all be brought as close
359as possible to the C++ spec over time.
360
361\begin{itemize}\itemsep=0pt
362\item \helpref{wxAcceleratorEntry}{wxacceleratorentry}
363\item \helpref{wxAcceleratorTable}{wxacceleratortable}
364\item \helpref{wxActivateEvent}{wxactivateevent}
365\item \helpref{wxBitmapButton}{wxbitmapbutton}
366\item \helpref{wxBitmap}{wxbitmap}
367\item wxBMPHandler
368\item \helpref{wxBoxSizer}{wxboxsizer}
369\item \helpref{wxBrush}{wxbrush}
370\item \helpref{wxButton}{wxbutton}
371\item \helpref{wxCalculateLayoutEvent}{wxcalculatelayoutevent}
372\item wxCaret
373\item \helpref{wxCheckBox}{wxcheckbox}
374\item \helpref{wxCheckListBox}{wxchecklistbox}
375\item \helpref{wxChoice}{wxchoice}
376\item \helpref{wxClientDC}{wxclientdc}
377\item \helpref{wxCloseEvent}{wxcloseevent}
378\item \helpref{wxColourData}{wxcolourdata}
379\item \helpref{wxColourDialog}{wxcolourdialog}
380\item \helpref{wxColour}{wxcolour}
381\item \helpref{wxComboBox}{wxcombobox}
382\item \helpref{wxCommandEvent}{wxcommandevent}
383\item \helpref{wxConfig}{wxconfigbase}
384\item \helpref{wxControl}{wxcontrol}
385\item \helpref{wxCursor}{wxcursor}
386\item \helpref{wxDC}{wxdc}
387\item \helpref{wxDialog}{wxdialog}
388\item \helpref{wxDirDialog}{wxdirdialog}
389\item \helpref{wxDropFilesEvent}{wxdropfilesevent}
390\item \helpref{wxEraseEvent}{wxeraseevent}
391\item \helpref{wxEvent}{wxevent}
392\item \helpref{wxEvtHandler}{wxevthandler}
393\item \helpref{wxFileDialog}{wxfiledialog}
394\item \helpref{wxFocusEvent}{wxfocusevent}
395\item \helpref{wxFontData}{wxfontdata}
396\item \helpref{wxFontDialog}{wxfontdialog}
397\item \helpref{wxFont}{wxfont}
398\item \helpref{wxFrame}{wxframe}
399\item \helpref{wxGauge}{wxgauge}
400\item wxGIFHandler
401\item wxGLCanvas
402\item wxGridCell
403\item wxGridEvent
404\item \helpref{wxGrid}{wxgrid}
405\item \helpref{wxHtmlCell}{wxhtmlcell}
406\item \helpref{wxHtmlContainerCell}{wxhtmlcontainercell}
407\item \helpref{wxHtmlParser}{wxhtmlparser}
408\item \helpref{wxHtmlTagHandler}{wxhtmltaghandler}
409\item \helpref{wxHtmlTag}{wxhtmltag}
410\item \helpref{wxHtmlWinParser}{wxhtmlwinparser}
411\item \helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler}
412\item \helpref{wxHtmlWindow}{wxhtmlwindow}
413\item wxIconizeEvent
414\item \helpref{wxIcon}{wxicon}
415\item \helpref{wxIdleEvent}{wxidleevent}
416\item \helpref{wxImage}{wximage}
417\item \helpref{wxImageHandler}{wximagehandler}
418\item \helpref{wxImageList}{wximagelist}
419\item \helpref{wxIndividualLayoutConstraint}{wxindividuallayoutconstraint}
420\item \helpref{wxInitDialogEvent}{wxinitdialogevent}
421\item \helpref{wxJoystickEvent}{wxjoystickevent}
422\item wxJPEGHandler
423\item \helpref{wxKeyEvent}{wxkeyevent}
424\item \helpref{wxLayoutAlgorithm}{wxlayoutalgorithm}
425\item \helpref{wxLayoutConstraints}{wxlayoutconstraints}
426\item \helpref{wxListBox}{wxlistbox}
427\item \helpref{wxListCtrl}{wxlistctrl}
428\item \helpref{wxListEvent}{wxlistevent}
429\item \helpref{wxListItem}{wxlistctrlsetitem}
430\item \helpref{wxMDIChildFrame}{wxmdichildframe}
431\item \helpref{wxMDIClientWindow}{wxmdiclientwindow}
432\item \helpref{wxMDIParentFrame}{wxmdiparentframe}
433\item \helpref{wxMask}{wxmask}
434\item wxMaximizeEvent
435\item \helpref{wxMemoryDC}{wxmemorydc}
436\item \helpref{wxMenuBar}{wxmenubar}
437\item \helpref{wxMenuEvent}{wxmenuevent}
438\item \helpref{wxMenuItem}{wxmenuitem}
439\item \helpref{wxMenu}{wxmenu}
440\item \helpref{wxMessageDialog}{wxmessagedialog}
441\item \helpref{wxMetaFileDC}{wxmetafiledc}
442\item \helpref{wxMiniFrame}{wxminiframe}
443\item \helpref{wxMouseEvent}{wxmouseevent}
444\item \helpref{wxMoveEvent}{wxmoveevent}
445\item \helpref{wxNotebookEvent}{wxnotebookevent}
446\item \helpref{wxNotebook}{wxnotebook}
447\item \helpref{wxPageSetupDialogData}{wxpagesetupdialogdata}
448\item \helpref{wxPageSetupDialog}{wxpagesetupdialog}
449\item \helpref{wxPaintDC}{wxpaintdc}
450\item \helpref{wxPaintEvent}{wxpaintevent}
451\item \helpref{wxPalette}{wxpalette}
452\item \helpref{wxPanel}{wxpanel}
453\item \helpref{wxPen}{wxpen}
454\item wxPNGHandler
455\item \helpref{wxPoint}{wxpoint}
456\item \helpref{wxPostScriptDC}{wxpostscriptdc}
457\item \helpref{wxPreviewFrame}{wxpreviewframe}
458\item \helpref{wxPrintData}{wxprintdata}
459\item \helpref{wxPrintDialogData}{wxprintdialogdata}
460\item \helpref{wxPrintDialog}{wxprintdialog}
461\item \helpref{wxPrinter}{wxprinter}
462\item \helpref{wxPrintPreview}{wxprintpreview}
463\item \helpref{wxPrinterDC}{wxprinterdc}
464\item \helpref{wxPrintout}{wxprintout}
465\item \helpref{wxQueryLayoutInfoEvent}{wxquerylayoutinfoevent}
466\item \helpref{wxRadioBox}{wxradiobox}
467\item \helpref{wxRadioButton}{wxradiobutton}
468\item \helpref{wxRealPoint}{wxrealpoint}
469\item \helpref{wxRect}{wxrect}
470\item \helpref{wxRegionIterator}{wxregioniterator}
471\item \helpref{wxRegion}{wxregion}
472\item \helpref{wxSashEvent}{wxsashevent}
473\item \helpref{wxSashLayoutWindow}{wxsashlayoutwindow}
474\item \helpref{wxSashWindow}{wxsashwindow}
475\item \helpref{wxScreenDC}{wxscreendc}
476\item \helpref{wxScrollBar}{wxscrollbar}
477\item \helpref{wxScrollEvent}{wxscrollevent}
478\item \helpref{wxScrolledWindow}{wxscrolledwindow}
479\item \helpref{wxScrollWinEvent}{wxscrollwinevent}
480\item wxShowEvent
481\item \helpref{wxSingleChoiceDialog}{wxsinglechoicedialog}
482\item \helpref{wxSizeEvent}{wxsizeevent}
483\item \helpref{wxSize}{wxsize}
484\item \helpref{wxSizer}{wxsizer}
485\item wxSizerItem
486\item \helpref{wxSlider}{wxslider}
487\item \helpref{wxSpinButton}{wxspinbutton}
488\item wxSpinEvent
489\item \helpref{wxSplitterWindow}{wxsplitterwindow}
490\item \helpref{wxStaticBitmap}{wxstaticbitmap}
491\item \helpref{wxStaticBox}{wxstaticbox}
492\item \helpref{wxStaticBoxSizer}{wxstaticboxsizer}
493\item wxStaticLine
494\item \helpref{wxStaticText}{wxstatictext}
495\item \helpref{wxStatusBar}{wxstatusbar}
496\item \helpref{wxSysColourChangedEvent}{wxsyscolourchangedevent}
497\item \helpref{wxTaskBarIcon}{wxtaskbaricon}
498\item \helpref{wxTextCtrl}{wxtextctrl}
499\item \helpref{wxTextEntryDialog}{wxtextentrydialog}
500\item \helpref{wxTimer}{wxtimer}
501\item wxToolBarTool
502\item \helpref{wxToolBar}{wxtoolbar}
503\item wxToolTip
504\item \helpref{wxTreeCtrl}{wxtreectrl}
505\item \helpref{wxTreeEvent}{wxtreeevent}
506\item \helpref{wxTreeItemData}{wxtreeitemdata}
507\item wxTreeItemId
508\item \helpref{wxUpdateUIEvent}{wxupdateuievent}
509\item \helpref{wxValidator}{wxvalidator}
510\item \helpref{wxWindowDC}{wxwindowdc}
511\item \helpref{wxWindow}{wxwindow}
512
513
514
515\end{itemize}
516
517%----------------------------------------------------------------------
518\section{Where to go for help}\label{wxphelp}
519
520Since wxPython is a blending of multiple technologies, help comes from
521multiple sources. See
522\urlref{http://alldunn.com/wxPython}{http://alldunn.com/wxPython} for details on
523various sources of help, but probably the best source is the
524wxPython-users mail list. You can view the archive or subscribe by
525going to
526
527\urlref{http://starship.python.net/mailman/listinfo/wxpython-users}{http://starship.python.net/mailman/listinfo/wxpython-users}
528
529Or you can send mail directly to the list using this address:
530
531wxpython-users@starship.python.net
532