X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/431839ac8e74421678a5c3d619c97035f4616cc6..8dca2f3d86cad6a1802905093e3f77b6c3338a74:/wxPython/docs/CHANGES.html?ds=sidebyside diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 05bfa72824..51f9a80a67 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,36 @@
Predominantly a bug-fix release.
++++
+- Fixed fatal error due to improper wrapping of wx.FSFile.
+- Fixed return type of EditableListBox.GetListCtrl
+- Give generic tree and list controls a DoGetBestSize so they play +nicer with sizers when there is no minimal size.
+- Some tweaks in the demo and samples to correct layout, some +flicker problems, and namespace use.
+- Add wx.Image.ConvertAlphaToMask
+- Minor corrections in wx.lib.dialogs
+- wx.FileHistory constructor now accepts the documented 2nd +parameter.
+- Corrections for exceptions in the new ogl
+- Fixed XRCed to not use reparenting of windows to implement caching +of property panels, since Reparent on wxMac is not implemented.
+- Add support for wxTAB_TRAVERSAL to the XRC handler for +wxScrolledWindow.
+- Add support for all wxListBox styles to the XRC handler for +wxCheckListBox.
+- Fix for wx.Listbook.DeleteAllPages to really delete everything.
+- wxGTK2 now supports alpha blended bitmap drawing
+- Made wx.grid.Grid play nicer with sizers.
+- etc.
+
wx.ADJUST_MINSIZE is now the default behaviour for window items in sizers. This means that the item's GetMinSize and/or GetBestSize will be called when calculating layout and the return value from that will @@ -86,9 +115,26 @@ in a subpackage of wx.lib.
It is now possible to change the tab traversal order of controls on a panel or dialog. For details see the new MoveAfterInTabOrder and MoveBeforeInTabOrder methods of wx.Window.
+Applied (and heavily modified) a patch from Eugene +<svip123@fastmail.fm> that allows the sample modules in the demo to be +edited and reloaded, all from within the demo. You can switch back +and forth between the default and your edited version, and any errors +ocurring upon the reload are reported on the Demo tab.
+Added a menu item in the demo that will open a PyShell window that has +the app and demo frame preloaded in the namespace. This is another +good way to explore and play with the objects in the currently running +sample. For example, load the Button sample and then do the following +in the PyShell:
++>>> b = frame.demoPage.GetChildren()[0] +>>> for x in range(0, 500, 10): +... b.Move((x, 50)) +... app.Yield(True) +... wx.MilliSleep(10) +
(See also the MigrationGuide file for details about some of the big changes that have happened in this release and how you should adapt your code.)
@@ -169,8 +215,8 @@ migrating away from using activexwrapper as well. Please see the MigrationGuide for more details on using the new module.Floats are allowed again as function parameters where ints are expected.
Use wxSTC in the demo for displaying the soucre code of the samples.
Lots of bug fixes and such from the wxWindows folks.
Added wxPython.lib.newevent from Miki Tebeka. Its usage is @@ -179,8 +225,8 @@ demonstrated in the Threads sample in the demo.
Added wxMaskedNumCtrl.
Added Chris Barker's FloatCanvas.
Added wxScrolledPanel from Will Sadkin
Added SetShape method to top level windows (e.g. wxFrame.)
Changed wxSWIG to not generate Python code using apply, (since it will @@ -231,8 +277,8 @@ release,) SetItemMinSize can now take a wxSize (or 2-tuple) parameter, and Spacers can be specified with a wxSize (or 2-tuple) parameter
Added wxCursorFromBits.
Gave up on generating a warning upon the use of the old true/false or TRUE/FALSE values.
Fixed wxGenericTreeCtrl (used on wxGTK and wxMac for wxTreeCtrl) so @@ -262,8 +308,8 @@ think I am testing in the future...
Updated pycolourchooser.
Updated to 0.9b of PyCrust.
Added missing wxRect methods
Add OOR support for wxApp objects too.
Added wxCursorFromImage, which works on wxMSW and wxGTK so far.
@@ -319,25 +365,25 @@ doesn't have a standard place for them.Fixed typemaps for wxGridCellCoordsArray.
Updated to the 0.9a version of PyCrust
Several bug fixes.
Added wxIntCtrl from Will Sadkin.
Added wxPyColourChooser by Michael Gilfix.
No major new features since 2.3.4.2, mostly bug fixes and minor enhancements.
Added function wrappers for the common dialogs from Kevin Altis. See wxPython/lib/dialogs.py for more details.
Various bug fixes.
Updated XRCed and wxTimeCtrl contribs.
Show a couple new wxGrid features in the demo.
Several bug fixes in wxWindows.
@@ -391,8 +437,8 @@ windows when desired. HTMLHelp viewer does. Changed how the wxPythonDocs tarball is built and added a script to launch the doc viewer.Added wxSplashScreen.
Added wxGenericDirCtrl.
Added wxMultiChoiceDialog.
@@ -534,15 +580,15 @@ example.Added wxPython.lib.mixins.rubberband module from Robb Shecter.
Added wxTimeCtrl from Will Sadkin.
Changed (again) how the Python global interpreter lock is handled as well as the Python thread state. This time it works on SMP machines without barfing and is also still compatible with Python debuggers.
Added some patches from library contributors.
Added EVT_HELP, EVT_HELP_RANGE, EVT_DETAILED_HELP, EVT_DETAILED_HELP_RANGE, EVT_CONTEXT_MENU, wxHelpEvent, wxContextMenuEvent, wxContextHelp, wxContextHelpButton, wxTipWindow, @@ -624,8 +670,8 @@ SendCommand method, but it is still quite powerful. See wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more details.
Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the user code can get access to the edit control when it is created, (to push on a custom event handler for example.)
@@ -638,8 +684,8 @@ subclass wxXmlResourceHandler, etc...Fixed img2py to work correctly with Python 2.1.
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
Removed initial startup dependency on the OpenGL DLLs so only the glcanvasc.pyd depends on them, (on wxMSW.)
Changed wxFont, wxPen, wxBrush to not implicitly use the @@ -735,13 +781,13 @@ please send it to me for inclusion in this package.
by having smaller functional apps to play with. They can be found in wxPython/samples.