From 4f5ff1b284d944795ad7b7b45291e91dc6f6d2fc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 1 Sep 2004 23:38:20 +0000 Subject: [PATCH] notes about recent changes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/docs/CHANGES.txt | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index c4f6e6e419..026d4dffd0 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -1,6 +1,43 @@ Recent Changes for wxPython ===================================================================== +2.5.2.9 +------- + +wxMac focus and border refreshes corrected. + +Updated internal PNG library. + +wxMac fix for metal appearance on wx.ToolBar. + +wx.grid.Grid fix allowing DoGetBestSize to be called before CreateGrid +(which means that a min size doesn't need to be specified.) + +wxMac fix for not sending a native click to a control if it is not +enabled (does an enable itself) + +Added wx.ogl.DrawShape + +Added support to XRC and XRCed for the 3-state checkbox flags and also +for wx.ToggleButton. Updated the generic window styles supported by +XRCed. + +It is now possible to create "stock" buttons. Basically this means +that you only have to provide one of the stock IDs (and an empty +label) when creating the button and wxWidgets will choose the stock +label to go with it automatically. Additionally on the platforms that +have a native concept of a stock button (currently only GTK2) then the +native stock button will be used. For example, the following will +result in a button with "Cancel" as the label and an accelerator on +the "C", and if on wxGTK2 there will be an image of a red X:: + + b = wx.Button(parent, wx.ID_CANCEL) + + +Added wx.lib.ticker.Ticker class from Chris Mellon. + + + 2.5.2.8 -------