X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7fcbee9e16e1419f2b4f1d710929e4dfda5d28ec..0cf04a425fe081365237c97fec168b77ea6efd03:/wxPython/docs/CHANGES.html diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 47321450eb..1d3cff8338 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -293,7 +293,34 @@ ul.auto-toc {
Fixed a bug in the MaskedEdit controls caused by conflicting IsEmpty +methods.
+Patch #1579280: Some mimetype optimizations on unix-like systems.
+wxMac: Several wx.webkit.WebKitCtrl enhancements/fixes, including:
++++
+- new methods for increasing/decreasing text size, getting +selection, getting/setting scroll position, printing, enabling +editing, and running JavaScripts on the page.
+- added new event (wx.webkit.WebKitBeforeLoadEvent) for catching, and +possibly vetoing, load events before they occur.
+- wx.webkit.WebKitCtrl now fires mouse events for certain events +that it was eating before. This improves wxSplitterWindow +resizing behavior.
+- refactoring of the sizing logic to move the Cocoa view. Tested +with splitter windows, panels, notebooks and all position +correctly with this.
+
Some improvements to the drawing code in CustomTreeCtrl.
+Fixed refcount leak in wx.Window.GetChildren.
+Changed how the stock objects (wx.RED, wx.RED_PEN, wx.RED_BRUSH, etc.) are initialized. They are now created as uninitialized instances using __new__. Then after the wx.App has been created, but before -OnInit is called, the .this attribute of each obhect is initialized. +OnInit is called, the .this attribute of each object is initialized. This was needed because of some delayed initialization functionality that was implemented in wxWidgets, but the end result is cleaner for wxPython as well, and allowed me to remove some ugly code previously @@ -505,7 +532,7 @@ Andrea Gavana's FancyButtonPanel module.
Renamed wx.FutureCall to wx.CallLater so it is named more like wx.CallAfter. wx.FutureCall is now an empty subclass of wx.CallLater for compatibility of older code.
-Added the wx.lib.customtreectrl the from Andrea Gavana.
+Added the wx.lib.customtreectrl module from Andrea Gavana.
Added ChangeSelection to wx.BookCtrl (the base class for wx.Notebook and other book controls) that is the same as SetSelection but doesn't send the change events.
@@ -556,7 +583,7 @@ wx.PaintDC or wx.BufferedPaintDC. This uses the new wx.Window.IsDoubleBuffered method.Added wx.StandardPaths.GetDocumentsDir() (patch 1214360)
Added the ActiveGrid IDE as a sample application.
Floats are allowed again as function parameters where ints are expected.
Added Chris Barker's FloatCanvas.
Added wxCursorFromBits.
Updated to 0.9b of PyCrust.
Updated to the 0.9a version of PyCrust
Added wxPyColourChooser by Michael Gilfix.
Added some patches from library contributors.
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran