]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/CHANGES.txt
Fixed wxWindowCreateEvent and wxWindowDestroyEvent to set m_eventType
[wxWidgets.git] / utils / wxPython / CHANGES.txt
index a32a1f28aba450b86cbfff1054a7812ec28891ff..9ed776e60b5f7185fa9274b222cbd81877889adb 100644 (file)
@@ -30,7 +30,7 @@ rectangle representing the intersection is returned.
 
 Some bug fixes for Clipboard and Drag-n-Drop.
 
-Rotated text!!!  WooHoo!  (See wxDC.DrawRotatedtext())
+Rotated text!!!  WooHoo!  (See wxDC.DrawRotatedText())
 
 Added a set of Generic Buttons to the library.  These are simple
 window classes that look and act like native buttons, but you can have
@@ -38,6 +38,41 @@ a bit more control over them.  The bezel width can be set in addition
 to colours, fonts, etc.  There is a ToggleButton as well as Bitmap
 versions too.
 
+The C++ wxToolBar classes have been redone, and so have the wxPython
+wrappers.  There have been slight modifications to some of the methods
+but shouldn't impact anybody too much.  I took the opportunity to add
+support for setting user data on each toolbar tool.  The new AddTool
+methods look like this:
+
+        def AddTool(ID,
+                    bitmap,
+                    pushedBitmap = wxNullBitmap,
+                    toggle = FALSE,
+                    clientData = NULL,
+                    shortHelpString = "",
+                    longHelpString = "")
+
+        def AddSimpleTool(ID,
+                          bitmap,
+                          shortHelpString = "",
+                          longHelpString = "",
+                          toggle=FALSE)
+
+
+There are also coresponding InsertTool and InsertSimpleTool methods
+that additionally take an integer position as the first parameter.
+
+Added a wrapper for the PCX and TIFF ImageHandlers.
+
+wxRect now simulates attributes named left, right, top and bottom.
+
+Removed all non wx stuff from the glcanvas module since DA's PyOpenGL
+is better and compatible with the wxGLCanvas.  You can get it at
+http://starship.python.net:9673/crew/da/Code/PyOpenGL.
+
+Added some missing EVT_ functions.
+
+
 
 
 What's new in 2.1.11