]> git.saurik.com Git - wxWidgets.git/commitdiff
notes about recent changes
authorRobin Dunn <robin@alldunn.com>
Wed, 1 Sep 2004 23:38:20 +0000 (23:38 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 1 Sep 2004 23:38:20 +0000 (23:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29003 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/docs/CHANGES.txt

index c4f6e6e419f5e3c332fe4343fe808356d8525187..026d4dffd00507326cf364c1a3b9f0a16f1afd49 100644 (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
 -------