]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/docs/CHANGES.txt
reSWIGged
[wxWidgets.git] / wxPython / docs / CHANGES.txt
... / ...
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/docs/CHANGES.txt


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 109.
CommitLineData
1Recent Changes for wxPython
2=====================================================================
3
42.5.1.6
5-------
6
7wx.ADJUST_MINSIZE is now the default behaviour for window items in
8sizers. This means that the item's GetMinSize and/or GetBestSize will
9be called when calculating layout and the return value from that will
10be used for the minimum size. The wx.FIXED_MINSIZE flag was added
11that will cause the sizer to *not* call window methods to determine
12the new best size, instead the minsize that the window had when added
13to the sizer (or the size the window was created with) will always be
14used. When a window is added to a sizer it's initial size, if any, is
15set as the window's minimal size using SetSizeHints if there isn't
16already a minimal size. You can set the window's minimal size (via
17SetSizeHints) to manually control wha tthe sizer will use when
18calculating layout.
19
20Added new MaskedEditControl code from Will Sadkin. The modules are
21now locaed in their own sub-package, wx.lib.masked. Demos updated.
22
23The changes that implemented the incompatible wx.DC methods in 2.5.1.5
24have been reverted. The wx.DC methods are now compatible with the 2.4
25implemetation. In addition a set of renamed methods have been added
26that take wx.Point and/or wx.Size objects instead of individual
27parameters.
28
29Added wx.lib.mixins.listctrl.TextEditMixin, a mixin class that allows
30all columns of a wx.ListCtrl in report mode to be edited.
31
32Deprecated the wx.iewin module.
33
34Deprecated the wx.Sizer.AddWindow, AddSizer, AddSpacer methods as well
35as their Insert* and Prepend* counterparts.
36
37Added a generic StaticBitmap class in wx.lib.statbmp for the same
38reasons that stattext was created, so it could be mouse sensitive on
39all platforms like normal windows. Also updated stattext.py and
40buttons.py to handle attribute (font & colour) defaults and
41inheritance the new way. If you have custom controls of your own you
42should review stattxt.py or one of the others to see how it is to be
43done.
44
45
46
472.5.1.5
48-------
49
50(See also the MigrationGuide_ file for details about some of the
51big changes that have happened in this release and how you should
52adapt your code.)
53
54.. _MigrationGuide: MigrationGuide.html
55
56
57The wxWindows project and library is now known as wxWidgets. Please
58see http://www.wxwindows.org/name.htm for more details. This won't
59really affect wxPython all that much, other than the fact that the
60wxwindows.org domain name will be changing to wxwidgets.org, so mail
61list, CVS, and etc. addresses will be changing. We're going to try
62and smooth the transition as much as possible, but I wanted you all to
63be aware of this change if you run into any issues.
64
65
66Many, many little fixes, changes and additions done as part of the move
67to wxWidgets 2.5 that I have forgotten about.
68
69Added wxMirrorDC.
70
71Added wxIconLocation
72
73Added Python wrappers and demos for the new wxVScrolledWindow,
74wxVListBox, and wxHtmlListBox classes.
75
76Added wrappers for wxBookCtrl and wxListbook. wxNotebook now derives
77from wxBookCtrl.
78
79Added Gordon Williams' PyPlot module to the library, available as the
80wx.lib.plot module.
81
82I made a small but important change in the code that aquires the
83Python Global Interpreter Lock to try and prevent deadlocks that can
84happen when there are nested attempts to aquire the GIL.
85
86The RPMs will now install menu items on Mandrake Linux in
87Applications/Development/Tools for PyCrust, XRCed, etc. The RPMs are
88also installing icons and ``*.desktop`` items in the generic KDE and
89GNOME locations, but I don't know yet if they are resulting in menu
90items on non-Mandrake systems. (It didn't automatically do it on my
91RH-9 build box but I didn't chase it very far...) If you have ideas
92for how to improve the .spec file to work better and/or on more
93distros please send me a patch.
94
95The RPMs are now built on a fairly generic RH-9 box, and I have tested
96installing them also on my main Mandrake 9.2 box.
97
98There are some big changes in the OS X disk image. The actual
99Installer package now *only* installs the wxMac dynlibs, wxPython
100extension modules and Python packages, and also the command-line tool
101scripts. The remaining items (demo, samples, and application bundles
102for the Demo, PyCrust and XRCed) are now top-level items in the disk
103image (.dmg file) that users can just drag and drop to wherever they
104want to put them.
105
106The wxWave class has been renamed to wxSound, and now has a slightly
107different API.
108
109