From: Robin Dunn Date: Sat, 2 Apr 2005 03:50:06 +0000 (+0000) Subject: Use Python's buffer interface API for all image data and alpha Set/Get X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a2e2643866171ecb0a1417fa1a8ceb6bded9e4e6 Use Python's buffer interface API for all image data and alpha Set/Get methods and the ImageFromData* constructors. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33255 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index 2de2a1d91d..17accd982f 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -49,6 +49,19 @@ wxMSW: Applied patch #1166587, removes all flicker from wx.StaticBox Added wx.lib.foldpanelbar, Andrea Gavana's port of Jorgen Bodde's C++ wxFoldPanelBar classes to Python. +wxGTK: Applied patch #1173802, reimplementation of GtkFileChooser +wxFileDialog by Mart Raudsepp. Note that this new file dialog is only +used on GTK2 >= 2.4. For earlier GTK2 versions and GTK1 then the +older generic file dialog is used. + +wxMSW: fixes to static box borders calculations (finalizes patch +#1166587) + +wx.Image: Use Python's buffer interface API for all image data and +alpha Set/Get methods and the ImageFromData* constructors. They all +still copy the buffer except for SetDataBuffer and SetAlphaBuffer, but +this gives more flexibility on where the data can come from. +