Since it is documented, changed GetOrCreateCellAttr from protected to

public so it can be used from wxPython.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29018 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-09-03 19:30:19 +00:00
parent 9a8a6d250f
commit 71e60f703c
4 changed files with 30 additions and 16 deletions

View File

@@ -16,26 +16,31 @@ wx.grid.Grid fix allowing DoGetBestSize to be called before CreateGrid
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 wx.lib.ogl.DrawnShape
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::
that you only have to provide one of the stock IDs (and either an
empty label or a label that matches the stock 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 run on wxGTK2 then there will also be an image of a red X::
b = wx.Button(parent, wx.ID_CANCEL)
Added wx.lib.ticker.Ticker class from Chris Mellon.
Fix some incorrect clipping regions in wxSTC on wxGTK.
Added wrapper for wx.grid.Grid.GetOrCreateCellAttr.