]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/docs/CHANGES.txt
added missing comma
[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 90.
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.
17
18Added some convenience methods to wx.Bitmap: SetSize, GetSize, and
19wx.EmptyBitmap can be called with a wx.Size (or a 2-element sequence)
20object too. Similar changes were done for wx.Image as well.
21
22Added new MaskedEditControl code from Will Sadkin. The modules are
23now locaed in their own sub-package, wx.lib.masked. Demos updated.
24
25
26
27
282.5.1.5
29-------
30
31(See also the MigrationGuide_ file for details about some of the
32big changes that have happened in this release and how you should
33adapt your code.)
34
35.. _MigrationGuide: MigrationGuide.html
36
37
38The wxWindows project and library is now known as wxWidgets. Please
39see http://www.wxwindows.org/name.htm for more details. This won't
40really affect wxPython all that much, other than the fact that the
41wxwindows.org domain name will be changing to wxwidgets.org, so mail
42list, CVS, and etc. addresses will be changing. We're going to try
43and smooth the transition as much as possible, but I wanted you all to
44be aware of this change if you run into any issues.
45
46
47Many, many little fixes, changes and additions done as part of the move
48to wxWidgets 2.5 that I have forgotten about.
49
50Added wxMirrorDC.
51
52Added wxIconLocation
53
54Added Python wrappers and demos for the new wxVScrolledWindow,
55wxVListBox, and wxHtmlListBox classes.
56
57Added wrappers for wxBookCtrl and wxListbook. wxNotebook now derives
58from wxBookCtrl.
59
60Added Gordon Williams' PyPlot module to the library, available as the
61wx.lib.plot module.
62
63I made a small but important change in the code that aquires the
64Python Global Interpreter Lock to try and prevent deadlocks that can
65happen when there are nested attempts to aquire the GIL.
66
67The RPMs will now install menu items on Mandrake Linux in
68Applications/Development/Tools for PyCrust, XRCed, etc. The RPMs are
69also installing icons and ``*.desktop`` items in the generic KDE and
70GNOME locations, but I don't know yet if they are resulting in menu
71items on non-Mandrake systems. (It didn't automatically do it on my
72RH-9 build box but I didn't chase it very far...) If you have ideas
73for how to improve the .spec file to work better and/or on more
74distros please send me a patch.
75
76The RPMs are now built on a fairly generic RH-9 box, and I have tested
77installing them also on my main Mandrake 9.2 box.
78
79There are some big changes in the OS X disk image. The actual
80Installer package now *only* installs the wxMac dynlibs, wxPython
81extension modules and Python pacakges, and also the command-line tool
82scripts. The remaining items (demo, samples, and application bundles
83for the Demo, PyCrust and XRCed) are now top-level items in the disk
84image (.dmg file) that users can just drag and drop to wherever they
85want to put them.
86
87The wxWave class has been renamed to wxSound, and now has a slightly
88different API.
89
90