]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/docs/CHANGES.txt
only use our background for children if it's inheritable
[wxWidgets.git] / wxPython / docs / CHANGES.txt
index d0f375c6c7711a12676548925e3e3e2c51661915..a2da7e6d48575c4fb4262463a207201670ebc84a 100644 (file)
@@ -2,7 +2,7 @@ Recent Changes for wxPython
 =====================================================================
 
 
-2.5.3.2
+2.5.3.3
 -------
 
 wx.Sizer Add, Insert, and Prepend funcitons now return a reference to the
@@ -18,8 +18,10 @@ out-of-sync assert is generated when clicking on a radio button and
 then calling GetValue().
 
 XRC: 
-    - added 'icon' property to wxFrame and wxDialog
-    - no longer ignores menu bitmaps on non-MSW platforms
+    - Added 'icon' property to wxFrame and wxDialog
+    - No longer ignores menu bitmaps on non-MSW platforms
+    - Notebook page bitmaps are now supported
+    - added system colours and fonts support (based on patch #1038207)
 
 wxMSW: fix for [ 1052989 ] TextCtrl.SetBackgroundColour(wx.NullColour)
 bug.
@@ -57,6 +59,34 @@ internal scrollbar visible.
 Added wx.StandardPaths which provides methods for determining standard
 system paths for each platform.
 
+wxMSW: The window background is now only erased by default if the
+background colour or background mode has been changed.  This better
+allows the default system themed behaviour to show through for
+uncustomized windows.  Explicit support added for using the correct
+theme texture for wx.Notebook pages and their children.
+
+wx.Image: Added support for alpha channels in interpolated and
+non-interpolated image rotation.  Added ConvertAlphaToMask helper
+method for turning shades of grey into shades of alpha and a colour.
+
+wxGTK2: Reimplemented DoDrawRotatedText() by way of a rotation of an
+alpha blended text bitmap.  It would be better if Pango could draw
+directly into an wxImage (as FreeType can,) but that is for later...
+
+Added wrappers and a demo for wx.MediaCtrl.
+
+wxGTK: Patch applied for Freeze()/Thaw() for wxTextCtrtl.
+
+Added "gravity" for splitter window (patch 1046105). Gravity is a
+floating-point factor between 0.0 and 1.0 which controls position of
+sash while resizing the wx.SplitterWindow.  The gravity specifies
+how much the left/top window will grow while resizing.
+
+wxMSW: wx.Slider's C++ implementation rewritten to be more
+maintainable and hopefully less buggy.  The position of the labels has
+also been changed in order to better comply with Microsoft's examples
+of how to use the control.
+