X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/51c5e1f21eb54f2457269258040b7cd360cb3f69..32a1ea1c5d8aab25143e76f0cfe1bd6aa86c0d3f:/wxPython/docs/CHANGES.txt diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index 2f2e649d72..dc1e29fae3 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -2,7 +2,7 @@ Recent Changes for wxPython ===================================================================== -2.5.4.0 +2.5.4.1 ------- wx.Sizer Add, Insert, and Prepend functions now return a reference to the @@ -150,7 +150,7 @@ Added wxStdDialogButtonSizer, which is a a special sizer that knows how to order and position standard buttons in order to conform to the current platform's standards. You simply need to add each `wx.Button` to the sizer, and be sure to create the buttons using the standard -ID's. Then call `Finalize` and the sizer will take care of the rest. +ID's. Then call `Realize` and the sizer will take care of the rest. wxMSW Toolbar: pass correct tool id (and not always -1) to the EVT_TOOL_RCLICKED handler @@ -214,11 +214,12 @@ eliminate weird refresh behaviour (delays between a window being erased and repainted, giving a ghostly gradual-redraw effect). May be a temporary 'fix' until properly fixed before 2.6. -wxMac: CoreGraphics [[WRITE MORE HERE]] - wxMac: Toolbar is now more native looking with borderless toolbar buttons. +wxMac: Switched wx.Bitmap to use newer Quartz object types and APIs +internally. This results in faster display and better alpha support. + Added wx.DatePickerCtrl. wx.html.HtmlWindow now supports background images. @@ -226,6 +227,50 @@ wx.html.HtmlWindow now supports background images. Added wx.lib.gestures module from Daniel Pozmanter which supports using Mouse Gestures in an application. +wxGTK2: ENTER and LEAVE mouse events are now sent for multi-line text +controls. + +wxMSW: "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not +WXK_MENU + +Added modules from Peter Yared and Morgan Hua that implement the wx +Doc/View framework in pure Python code. See wx.lib.docview for the +base implementation and wx.lib.pydocview for Python-specific +extensions. There are also a couple sample applications located in +samples/docview. + +Added GetBitmap, GetIcon to wx.ImageList. + +wxGTK wx.Button.SetLabel no longer invalidates/resets the font. + +wx.Sizer.AddWindow, AddSizer, AddSpacer and etc. have now been +undeprecated at the request of Riaan Booysen, the Boa Constructor team +lead. Boa needs them to help keep track of what kind of item is being +managed by the sizer. They are now just simple compatibility aliases +for Add, and etc. + +The old C++ version of the OGL lib is no longer built by default. Use +the Python version in the wx.lib.ogl package instead. + +The wx.iewin module is no longer built by default. You can use the +wx.lib.iewin version instead. + +Fixed wx.BufferedPaintDC for scrolled windows to work whether the +buffer is covering only the client area or the full virtual area of +the scrolled window. By default it will assume that only the client +area is covered. This is different than the old behavior so to +indicate that the entire virtual area is covered simply add a +style=wx.BUFFER_VIRTUAL_AREA parameter. + +wx.gizmos.TreeListCtrl: Add support for the EVT_TREE_ITEM_GETTOOLTIP +event. + +Added Resize, SetRGBRect, Size, and GetOrFindMaskColour methods to +wx.Image. + +Added wx.Rect.IsEmpty + +