]> git.saurik.com Git - wxWidgets.git/blame - utils/wxPython/distrib/SelfInst-README.txt
wxString docs are nearly complete (but don't compile :-( ), a brief threads
[wxWidgets.git] / utils / wxPython / distrib / SelfInst-README.txt
CommitLineData
af309447
RD
1wxPython README
2---------------
3
4Welcome to the wonderful world of wxPython!
5
6Now that you have installed the Win32 extension module, you can try it
7out by going to the [install dir]\wxPython\demo directory and typing:
8
9 python test1.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."
19
20
21
22Getting Help
23------------
24
25Since wxPython is a blending of multiple technologies, help comes from
26multiple sources. See the http://alldunn.com/wxPython for details on
27various sources of help, but probably the best source is the
28wxPython-users mail list. You can view the archive or subscribe by
29going to
30
31 http://starship.python.net/mailman/listinfo/wxpython-users
32
33Or you can send mail directly to the list using this address:
34
35 wxpython-users@starship.python.net
36
37
38
39
40What's new in 2.0b5
41-------------------
42Well obviously the numbering scheme has changed. I did this to
43reflect the fact that this truly is the second major revision of
44wxPython, (well the third actually if you count the one I did for
45wxWindows 1.68 and then threw away...) and also that it is associated
46with the 2.0 version of wxWindows.
47
48I have finally started documenting wxPython. There are several pages
49in the wxWindows documentation tree specifically about wxPython, and I
50have added notes within the class references about where and how wxPython
51diverges from wxWindows.
52
53Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
54window handle. If you can get the window handle into the python code,
55it should just work... More news on this later.
56
57Added wxImageList, wxToolTip.
58
59Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
60wxRegConfig class.
61
62As usual, some bug fixes, tweaks, etc.
63
64
65
66What's new in 0.5.3
67-------------------
68Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
69
70Various cleanup, tweaks, minor additions, etc. to maintain
71compatibility with the current wxWindows.
72
73
74
75What's new in 0.5.0
76-------------------
77Changed the import semantics from "from wxPython import *" to "from
78wxPython.wx import *" This is for people who are worried about
79namespace pollution, they can use "from wxPython import wx" and then
80prefix all the wxPython identifiers with "wx."
81
82Added wxTaskbarIcon for wxMSW.
83
84Made the events work for wxGrid.
85
86Added wxConfig.
87
88Added wxMiniFrame for wxGTK.
89
90Changed many of the args and return values that were pointers to gdi
91objects to references to reflect changes in the wxWindows API.
92
93Other assorted fixes and additions.
94
95
96
97
98What's new in 0.4.2
99-------------------
100
101wxPython on wxGTK works!!! Both dynamic and static on Linux and
102static on Solaris have been tested. Many thanks go to Harm
103<H.v.d.Heijden@phys.tue.nl> for his astute detective work on tracking
104down a nasty DECREF bug. Okay so I have to confess that it was just a
105DSM (Dumb Stupid Mistake) on my part but it was nasty none the less
106because the behavior was so different on different platforms.
107
108
109The dynamicly loaded module on Solaris is still segfaulting, so it
110must have been a different issue all along...
111
112
113
114What's New in 0.4
115-----------------
116
1171. Worked on wxGTK compatibility. It is partially working. On a
118Solaris/Sparc box wxPython is working but only when it is statically
119linked with the Python interpreter. When built as a dyamically loaded
120extension module, things start acting weirdly and it soon seg-faults.
121And on Linux both the statically linked and the dynamically linked
122version segfault shortly after starting up.
123
1242. Added Toolbar, StatusBar and SplitterWindow classes.
125
1263. Varioius bug fixes, enhancements, etc.
127
128
129
130----------------
131Robin Dunn
132robin@alldunn.com
133
134
135