]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/wxPython.tex
added wxWindow::Freeze/Thaw(), implemented them for wxGTK::wxTextCtrl
[wxWidgets.git] / docs / latex / wx / wxPython.tex
CommitLineData
06d20283 1\chapter{wxPython Notes}\label{wxPython}
605d715d 2
06d20283
RD
3\setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}%
4\setfooter{\thepage}{}{}{}{}{\thepage}%
5
2a47d3c1
JS
6This addendum is written by Robin Dunn, author of the wxPython wrapper
7
06d20283
RD
8%----------------------------------------------------------------------
9\section{What is wxPython?}\label{wxpwhat}
10
f899db6d 11wxPython is a blending of the wxWindows GUI classes and the
06d20283
RD
12\urlref{Python}{http://www.python.org/} programming language.
13
14\wxheading{Python}
15
76e1c2de 16So what is Python? Go to
7e9a386e
JS
17\urlref{http://www.python.org}{http://www.python.org} to learn more,
18but in a nutshell Python is an interpreted,
06d20283
RD
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
7e9a386e
JS
36(native code). It provides a series of Python classes that mirror (or
37shadow) many of the wxWindows GUI classes. This extension module
c9f00eeb 38attempts to mirror the class heirarchy of wxWindows as closely as
f6bcfd97 39possible. This means that there is a wxFrame class in wxPython that
06d20283
RD
40looks, smells, tastes and acts almost the same as the wxFrame class in
41the C++ version.
42
7e9a386e 43wxPython is very versitile. It can be used to create standalone GUI
06d20283
RD
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
c9f00eeb
RD
48toolkit (wxGTK) on most Unix/X-windows platforms. See the wxPython
49website \urlref{http://wxPython.org/}{http://wxPython.org/} for
2a47d3c1 50details about getting wxPython working for you.
06d20283 51
06d20283
RD
52%----------------------------------------------------------------------
53\section{Why use wxPython?}\label{wxpwhy}
54
06d20283 55So why would you want to use wxPython over just C++ and wxWindows?
c9f00eeb
RD
56Personally I prefer using Python for everything. I only use C++ when I
57absolutely have to eek more performance out of an algorithm, and even
f6bcfd97 58then I usually code it as an extension module and leave the majority
06d20283
RD
59of the program in Python.
60
61Another good thing to use wxPython for is quick prototyping of your
7e9a386e
JS
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
06d20283 65application in a few hours with Python that would normally take a few
7e9a386e 66days or longer with C++. Converting a wxPython app to a C++/wxWindows app
06d20283
RD
67should be a straight forward task.
68
06d20283
RD
69%----------------------------------------------------------------------
70\section{Other Python GUIs}\label{wxpother}
71
72There are other GUI solutions out there for Python.
73
74\wxheading{Tkinter}
75
7e9a386e
JS
76Tkinter is the defacto standard GUI for Python. It is available
77on nearly every platform that Python and Tcl/TK are. Why Tcl/Tk?
06d20283
RD
78Well because Tkinter is just a wrapper around Tcl's GUI toolkit, Tk.
79This has its upsides and its downsides...
80
7e9a386e
JS
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
f6bcfd97 83easy to create new widgets and use them interchangeably in your
06d20283
RD
84programs.
85
7e9a386e 86The downside is Tcl. When using Tkinter you actually have two
06d20283 87separate language interpreters running, the Python interpreter and the
7e9a386e
JS
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
06d20283
RD
90Pentium II, but you really notice the difference on slower machines.)
91
f6bcfd97 92It wasn't until the latest version of Tcl/Tk that native Look and
7e9a386e
JS
93Feel was possible on non-Motif platforms. This is because Tk
94usually implements its own widgets (controls) even when there are
06d20283
RD
95native controls available.
96
7e9a386e 97Tkinter is a pretty low-level toolkit. You have to do a lot of work
06d20283
RD
98(verbose program code) to do things that would be much simpler with a higher
99level of abstraction.
100
101\wxheading{PythonWin}
102
7e9a386e
JS
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
06d20283 105of its foundation, it is very familiar for programmers who have
7e9a386e
JS
106experience with MFC and the Win32 API. It is obviously not compatible
107with other platforms and toolkits. PythonWin is organized as separate
06d20283
RD
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
f6bcfd97 114active use, some that haven't been updated for ages. Most are simple
06d20283 115wrappers around some C or C++ toolkit or another, and most are not
f6bcfd97 116cross-platform compatible. See \urlref{this link}{http://www.python.org/download/Contributed.html\#Graphics}
06d20283
RD
117for a listing of a few of them.
118
06d20283 119
06d20283
RD
120%----------------------------------------------------------------------
121\section{Using wxPython}\label{wxpusing}
122
123\wxheading{First things first...}
124
7e9a386e 125I'm not going to try and teach the Python language here. You can do
06d20283
RD
126that at the \urlref{Python Tutorial}{http://www.python.org/doc/tut/tut.html}.
127I'm also going to assume that you know a bit about wxWindows already,
128enough to notice the similarities in the classes used.
129
7e9a386e 130Take a look at the following wxPython program. You can find a similar
c9110876 131program in the {\tt wxPython/demo} directory, named {\tt DialogUnits.py}. If your
06d20283
RD
132Python and wxPython are properly installed, you should be able to run
133it by issuing this command:
134
135\begin{indented}{1cm}
605d715d 136 {\bf\tt python DialogUnits.py}
06d20283
RD
137\end{indented}
138
139\hrule
140
141\begin{verbatim}
142001: ## import all of the wxPython GUI package
143002: from wxPython.wx import *
144003:
145004: ## Create a new frame class, derived from the wxPython Frame.
146005: class MyFrame(wxFrame):
147006:
148007: def __init__(self, parent, id, title):
149008: # First, call the base class' __init__ method to create the frame
150009: wxFrame.__init__(self, parent, id, title,
151010: wxPoint(100, 100), wxSize(160, 100))
152011:
153012: # Associate some events with methods of this class
154013: EVT_SIZE(self, self.OnSize)
155014: EVT_MOVE(self, self.OnMove)
156015:
157016: # Add a panel and some controls to display the size and position
158017: panel = wxPanel(self, -1)
159018: wxStaticText(panel, -1, "Size:",
160019: wxDLG_PNT(panel, wxPoint(4, 4)), wxDefaultSize)
161020: wxStaticText(panel, -1, "Pos:",
162021: wxDLG_PNT(panel, wxPoint(4, 14)), wxDefaultSize)
163022: self.sizeCtrl = wxTextCtrl(panel, -1, "",
164023: wxDLG_PNT(panel, wxPoint(24, 4)),
165024: wxDLG_SZE(panel, wxSize(36, -1)),
166025: wxTE_READONLY)
167026: self.posCtrl = wxTextCtrl(panel, -1, "",
168027: wxDLG_PNT(panel, wxPoint(24, 14)),
169028: wxDLG_SZE(panel, wxSize(36, -1)),
170029: wxTE_READONLY)
171030:
172031:
173032: # This method is called automatically when the CLOSE event is
174033: # sent to this window
175034: def OnCloseWindow(self, event):
176035: # tell the window to kill itself
177036: self.Destroy()
178037:
179038: # This method is called by the system when the window is resized,
180039: # because of the association above.
181040: def OnSize(self, event):
182041: size = event.GetSize()
183042: self.sizeCtrl.SetValue("%s, %s" % (size.width, size.height))
184043:
185044: # tell the event system to continue looking for an event handler,
186045: # so the default handler will get called.
187046: event.Skip()
188047:
189048: # This method is called by the system when the window is moved,
190049: # because of the association above.
191050: def OnMove(self, event):
192051: pos = event.GetPosition()
193052: self.posCtrl.SetValue("%s, %s" % (pos.x, pos.y))
194053:
195054:
196055: # Every wxWindows application must have a class derived from wxApp
197056: class MyApp(wxApp):
198057:
199058: # wxWindows calls this method to initialize the application
200059: def OnInit(self):
201060:
202061: # Create an instance of our customized Frame class
203062: frame = MyFrame(NULL, -1, "This is a test")
204063: frame.Show(true)
205064:
206065: # Tell wxWindows that this is our main window
207066: self.SetTopWindow(frame)
208067:
209068: # Return a success flag
210069: return true
211070:
212071:
213072: app = MyApp(0) # Create an instance of the application class
214073: app.MainLoop() # Tell it to start processing events
215074:
216\end{verbatim}
217\hrule
218
2a47d3c1
JS
219\wxheading{Things to notice}
220
154f22b3 221\begin{enumerate}\itemsep=11pt
06d20283 222\item At line 2 the wxPython classes, constants, and etc. are imported
7e9a386e 223into the current module's namespace. If you prefer to reduce
c9110876 224namespace pollution you can use "{\tt from wxPython import wx}" and
06d20283 225then access all the wxPython identifiers through the wx module, for
c9110876 226example, "{\tt wx.wxFrame}".
06d20283 227\item At line 13 the frame's sizing and moving events are connected to
7e9a386e
JS
228methods of the class. These helper functions are intended to be like
229the event table macros that wxWindows employs. But since static event
06d20283 230tables are impossible with wxPython, we use helpers that are named the
7e9a386e 231same to dynamically build the table. The only real difference is
f6bcfd97 232that the first argument to the event helpers is always the window that
06d20283 233the event table entry should be added to.
c9110876 234\item Notice the use of {\tt wxDLG\_PNT} and {\tt wxDLG\_SZE} in lines 19
7e9a386e 235- 29 to convert from dialog units to pixels. These helpers are unique
06d20283 236to wxPython since Python can't do method overloading like C++.
c9110876 237\item There is an {\tt OnCloseWindow} method at line 34 but no call to
7e9a386e
JS
238EVT\_CLOSE to attach the event to the method. Does it really get
239called? The answer is, yes it does. This is because many of the
c9110876
VS
240{\em standard} events are attached to windows that have the associated
241{\em standard} method names. I have tried to follow the lead of the
242C++ classes in this area to determine what is {\em standard} but since
f6bcfd97 243that changes from time to time I can make no guarantees, nor will it
7e9a386e 244be fully documented. When in doubt, use an EVT\_*** function.
06d20283 245\item At lines 17 to 21 notice that there are no saved references to
7e9a386e 246the panel or the static text items that are created. Those of you
06d20283 247who know Python might be wondering what happens when Python deletes
7e9a386e
JS
248these objects when they go out of scope. Do they disappear from the GUI? They
249don't. Remember that in wxPython the Python objects are just shadows of the
f6bcfd97 250corresponding C++ objects. Once the C++ windows and controls are
06d20283 251attached to their parents, the parents manage them and delete them
7e9a386e 252when necessary. For this reason, most wxPython objects do not need to
2a47d3c1 253have a \_\_del\_\_ method that explicitly causes the C++ object to be
7e9a386e 254deleted. If you ever have the need to forcibly delete a window, use
06d20283 255the Destroy() method as shown on line 36.
06d20283 256\item Just like wxWindows in C++, wxPython apps need to create a class
c9110876
VS
257derived from {\tt wxApp} (line 56) that implements a method named
258{\tt OnInit}, (line 59.) This method should create the application's
259main window (line 62) and use {\tt wxApp.SetTopWindow()} (line 66) to
06d20283 260inform wxWindows about it.
06d20283 261\item And finally, at line 72 an instance of the application class is
7e9a386e 262created. At this point wxPython finishes initializing itself, and calls
c9110876 263the {\tt OnInit} method to get things started. (The zero parameter here is
7e9a386e 264a flag for functionality that isn't quite implemented yet. Just
c9110876 265ignore it for now.) The call to {\tt MainLoop} at line 73 starts the event
06d20283
RD
266loop which continues until the application terminates or all the top
267level windows are closed.
06d20283
RD
268\end{enumerate}
269
06d20283
RD
270%----------------------------------------------------------------------
271\section{wxWindows classes implemented in wxPython}\label{wxpclasses}
272
7e9a386e 273The following classes are supported in wxPython. Most provide nearly
06d20283 274full implementations of the public interfaces specified in the C++
7e9a386e 275documentation, others are less so. They will all be brought as close
06d20283
RD
276as possible to the C++ spec over time.
277
278\begin{itemize}\itemsep=0pt
279\item \helpref{wxAcceleratorEntry}{wxacceleratorentry}
280\item \helpref{wxAcceleratorTable}{wxacceleratortable}
281\item \helpref{wxActivateEvent}{wxactivateevent}
06d20283 282\item \helpref{wxBitmap}{wxbitmap}
564747ee
RD
283\item \helpref{wxBitmapButton}{wxbitmapbutton}
284\item \helpref{wxBitmapDataObject}{wxbitmapdataobject}
f899db6d 285\item wxBMPHandler
86e78222 286\item \helpref{wxBoxSizer}{wxboxsizer}
06d20283 287\item \helpref{wxBrush}{wxbrush}
b32c6ff0
RD
288\item \helpref{wxBusyInfo}{wxbusyinfo}
289\item \helpref{wxBusyCursor}{wxbusycursor}
06d20283
RD
290\item \helpref{wxButton}{wxbutton}
291\item \helpref{wxCalculateLayoutEvent}{wxcalculatelayoutevent}
f6bcfd97 292\item \helpref{wxCalendarCtrl}{wxcalendarctrl}
86e78222 293\item wxCaret
06d20283
RD
294\item \helpref{wxCheckBox}{wxcheckbox}
295\item \helpref{wxCheckListBox}{wxchecklistbox}
296\item \helpref{wxChoice}{wxchoice}
297\item \helpref{wxClientDC}{wxclientdc}
564747ee 298\item \helpref{wxClipboard}{wxclipboard}
06d20283
RD
299\item \helpref{wxCloseEvent}{wxcloseevent}
300\item \helpref{wxColourData}{wxcolourdata}
301\item \helpref{wxColourDialog}{wxcolourdialog}
302\item \helpref{wxColour}{wxcolour}
303\item \helpref{wxComboBox}{wxcombobox}
304\item \helpref{wxCommandEvent}{wxcommandevent}
305\item \helpref{wxConfig}{wxconfigbase}
306\item \helpref{wxControl}{wxcontrol}
307\item \helpref{wxCursor}{wxcursor}
564747ee
RD
308\item \helpref{wxCustomDataObject}{wxcustomdataobject}
309\item \helpref{wxDataFormat}{wxdataformat}
310\item \helpref{wxDataObject}{wxdataobject}
311\item \helpref{wxDataObjectComposite}{wxdataobjectcomposite}
312\item \helpref{wxDataObjectSimple}{wxdataobjectsimple}
f6bcfd97
BP
313\item \helpref{wxDateTime}{wxdatetime}
314\item \helpref{wxDateSpan}{wxdatespan}
06d20283
RD
315\item \helpref{wxDC}{wxdc}
316\item \helpref{wxDialog}{wxdialog}
317\item \helpref{wxDirDialog}{wxdirdialog}
f6bcfd97 318\item \helpref{wxDragImage}{wxdragimage}
06d20283 319\item \helpref{wxDropFilesEvent}{wxdropfilesevent}
564747ee
RD
320\item \helpref{wxDropSource}{wxdropsource}
321\item \helpref{wxDropTarget}{wxdroptarget}
06d20283
RD
322\item \helpref{wxEraseEvent}{wxeraseevent}
323\item \helpref{wxEvent}{wxevent}
324\item \helpref{wxEvtHandler}{wxevthandler}
f6bcfd97 325\item wxFileConfig
564747ee 326\item \helpref{wxFileDataObject}{wxfiledataobject}
06d20283 327\item \helpref{wxFileDialog}{wxfiledialog}
564747ee 328\item \helpref{wxFileDropTarget}{wxfiledroptarget}
c9f00eeb
RD
329\item \helpref{wxFileSystem}{wxfilesystem}
330\item \helpref{wxFileSystemHandler}{wxfilesystemhandler}
06d20283
RD
331\item \helpref{wxFocusEvent}{wxfocusevent}
332\item \helpref{wxFontData}{wxfontdata}
333\item \helpref{wxFontDialog}{wxfontdialog}
334\item \helpref{wxFont}{wxfont}
335\item \helpref{wxFrame}{wxframe}
c9f00eeb 336\item \helpref{wxFSFile}{wxfsfile}
06d20283 337\item \helpref{wxGauge}{wxgauge}
f899db6d
RD
338\item wxGIFHandler
339\item wxGLCanvas
f6bcfd97 340\begin{comment}
fd34e3a5
JS
341\item wxGridCell
342\item wxGridEvent
06d20283 343\item \helpref{wxGrid}{wxgrid}
f6bcfd97 344\end{comment}
86e78222
RD
345\item \helpref{wxHtmlCell}{wxhtmlcell}
346\item \helpref{wxHtmlContainerCell}{wxhtmlcontainercell}
b32c6ff0
RD
347\item \helpref{wxHtmlDCRenderer}{wxhtmldcrenderer}
348\item \helpref{wxHtmlEasyPrinting}{wxhtmleasyprinting}
86e78222
RD
349\item \helpref{wxHtmlParser}{wxhtmlparser}
350\item \helpref{wxHtmlTagHandler}{wxhtmltaghandler}
351\item \helpref{wxHtmlTag}{wxhtmltag}
352\item \helpref{wxHtmlWinParser}{wxhtmlwinparser}
b32c6ff0 353\item \helpref{wxHtmlPrintout}{wxhtmlprintout}
86e78222
RD
354\item \helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler}
355\item \helpref{wxHtmlWindow}{wxhtmlwindow}
fd34e3a5 356\item wxIconizeEvent
06d20283
RD
357\item \helpref{wxIcon}{wxicon}
358\item \helpref{wxIdleEvent}{wxidleevent}
f899db6d
RD
359\item \helpref{wxImage}{wximage}
360\item \helpref{wxImageHandler}{wximagehandler}
06d20283
RD
361\item \helpref{wxImageList}{wximagelist}
362\item \helpref{wxIndividualLayoutConstraint}{wxindividuallayoutconstraint}
363\item \helpref{wxInitDialogEvent}{wxinitdialogevent}
c9f00eeb 364\item \helpref{wxInputStream}{wxinputstream}
a98f98ac 365\item \helpref{wxInternetFSHandler}{fs}
06d20283 366\item \helpref{wxJoystickEvent}{wxjoystickevent}
f899db6d 367\item wxJPEGHandler
06d20283
RD
368\item \helpref{wxKeyEvent}{wxkeyevent}
369\item \helpref{wxLayoutAlgorithm}{wxlayoutalgorithm}
370\item \helpref{wxLayoutConstraints}{wxlayoutconstraints}
371\item \helpref{wxListBox}{wxlistbox}
372\item \helpref{wxListCtrl}{wxlistctrl}
373\item \helpref{wxListEvent}{wxlistevent}
21f280f4 374\item \helpref{wxListItem}{wxlistctrlsetitem}
c9f00eeb
RD
375\item \helpref{wxMask}{wxmask}
376\item wxMaximizeEvent
06d20283
RD
377\item \helpref{wxMDIChildFrame}{wxmdichildframe}
378\item \helpref{wxMDIClientWindow}{wxmdiclientwindow}
379\item \helpref{wxMDIParentFrame}{wxmdiparentframe}
06d20283 380\item \helpref{wxMemoryDC}{wxmemorydc}
c9f00eeb 381\item \helpref{wxMemoryFSHandler}{wxmemoryfshandler}
06d20283
RD
382\item \helpref{wxMenuBar}{wxmenubar}
383\item \helpref{wxMenuEvent}{wxmenuevent}
384\item \helpref{wxMenuItem}{wxmenuitem}
385\item \helpref{wxMenu}{wxmenu}
386\item \helpref{wxMessageDialog}{wxmessagedialog}
387\item \helpref{wxMetaFileDC}{wxmetafiledc}
388\item \helpref{wxMiniFrame}{wxminiframe}
389\item \helpref{wxMouseEvent}{wxmouseevent}
390\item \helpref{wxMoveEvent}{wxmoveevent}
391\item \helpref{wxNotebookEvent}{wxnotebookevent}
392\item \helpref{wxNotebook}{wxnotebook}
7bcb11d3 393\item \helpref{wxPageSetupDialogData}{wxpagesetupdialogdata}
06d20283
RD
394\item \helpref{wxPageSetupDialog}{wxpagesetupdialog}
395\item \helpref{wxPaintDC}{wxpaintdc}
396\item \helpref{wxPaintEvent}{wxpaintevent}
397\item \helpref{wxPalette}{wxpalette}
398\item \helpref{wxPanel}{wxpanel}
399\item \helpref{wxPen}{wxpen}
f899db6d 400\item wxPNGHandler
06d20283
RD
401\item \helpref{wxPoint}{wxpoint}
402\item \helpref{wxPostScriptDC}{wxpostscriptdc}
2233e5b8 403\item \helpref{wxPreviewFrame}{wxpreviewframe}
06d20283 404\item \helpref{wxPrintData}{wxprintdata}
2233e5b8 405\item \helpref{wxPrintDialogData}{wxprintdialogdata}
06d20283 406\item \helpref{wxPrintDialog}{wxprintdialog}
2233e5b8
RD
407\item \helpref{wxPrinter}{wxprinter}
408\item \helpref{wxPrintPreview}{wxprintpreview}
06d20283 409\item \helpref{wxPrinterDC}{wxprinterdc}
2233e5b8 410\item \helpref{wxPrintout}{wxprintout}
c9f00eeb 411\item \helpref{wxProcess}{wxprocess}
06d20283
RD
412\item \helpref{wxQueryLayoutInfoEvent}{wxquerylayoutinfoevent}
413\item \helpref{wxRadioBox}{wxradiobox}
414\item \helpref{wxRadioButton}{wxradiobutton}
415\item \helpref{wxRealPoint}{wxrealpoint}
416\item \helpref{wxRect}{wxrect}
417\item \helpref{wxRegionIterator}{wxregioniterator}
418\item \helpref{wxRegion}{wxregion}
419\item \helpref{wxSashEvent}{wxsashevent}
420\item \helpref{wxSashLayoutWindow}{wxsashlayoutwindow}
421\item \helpref{wxSashWindow}{wxsashwindow}
422\item \helpref{wxScreenDC}{wxscreendc}
423\item \helpref{wxScrollBar}{wxscrollbar}
424\item \helpref{wxScrollEvent}{wxscrollevent}
425\item \helpref{wxScrolledWindow}{wxscrolledwindow}
76e1c2de 426\item \helpref{wxScrollWinEvent}{wxscrollwinevent}
fd34e3a5 427\item wxShowEvent
06d20283
RD
428\item \helpref{wxSingleChoiceDialog}{wxsinglechoicedialog}
429\item \helpref{wxSizeEvent}{wxsizeevent}
430\item \helpref{wxSize}{wxsize}
86e78222 431\item \helpref{wxSizer}{wxsizer}
76e1c2de 432\item wxSizerItem
06d20283
RD
433\item \helpref{wxSlider}{wxslider}
434\item \helpref{wxSpinButton}{wxspinbutton}
fd34e3a5 435\item wxSpinEvent
06d20283
RD
436\item \helpref{wxSplitterWindow}{wxsplitterwindow}
437\item \helpref{wxStaticBitmap}{wxstaticbitmap}
438\item \helpref{wxStaticBox}{wxstaticbox}
86e78222 439\item \helpref{wxStaticBoxSizer}{wxstaticboxsizer}
154f22b3 440\item \helpref{wxStaticLine}{wxstaticline}
06d20283
RD
441\item \helpref{wxStaticText}{wxstatictext}
442\item \helpref{wxStatusBar}{wxstatusbar}
443\item \helpref{wxSysColourChangedEvent}{wxsyscolourchangedevent}
444\item \helpref{wxTaskBarIcon}{wxtaskbaricon}
445\item \helpref{wxTextCtrl}{wxtextctrl}
564747ee
RD
446\item \helpref{wxTextDataObject}{wxtextdataobject}
447\item \helpref{wxTextDropTarget}{wxtextdroptarget}
06d20283
RD
448\item \helpref{wxTextEntryDialog}{wxtextentrydialog}
449\item \helpref{wxTimer}{wxtimer}
f6bcfd97
BP
450\item \helpref{wxTimerEvent}{wxtimerevent}
451\item \helpref{wxTimeSpan}{wxtimespan}
452\item \helpref{wxTipProvider}{wxtipprovider}
fd34e3a5 453\item wxToolBarTool
06d20283 454\item \helpref{wxToolBar}{wxtoolbar}
fd34e3a5 455\item wxToolTip
06d20283
RD
456\item \helpref{wxTreeCtrl}{wxtreectrl}
457\item \helpref{wxTreeEvent}{wxtreeevent}
458\item \helpref{wxTreeItemData}{wxtreeitemdata}
fd34e3a5 459\item wxTreeItemId
06d20283 460\item \helpref{wxUpdateUIEvent}{wxupdateuievent}
76e1c2de 461\item \helpref{wxValidator}{wxvalidator}
06d20283
RD
462\item \helpref{wxWindowDC}{wxwindowdc}
463\item \helpref{wxWindow}{wxwindow}
a98f98ac 464\item \helpref{wxZipFSHandler}{fs}
06d20283
RD
465\end{itemize}
466
467%----------------------------------------------------------------------
468\section{Where to go for help}\label{wxphelp}
469
470Since wxPython is a blending of multiple technologies, help comes from
f6bcfd97
BP
471multiple sources. See
472\urlref{http://wxpython.org/}{http://wxpython.org/} for details on
06d20283 473various sources of help, but probably the best source is the
7e9a386e 474wxPython-users mail list. You can view the archive or subscribe by
06d20283
RD
475going to
476
b659a828 477\urlref{http://lists.wxwindows.org/mailman/listinfo/wxpython-users}{http://lists.wxwindows.org/mailman/listinfo/wxpython-users}
06d20283
RD
478
479Or you can send mail directly to the list using this address:
480
b659a828 481wxpython-users@lists.wxwindows.org
f6bcfd97 482
06d20283 483