X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d55d6b3f45bf5a2261a4df06a6915c8fc711a500..64b397664d8d8c0acd2630ea239ab420fe7fe007:/wxPython/CHANGES.txt diff --git a/wxPython/CHANGES.txt b/wxPython/CHANGES.txt index 60b82af4f9..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 @@ -91,6 +90,38 @@ 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