]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/README.txt
1. wxStaticLine implemented (generic (ugly) and MSW versions)
[wxWidgets.git] / utils / wxPython / README.txt
CommitLineData
7bf85405
RD
1wxPython README
2---------------
3
c127177f
RD
4Welcome to the wonderful world of wxPython!
5
bb0054cd 6Once you have installed the wxPython extension module, you can try it
c127177f
RD
7out by going to the [install dir]\wxPython\demo directory and typing:
8
9 python demo.py
10
11There are also some other sample files there for you to play with and
12learn from.
13
14If you selected to install the documentation then point your browser
15to [install dir]\wxPython\docs\index.htm and you will then be looking
16at the docs for wxWindows. For the most part you can use the C++ docs
17as most classes and methods are used identically. Where there are
18differences they are documented with a "wxPython Note."
af309447 19
bb0054cd
RD
20On Win32 systems the binary self-installer creates a program group on
21the Start Menu that contains a link to running the demo and a link to
22the help file. To help you save disk space I'm now using Microsoft's
23HTML Help format. If your system doesn't know what to do with the help
24file, you can install the HTML Help Viewer as part of IE 4+, NT
25Service Pack 4+, or the HTML Workshop at
a08cbc01 26
bb0054cd
RD
27http://msdn.microsoft.com/workshop/author/htmlhelp/download.asp.
28
af309447
RD
29
30
31Getting Help
32------------
33
34Since wxPython is a blending of multiple technologies, help comes from
35multiple sources. See the http://alldunn.com/wxPython for details on
36various sources of help, but probably the best source is the
37wxPython-users mail list. You can view the archive or subscribe by
38going to
39
40 http://starship.python.net/mailman/listinfo/wxpython-users
41
42Or you can send mail directly to the list using this address:
43
44 wxpython-users@starship.python.net
45
bb0054cd
RD
46----------------------------------------------------------------------
47
48
49What's new in 2.1b1
50--------------------
51Fixed wxComboBox.SetSelection so that it actually sets the selected
52item. (Actually just removed it from wxPython and let it default to
53wxChoice.SetSelection which was already doing the right thing.)
54
55Added the Printing Framework.
56
57Switched back to using the wxWindows DLL for the pre-built Win32
58version. The problem was needing to reinitialize static class info
59data after loading each extension module.
60
61Lots of little tweaks and additions to reflect changes to various
62wxWindows classes.
63
64Fixed a bug with attaching objects to tree items. Actually was a
65symptom of a larger problem with not obtaining the interpreter lock
66when doing any Py_DECREFs.
67
68wxSizer and friends. Sizers are layout tools that manage a colection
69of windows and sizers. Different types of sizers apply different
70types of layout algorithms. You saw it here first! These classes are
71not even in the wxWindows C++ library yet!
72
73
af309447 74
cf694132
RD
75What's new in 2.0b9
76-------------------
77Bug fix for ListCtrl in test4.py (Was a missing file... DSM!)
78
79Bug fix for occassional GPF on Win32 systems upon termination of a
80wxPython application.
81
82Added wxListBox.GetSelections returning selections as a Tuple.
83
84Added a wxTreeItemData that is able to hold any Python object and be
85associated with items in a wxTreeCtrl. Added test pytree.py to show
86this feature off.
87
88Added wxSafeYield function.
89
90OpenGL Canvas can be optionally compiled in to wxPython.
91
92Awesome new Demo Framework for showing off wxPython and for learning
93how it all works.
94
95The pre-built Win32 version is no longer distributing the wxWindows
96DLL. It is statically linked with the wxWindows library instead.
97
98Added a couple missing items from the docs.
99
100Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
101wxGIFHandler and wxBMPHandler.
102
d403febc
RD
103Added new methods to wxTextCtrl.
104
c127177f
RD
105Fixed some problems with how SWIG was wrapping some wxTreeCtrl
106methods.
107
cf694132
RD
108
109
110What's new in 2.0b8
111-------------------
112Support for using Python threads in wxPython apps.
113
114Several missing methods from various classes.
115
116Various bug fixes.
117
118
119
120What's new in 2.0b7
121-------------------
122Added DLG_PNT and DLG_SZE convienience methods to wxWindow class.
123
124Added missing constructor and other methods for wxMenuItem.
125
126
127
128What's new in 2.0b6
129-------------------
130Just a quickie update to fix the self-installer to be compatible with
131Python 1.5.2b2's Registry settings.
132
af309447
RD
133
134What's new in 2.0b5
135-------------------
136Well obviously the numbering scheme has changed. I did this to
137reflect the fact that this truly is the second major revision of
138wxPython, (well the third actually if you count the one I did for
139wxWindows 1.68 and then threw away...) and also that it is associated
140with the 2.0 version of wxWindows.
141
142I have finally started documenting wxPython. There are several pages
143in the wxWindows documentation tree specifically about wxPython, and I
c127177f 144have added notes within the class references about where and how wxPython
af309447
RD
145diverges from wxWindows.
146
21f8d7ea
RD
147Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
148window handle. If you can get the window handle into the python code,
149it should just work... More news on this later.
150
151Added wxImageList, wxToolTip.
152
153Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
154wxRegConfig class.
155
af309447
RD
156As usual, some bug fixes, tweaks, etc.
157
7bf85405
RD
158
159
08127323
RD
160What's new in 0.5.3
161-------------------
162Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
163
164Various cleanup, tweaks, minor additions, etc. to maintain
165compatibility with the current wxWindows.
166
167
168
b8b8dda7
RD
169What's new in 0.5.0
170-------------------
171Changed the import semantics from "from wxPython import *" to "from
172wxPython.wx import *" This is for people who are worried about
173namespace pollution, they can use "from wxPython import wx" and then
174prefix all the wxPython identifiers with "wx."
175
176Added wxTaskbarIcon for wxMSW.
177
178Made the events work for wxGrid.
179
180Added wxConfig.
181
08127323 182Added wxMiniFrame for wxGTK.
b8b8dda7
RD
183
184Changed many of the args and return values that were pointers to gdi
185objects to references to reflect changes in the wxWindows API.
186
187Other assorted fixes and additions.
188
189
190
607d79b8
RD
191
192What's new in 0.4.2
193-------------------
194
195wxPython on wxGTK works!!! Both dynamic and static on Linux and
196static on Solaris have been tested. Many thanks go to Harm
197<H.v.d.Heijden@phys.tue.nl> for his astute detective work on tracking
198down a nasty DECREF bug. Okay so I have to confess that it was just a
199DSM (Dumb Stupid Mistake) on my part but it was nasty none the less
200because the behavior was so different on different platforms.
201
607d79b8
RD
202The dynamicly loaded module on Solaris is still segfaulting, so it
203must have been a different issue all along...
204
205
206
9c039d08
RD
207What's New in 0.4
208-----------------
607d79b8 209
9c039d08
RD
2101. Worked on wxGTK compatibility. It is partially working. On a
211Solaris/Sparc box wxPython is working but only when it is statically
212linked with the Python interpreter. When built as a dyamically loaded
607d79b8
RD
213extension module, things start acting weirdly and it soon seg-faults.
214And on Linux both the statically linked and the dynamically linked
215version segfault shortly after starting up.
9c039d08
RD
216
2172. Added Toolbar, StatusBar and SplitterWindow classes.
218
2193. Varioius bug fixes, enhancements, etc.
220
bb0054cd 221----------------------------------------------------------------------
9c039d08 222
7bf85405 223
c127177f 224
7bf85405
RD
225Build Instructions
226------------------
227I used SWIG (http://www.swig.org) to create the source code for the
228extension module. This enabled me to only have to deal with a small
d279310d 229amount of code and only have to bother with the exceptional issues.
7bf85405
RD
230SWIG takes care of the rest and generates all the repetative code for
231me. You don't need SWIG to build the extension module as all the
607d79b8
RD
232generated C++ code is included under the src directory.
233
234I added a few minor features to SWIG to control some of the code
235generation. If you want to playaround with this the patches are in
236wxPython/SWIG.patches and they should be applied to the 1.1p5 version
237of SWIG. These new patches are documented at
c127177f
RD
238http://starship.skyport.net/crew/robind/#swig, and they should also
239end up in the 1.2 version of SWIG.
7bf85405
RD
240
241wxPython is organized as a Python package. This means that the
242directory containing the results of the build process should be a
243subdirectory of a directory on the PYTHONPATH. (And preferably should
607d79b8 244be named wxPython.) You can control where the build process will dump
7bf85405
RD
245wxPython by setting the TARGETDIR makefile variable. The default is
246$(WXWIN)/utils/wxPython, where this README.txt is located. If you
247leave it here then you should add $(WXWIN)/utils to your PYTHONPATH.
248However, you may prefer to use something that is already on your
249PYTHONPATH, such as the site-packages directory on Unix systems.
250
251
252Win32
253-----
254
9c039d08
RD
2551. Build wxWindows with wxUSE_RESOURCE_LOADING_IN_MSW set to 1 in
256include/wx/msw/setup.h so icons can be loaded dynamically. While
257there, make sure wxUSE_OWNER_DRAWN is also set to 1.
7bf85405
RD
258
2592. Change into the $(WXWIN)/utils/wxPython/src directory.
260
0699c864 2613. Edit makefile.vc and specify where your python installation is at.
7bf85405
RD
262You may also want to fiddle with the TARGETDIR variable as described
263above.
264
0699c864 2654. Run nmake -f makefile.vc
7bf85405
RD
266
2675. If it builds successfully, congratulations! Move on to the next
268step. If not then you can try mailing me for help. Also, I will
d279310d 269always have a pre-built win32 version of this extension module at
c127177f 270http://alldunn.com/wxPython/.
7bf85405 271
c127177f 2726. Change to the $(WXWIN)/utils/wxPython/demo directory.
7bf85405 273
c127177f 2747. Try executing the demo program. For example:
7bf85405 275
c127177f 276 python demo.py
7bf85405 277
c127177f 278To run it without requiring a console, you can use the pythonw.exe
7bf85405
RD
279version of Python either from the command line or from a shortcut.
280
281
282
283Unix
284----
e6c95f27
RD
2850. I configure wxWindows like this, YMMV:
286
287./configure --with-gtk --without-shared --with-threads --without-unicode --with-libjpeg
288
7bf85405 289
7bf85405
RD
2901. Change into the $(WXWIN)/utils/wxPython/src directory.
291
2922. Edit Setup.in and ensure that the flags, directories, and toolkit
607d79b8
RD
293options are correct. See the above commentary about TARGETDIR. There
294are a few sample Setup.in.[platform] files provided.
7bf85405
RD
295
2963. Run this command to generate a makefile:
297
298 make -f Makefile.pre.in boot
299
3004. Run these commands to build and then install the wxPython extension
301module:
302
303 make
304 make install
305
306
c127177f 3075. Change to the $(WXWIN)/utils/wxPython/demo directory.
7bf85405 308
c127177f 3096. Try executing the demo program. For example:
7bf85405 310
c127177f 311 python demo.py
7bf85405 312
c127177f 313----------------
7bf85405 314Robin Dunn
2d6dfbb7 315robin@alldunn.com
607d79b8
RD
316
317
318