]>
Commit | Line | Data |
---|---|---|
73adcb01 | 1 | Recent Changes for wxPython |
8eda5e35 | 2 | ===================================================================== |
6d75ea8f | 3 | |
95fed4d8 RD |
4 | 2.5.1.6 |
5 | ------- | |
6 | ||
7 | wx.ADJUST_MINSIZE is now the default behaviour for window items in | |
ffcb969e RD |
8 | sizers. This means that the item's GetMinSize and/or GetBestSize will |
9 | be called when calculating layout and the return value from that will | |
10 | be used for the minimum size. The wx.FIXED_MINSIZE flag was added | |
11 | that will cause the sizer to *not* call window methods to determine | |
12 | the new best size, instead the minsize that the window had when added | |
13 | to the sizer (or the size the window was created with) will always be | |
14 | used. When a window is added to a sizer it's initial size, if any, is | |
15 | set as the window's minimal size using SetSizeHints if there isn't | |
16 | already a minimal size. | |
95fed4d8 | 17 | |
ba938c3d RD |
18 | Added some convenience methods to wx.Bitmap: SetSize, GetSize, and |
19 | wx.EmptyBitmap can be called with a wx.Size (or a 2-element sequence) | |
20 | object too. Similar changes were done for wx.Image as well. | |
21 | ||
c878ceea RD |
22 | Added new MaskedEditControl code from Will Sadkin. The modules are |
23 | now locaed in their own sub-package, wx.lib.masked. Demos updated. | |
24 | ||
ba938c3d RD |
25 | |
26 | ||
95fed4d8 | 27 | |
db4daa84 | 28 | 2.5.1.5 |
3ef86e32 RD |
29 | ------- |
30 | ||
33ab916f | 31 | (See also the MigrationGuide_ file for details about some of the |
7ca4c2e1 RD |
32 | big changes that have happened in this release and how you should |
33 | adapt your code.) | |
34 | ||
33ab916f RD |
35 | .. _MigrationGuide: MigrationGuide.html |
36 | ||
37 | ||
e8a71fa0 RD |
38 | The wxWindows project and library is now known as wxWidgets. Please |
39 | see http://www.wxwindows.org/name.htm for more details. This won't | |
40 | really affect wxPython all that much, other than the fact that the | |
41 | wxwindows.org domain name will be changing to wxwidgets.org, so mail | |
42 | list, CVS, and etc. addresses will be changing. We're going to try | |
43 | and smooth the transition as much as possible, but I wanted you all to | |
44 | be aware of this change if you run into any issues. | |
45 | ||
46 | ||
3ef86e32 | 47 | Many, many little fixes, changes and additions done as part of the move |
b25cb7db | 48 | to wxWidgets 2.5 that I have forgotten about. |
3ef86e32 | 49 | |
3ef86e32 RD |
50 | Added wxMirrorDC. |
51 | ||
52 | Added wxIconLocation | |
53 | ||
b25cb7db RD |
54 | Added Python wrappers and demos for the new wxVScrolledWindow, |
55 | wxVListBox, and wxHtmlListBox classes. | |
3ef86e32 | 56 | |
edadef3f RD |
57 | Added wrappers for wxBookCtrl and wxListbook. wxNotebook now derives |
58 | from wxBookCtrl. | |
59 | ||
9d6685e2 RD |
60 | Added Gordon Williams' PyPlot module to the library, available as the |
61 | wx.lib.plot module. | |
3ef86e32 | 62 | |
e6a5dac6 RD |
63 | I made a small but important change in the code that aquires the |
64 | Python Global Interpreter Lock to try and prevent deadlocks that can | |
65 | happen when there are nested attempts to aquire the GIL. | |
66 | ||
b25cb7db RD |
67 | The RPMs will now install menu items on Mandrake Linux in |
68 | Applications/Development/Tools for PyCrust, XRCed, etc. The RPMs are | |
69 | also installing icons and ``*.desktop`` items in the generic KDE and | |
70 | GNOME locations, but I don't know yet if they are resulting in menu | |
71 | items on non-Mandrake systems. (It didn't automatically do it on my | |
72 | RH-9 build box but I didn't chase it very far...) If you have ideas | |
73 | for how to improve the .spec file to work better and/or on more | |
74 | distros please send me a patch. | |
e6a5dac6 | 75 | |
b25cb7db RD |
76 | The RPMs are now built on a fairly generic RH-9 box, and I have tested |
77 | installing them also on my main Mandrake 9.2 box. | |
e6a5dac6 RD |
78 | |
79 | There are some big changes in the OS X disk image. The actual | |
80 | Installer package now *only* installs the wxMac dynlibs, wxPython | |
b25cb7db | 81 | extension modules and Python pacakges, and also the command-line tool |
e6a5dac6 RD |
82 | scripts. The remaining items (demo, samples, and application bundles |
83 | for the Demo, PyCrust and XRCed) are now top-level items in the disk | |
84 | image (.dmg file) that users can just drag and drop to wherever they | |
85 | want to put them. | |
86 | ||
78862f24 RD |
87 | The wxWave class has been renamed to wxSound, and now has a slightly |
88 | different API. | |
e6a5dac6 | 89 | |
1a31cb0a | 90 | Content-type: text/html ]>