X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/02b800ce7c2bb1c1f08075f22be2e7412124b47f..e22ab33a475587e1c490036647f666241ac76b04:/wxPython/docs/CHANGES.txt diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index 4a28c329a9..de74e110f0 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -20,12 +20,14 @@ The following deprecated items have been removed: * wx.FontMapper SetConfig method +wx.EventLoop is now implemented for wxMac. 2.6.2.1 ------- +* 10-Jan-2006 wxMSW: Fix for bug #1211907, popup menu indenting inconsistent with bitmaps. @@ -159,7 +161,7 @@ tweaked and finished up by me. The changes include the following: The free edit mode is designated by the use of a red, non-flashing caret. - * Ctrl-H will fold/unfold (hide/show) the selected lines. + * Ctrl-Shift-F will fold/unfold (hide/show) the selected lines. * General code cleanup and fixes. @@ -225,6 +227,23 @@ wx.FontMapper.SetConfig is deprecated. You should instead just set an application-wide config object with wx.Config.Set, which wx.FontMapper will use by default. +Added wx.GetMouseState which returns the current state of the mouse. +It returns an instance of a wx.MouseState object that contains the +current position of the mouse pointer in screen coordinants, as well +as boolean values indicating the up/down status of the mouse buttons +and the modifier keys. + +Added wx.SizerItem.SetUserData + +A variety of updates to wx.lib.floatcanvas, including Added +DrawObjects, including a ScaledTextBox, with auto-wrapping, etc, and +Scaled and Unscaled Bitmap Objects. + + WARNING: Changed all DrawObjects to take an (x,y) pair rather + than individual x,y parameters. Also changed rectangles and + ellipses to take (w,h) pair. This is an API change, but should + be easy to accommodate, all you need to do is add a parenthesis + pair: (...x, y, ...) ---> (...(x,y), ...)