]>
Commit | Line | Data |
---|---|---|
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 |
6 | This addendum is written by Robin Dunn, author of the wxPython wrapper |
7 | ||
06d20283 RD |
8 | %---------------------------------------------------------------------- |
9 | \section{What is wxPython?}\label{wxpwhat} | |
10 | ||
f899db6d | 11 | wxPython 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 | 16 | So what is Python? Go to |
7e9a386e JS |
17 | \urlref{http://www.python.org}{http://www.python.org} to learn more, |
18 | but in a nutshell Python is an interpreted, | |
06d20283 RD |
19 | interactive, object-oriented programming language. It is often |
20 | compared to Tcl, Perl, Scheme or Java. | |
21 | ||
22 | Python combines remarkable power with very clear syntax. It has | |
23 | modules, classes, exceptions, very high level dynamic data types, and | |
24 | dynamic typing. There are interfaces to many system calls and | |
25 | libraries, and new built-in modules are easily written in C or | |
26 | C++. Python is also usable as an extension language for applications | |
27 | that need a programmable interface. | |
28 | ||
29 | Python is copyrighted but freely usable and distributable, even for | |
30 | commercial use. | |
31 | ||
32 | \wxheading{wxPython} | |
33 | ||
34 | wxPython is a Python package that can be imported at runtime that | |
35 | includes a collection of Python modules and an extension module | |
7e9a386e JS |
36 | (native code). It provides a series of Python classes that mirror (or |
37 | shadow) many of the wxWindows GUI classes. This extension module | |
c9f00eeb | 38 | attempts to mirror the class heirarchy of wxWindows as closely as |
f6bcfd97 | 39 | possible. This means that there is a wxFrame class in wxPython that |
06d20283 RD |
40 | looks, smells, tastes and acts almost the same as the wxFrame class in |
41 | the C++ version. | |
42 | ||
7e9a386e | 43 | wxPython is very versitile. It can be used to create standalone GUI |
06d20283 RD |
44 | applications, or in situations where Python is embedded in a C++ |
45 | application as an internal scripting or macro language. | |
46 | ||
47 | Currently wxPython is available for Win32 platforms and the GTK | |
c9f00eeb RD |
48 | toolkit (wxGTK) on most Unix/X-windows platforms. See the wxPython |
49 | website \urlref{http://wxPython.org/}{http://wxPython.org/} for | |
2a47d3c1 | 50 | details about getting wxPython working for you. |
06d20283 | 51 | |
06d20283 RD |
52 | %---------------------------------------------------------------------- |
53 | \section{Why use wxPython?}\label{wxpwhy} | |
54 | ||
06d20283 | 55 | So why would you want to use wxPython over just C++ and wxWindows? |
c9f00eeb RD |
56 | Personally I prefer using Python for everything. I only use C++ when I |
57 | absolutely have to eek more performance out of an algorithm, and even | |
f6bcfd97 | 58 | then I usually code it as an extension module and leave the majority |
06d20283 RD |
59 | of the program in Python. |
60 | ||
61 | Another good thing to use wxPython for is quick prototyping of your | |
7e9a386e JS |
62 | wxWindows apps. With C++ you have to continuously go though the |
63 | edit-compile-link-run cycle, which can be quite time consuming. With | |
64 | Python it is only an edit-run cycle. You can easily build an | |
06d20283 | 65 | application in a few hours with Python that would normally take a few |
7e9a386e | 66 | days or longer with C++. Converting a wxPython app to a C++/wxWindows app |
06d20283 RD |
67 | should be a straight forward task. |
68 | ||
06d20283 RD |
69 | %---------------------------------------------------------------------- |
70 | \section{Other Python GUIs}\label{wxpother} | |
71 | ||
72 | There are other GUI solutions out there for Python. | |
73 | ||
74 | \wxheading{Tkinter} | |
75 | ||
7e9a386e JS |
76 | Tkinter is the defacto standard GUI for Python. It is available |
77 | on nearly every platform that Python and Tcl/TK are. Why Tcl/Tk? | |
06d20283 RD |
78 | Well because Tkinter is just a wrapper around Tcl's GUI toolkit, Tk. |
79 | This has its upsides and its downsides... | |
80 | ||
7e9a386e JS |
81 | The upside is that Tk is a pretty versatile toolkit. It can be made |
82 | to do a lot of things in a lot of different environments. It is fairly | |
f6bcfd97 | 83 | easy to create new widgets and use them interchangeably in your |
06d20283 RD |
84 | programs. |
85 | ||
7e9a386e | 86 | The downside is Tcl. When using Tkinter you actually have two |
06d20283 | 87 | separate language interpreters running, the Python interpreter and the |
7e9a386e JS |
88 | Tcl interpreter for the GUI. Since the guts of Tcl is mostly about |
89 | string processing, it is fairly slow as well. (Not too bad on a fast | |
06d20283 RD |
90 | Pentium II, but you really notice the difference on slower machines.) |
91 | ||
f6bcfd97 | 92 | It wasn't until the latest version of Tcl/Tk that native Look and |
7e9a386e JS |
93 | Feel was possible on non-Motif platforms. This is because Tk |
94 | usually implements its own widgets (controls) even when there are | |
06d20283 RD |
95 | native controls available. |
96 | ||
7e9a386e | 97 | Tkinter 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 |
99 | level of abstraction. | |
100 | ||
101 | \wxheading{PythonWin} | |
102 | ||
7e9a386e JS |
103 | PythonWin is an add-on package for Python for the Win32 platform. It |
104 | includes wrappers for MFC as well as much of the Win32 API. Because | |
06d20283 | 105 | of its foundation, it is very familiar for programmers who have |
7e9a386e JS |
106 | experience with MFC and the Win32 API. It is obviously not compatible |
107 | with other platforms and toolkits. PythonWin is organized as separate | |
06d20283 RD |
108 | packages and modules so you can use the pieces you need without having |
109 | to use the GUI portions. | |
110 | ||
111 | \wxheading{Others} | |
112 | ||
113 | There are quite a few other GUI modules available for Python, some in | |
f6bcfd97 | 114 | active use, some that haven't been updated for ages. Most are simple |
06d20283 | 115 | wrappers around some C or C++ toolkit or another, and most are not |
f6bcfd97 | 116 | cross-platform compatible. See \urlref{this link}{http://www.python.org/download/Contributed.html\#Graphics} |
06d20283 RD |
117 | for 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 | 125 | I'm not going to try and teach the Python language here. You can do |
06d20283 RD |
126 | that at the \urlref{Python Tutorial}{http://www.python.org/doc/tut/tut.html}. |
127 | I'm also going to assume that you know a bit about wxWindows already, | |
128 | enough to notice the similarities in the classes used. | |
129 | ||
7e9a386e | 130 | Take a look at the following wxPython program. You can find a similar |
c9110876 | 131 | program in the {\tt wxPython/demo} directory, named {\tt DialogUnits.py}. If your |
06d20283 RD |
132 | Python and wxPython are properly installed, you should be able to run |
133 | it 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} | |
142 | 001: ## import all of the wxPython GUI package | |
143 | 002: from wxPython.wx import * | |
144 | 003: | |
145 | 004: ## Create a new frame class, derived from the wxPython Frame. | |
146 | 005: class MyFrame(wxFrame): | |
147 | 006: | |
148 | 007: def __init__(self, parent, id, title): | |
149 | 008: # First, call the base class' __init__ method to create the frame | |
150 | 009: wxFrame.__init__(self, parent, id, title, | |
151 | 010: wxPoint(100, 100), wxSize(160, 100)) | |
152 | 011: | |
153 | 012: # Associate some events with methods of this class | |
154 | 013: EVT_SIZE(self, self.OnSize) | |
155 | 014: EVT_MOVE(self, self.OnMove) | |
156 | 015: | |
157 | 016: # Add a panel and some controls to display the size and position | |
158 | 017: panel = wxPanel(self, -1) | |
159 | 018: wxStaticText(panel, -1, "Size:", | |
160 | 019: wxDLG_PNT(panel, wxPoint(4, 4)), wxDefaultSize) | |
161 | 020: wxStaticText(panel, -1, "Pos:", | |
162 | 021: wxDLG_PNT(panel, wxPoint(4, 14)), wxDefaultSize) | |
163 | 022: self.sizeCtrl = wxTextCtrl(panel, -1, "", | |
164 | 023: wxDLG_PNT(panel, wxPoint(24, 4)), | |
165 | 024: wxDLG_SZE(panel, wxSize(36, -1)), | |
166 | 025: wxTE_READONLY) | |
167 | 026: self.posCtrl = wxTextCtrl(panel, -1, "", | |
168 | 027: wxDLG_PNT(panel, wxPoint(24, 14)), | |
169 | 028: wxDLG_SZE(panel, wxSize(36, -1)), | |
170 | 029: wxTE_READONLY) | |
171 | 030: | |
172 | 031: | |
173 | 032: # This method is called automatically when the CLOSE event is | |
174 | 033: # sent to this window | |
175 | 034: def OnCloseWindow(self, event): | |
176 | 035: # tell the window to kill itself | |
177 | 036: self.Destroy() | |
178 | 037: | |
179 | 038: # This method is called by the system when the window is resized, | |
180 | 039: # because of the association above. | |
181 | 040: def OnSize(self, event): | |
182 | 041: size = event.GetSize() | |
183 | 042: self.sizeCtrl.SetValue("%s, %s" % (size.width, size.height)) | |
184 | 043: | |
185 | 044: # tell the event system to continue looking for an event handler, | |
186 | 045: # so the default handler will get called. | |
187 | 046: event.Skip() | |
188 | 047: | |
189 | 048: # This method is called by the system when the window is moved, | |
190 | 049: # because of the association above. | |
191 | 050: def OnMove(self, event): | |
192 | 051: pos = event.GetPosition() | |
193 | 052: self.posCtrl.SetValue("%s, %s" % (pos.x, pos.y)) | |
194 | 053: | |
195 | 054: | |
196 | 055: # Every wxWindows application must have a class derived from wxApp | |
197 | 056: class MyApp(wxApp): | |
198 | 057: | |
199 | 058: # wxWindows calls this method to initialize the application | |
200 | 059: def OnInit(self): | |
201 | 060: | |
202 | 061: # Create an instance of our customized Frame class | |
203 | 062: frame = MyFrame(NULL, -1, "This is a test") | |
204 | 063: frame.Show(true) | |
205 | 064: | |
206 | 065: # Tell wxWindows that this is our main window | |
207 | 066: self.SetTopWindow(frame) | |
208 | 067: | |
209 | 068: # Return a success flag | |
210 | 069: return true | |
211 | 070: | |
212 | 071: | |
213 | 072: app = MyApp(0) # Create an instance of the application class | |
214 | 073: app.MainLoop() # Tell it to start processing events | |
215 | 074: | |
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 | 223 | into the current module's namespace. If you prefer to reduce |
c9110876 | 224 | namespace pollution you can use "{\tt from wxPython import wx}" and |
06d20283 | 225 | then access all the wxPython identifiers through the wx module, for |
c9110876 | 226 | example, "{\tt wx.wxFrame}". |
06d20283 | 227 | \item At line 13 the frame's sizing and moving events are connected to |
7e9a386e JS |
228 | methods of the class. These helper functions are intended to be like |
229 | the event table macros that wxWindows employs. But since static event | |
06d20283 | 230 | tables are impossible with wxPython, we use helpers that are named the |
7e9a386e | 231 | same to dynamically build the table. The only real difference is |
f6bcfd97 | 232 | that the first argument to the event helpers is always the window that |
06d20283 | 233 | the 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 | 236 | to 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 |
238 | EVT\_CLOSE to attach the event to the method. Does it really get |
239 | called? 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 | |
242 | C++ classes in this area to determine what is {\em standard} but since | |
f6bcfd97 | 243 | that changes from time to time I can make no guarantees, nor will it |
7e9a386e | 244 | be 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 | 246 | the panel or the static text items that are created. Those of you |
06d20283 | 247 | who know Python might be wondering what happens when Python deletes |
7e9a386e JS |
248 | these objects when they go out of scope. Do they disappear from the GUI? They |
249 | don't. Remember that in wxPython the Python objects are just shadows of the | |
f6bcfd97 | 250 | corresponding C++ objects. Once the C++ windows and controls are |
06d20283 | 251 | attached to their parents, the parents manage them and delete them |
7e9a386e | 252 | when necessary. For this reason, most wxPython objects do not need to |
2a47d3c1 | 253 | have a \_\_del\_\_ method that explicitly causes the C++ object to be |
7e9a386e | 254 | deleted. If you ever have the need to forcibly delete a window, use |
06d20283 | 255 | the Destroy() method as shown on line 36. |
06d20283 | 256 | \item Just like wxWindows in C++, wxPython apps need to create a class |
c9110876 VS |
257 | derived from {\tt wxApp} (line 56) that implements a method named |
258 | {\tt OnInit}, (line 59.) This method should create the application's | |
259 | main window (line 62) and use {\tt wxApp.SetTopWindow()} (line 66) to | |
06d20283 | 260 | inform wxWindows about it. |
06d20283 | 261 | \item And finally, at line 72 an instance of the application class is |
7e9a386e | 262 | created. At this point wxPython finishes initializing itself, and calls |
c9110876 | 263 | the {\tt OnInit} method to get things started. (The zero parameter here is |
7e9a386e | 264 | a flag for functionality that isn't quite implemented yet. Just |
c9110876 | 265 | ignore it for now.) The call to {\tt MainLoop} at line 73 starts the event |
06d20283 RD |
266 | loop which continues until the application terminates or all the top |
267 | level windows are closed. | |
06d20283 RD |
268 | \end{enumerate} |
269 | ||
06d20283 RD |
270 | %---------------------------------------------------------------------- |
271 | \section{wxWindows classes implemented in wxPython}\label{wxpclasses} | |
272 | ||
7e9a386e | 273 | The following classes are supported in wxPython. Most provide nearly |
06d20283 | 274 | full implementations of the public interfaces specified in the C++ |
7e9a386e | 275 | documentation, others are less so. They will all be brought as close |
06d20283 RD |
276 | as 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 | ||
470 | Since wxPython is a blending of multiple technologies, help comes from | |
f6bcfd97 BP |
471 | multiple sources. See |
472 | \urlref{http://wxpython.org/}{http://wxpython.org/} for details on | |
06d20283 | 473 | various sources of help, but probably the best source is the |
7e9a386e | 474 | wxPython-users mail list. You can view the archive or subscribe by |
06d20283 RD |
475 | going to |
476 | ||
b659a828 | 477 | \urlref{http://lists.wxwindows.org/mailman/listinfo/wxpython-users}{http://lists.wxwindows.org/mailman/listinfo/wxpython-users} |
06d20283 RD |
478 | |
479 | Or you can send mail directly to the list using this address: | |
480 | ||
b659a828 | 481 | wxpython-users@lists.wxwindows.org |
f6bcfd97 | 482 | |
06d20283 | 483 |