X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/36d9119341753b2f6f606571702a9b906050a07c..64b397664d8d8c0acd2630ea239ab420fe7fe007:/wxPython/CHANGES.txt diff --git a/wxPython/CHANGES.txt b/wxPython/CHANGES.txt index 157dcec7f6..6e94c00e6a 100644 --- a/wxPython/CHANGES.txt +++ b/wxPython/CHANGES.txt @@ -36,7 +36,6 @@ Added wxBufferedDC. Upgraded wxSTC from Scintilla 1.40 to Scintilla 1.45 UNICODE! - wxWindows/wxPython can be compiled with unicode support enabled or disabled. Previous to wxPython 2.3.3 non-unicode mode was always used. Starting with 2.3.3 either mode is supported, but only if @@ -84,6 +83,45 @@ Python instance object with a class that raises an exception whenever a method call (or other attribute access) is attempted. This works for any class that is OOR aware. +Added OOR support for wxGridCellRenderer, wxGridCellEditor, +wxGridCellAttr, wxGridCellAttrProvider, wxGridTableBase and their +derived classes. + +Added wxImage.GetDataBuffer which returns an in-place edit buffer of +the image data. (Patch #546009) + +Added a sample that shows how to embed wxPython in a wxWindows C++ +application. + +Added wxPyWindow and wxPyControl which are just like their wx +counterparts except they allow some of the more common C++ virtual +methods to be overridden in Python derived classes. The methods +supported are: + + DoMoveWindow + DoSetSize + DoSetClientSize + DoSetVirtualSize + DoGetSize + DoGetClientSize + DoGetPosition + DoGetVirtualSize + DoGetBestSize + InitDialog + TransferDataFromWindow + TransferDataToWindow + Validate + AcceptsFocus + AcceptsFocusFromKeyboard + GetMaxSize + + If there are other methods that should be supported please let me + know. + +Changed wxGenButton to derive from wxPyControl and overload +DoGetBestSize and AcceptsFocus. + + 2.3.2.1 @@ -96,7 +134,6 @@ Added some patches from library contributors. - 2.3.2 ----- Added EVT_HELP, EVT_HELP_RANGE, EVT_DETAILED_HELP,