notes about recent changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-09-01 23:38:20 +00:00
parent 8b6df374df
commit 4f5ff1b284

View File

@ -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
-------