X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cbb0770040f70b68b235d4c9a1a0f56512856705..05d6c206225b4e345a3b6b625f70c147d8a11204:/wxPython/docs/CHANGES.html diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 2c483d7add..70570ea38c 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,72 @@
wxMSW: Fixed wx.TransientPopupWindow (and therefore wx.TipWindow) to +auto-dismiss when the mouse is clicked outside of the popup like it is +supposed to.
+wxMSW: Fixed bug #1167891 wx.Notebook display problem with wx.NB_MULTILINE.
+wxMSW: Fixed bad cliping of hidden windows inside of wx.StaticBox.
+wxGTK: The configure flags for selecting GTK+ 1.2.x or 2.x has +changed slightly. It is now --with-gtk[=VERSION] where VERSION is +either '1', '2' or 'any'. The default is '2'.
+wx.stc.StyledTextCtrl: Added the following methods for alternate ways +to set and fetch text from the document buffer. They work similarly +to the existing methods of the same name, except that they don't go +through the same string/unicode <--> wxString conversions. The "Raw" +methods will do no conversions at all and in a unicode build of +wxPython the strings will be in the utf-8 encoding and in an ansi +build no assumption is made about the encoding. The "UTF8" functions +will attempt to always get/set utf-8 text, which it will always be +able to do in a unicode build, and in an ansi build it will depend on +the content of the utf-8 used being compatible with the current +encoding, (you'll get an exception otherwise.)
++++
++ + ++ + + AddTextRaw +AddTextUTF8 ++ InsertTextRaw +InsertTextUTF8 ++ GetCurLineRaw +GetCurLineUTF8 ++ GetLineRaw +GetLineUTF8 ++ GetSelectedTextRaw +GetSelectedTextUTF8 ++ GetTextRangeRaw +GetTextRangeUTF8 ++ SetTextRaw +SetTextUTF8 ++ GetTextRaw +GetTextUTF8 ++ + AppendTextRaw +AppendTextUTF8 +
wx.stc.StyledTextCtrl: Added the StyleSetFontEncoding(style, enc) +method that allows you to set the encoding to be used by the font for +a particular style.
+wxMac: Fixed wx.ComboBox to forward the EVT_CHAR, EVT_KEY_DOWN, +EVT_KEY_UP and EVT_TEXT events from its embedded text control.
+wxMac: Corrected refresh bugs in wxGrid.
+wxMSW: Fixed bug #1022383, 'several ComboBoxes appear selected'
wx.grid.Grid: Fixed bug #1163384. Moved the code that handles activating the cell editors to a EVT_CHAR event handler. This is done @@ -38,7 +103,7 @@ crash when using nVidia cards (patch 1155132)
Added the ActiveGrid IDE as a sample application.
wx.Sizer Add, Insert, and Prepend functions now return a reference to the wx.SizerItem that was added to the sizer, and the wx.SizerItem has a GetRect accessor to give the position of the item on the parent window.
@@ -88,7 +153,7 @@ consecutive (there may be intervening controls). Without this fix, an out-of-sync assert is generated when clicking on a radio button and then calling GetValue().wxMac focus and border refreshes corrected.
Updated internal PNG library.
wxMac fix for metal appearance on wx.ToolBar.
@@ -331,7 +396,7 @@ button will be used. For example, the following will result in a button with "Cancel" as the label and if run on wxGTK2 then there will also be an image of a red X:-b = wx.Button(parent, wx.ID_CANCEL) +b = wx.Button(parent, wx.ID_CANCEL)
Added wx.lib.ticker.Ticker class from Chris Mellon.
Fix some incorrect clipping regions in wxSTC on wxGTK.
@@ -449,7 +514,7 @@ Migrarion Guide for more information.wxPython on OSX can now be built in Unicode mode, can support multiple version installs, and comes with an uninstaller script.
wx.ADJUST_MINSIZE is now the default behaviour for window items in sizers. This means that the item's GetMinSize and/or GetBestSize will be called when calculating layout and the return value from that will @@ -586,8 +651,8 @@ in the PyShell:
wxGTK: Applied wxNO_BORDER patch (#1098374) for text control and combo box.
(See also the MigrationGuide file for details about some of the big changes that have happened in this release and how you should adapt your code.)
@@ -668,8 +733,8 @@ migrating away from using activexwrapper as well. Please see the MigrationGuide for more details on using the new module.Floats are allowed again as function parameters where ints are expected.
Use wxSTC in the demo for displaying the soucre code of the samples.
Lots of bug fixes and such from the wxWindows folks.
Added wxPython.lib.newevent from Miki Tebeka. Its usage is @@ -678,8 +743,8 @@ demonstrated in the Threads sample in the demo.
Added wxMaskedNumCtrl.
Added Chris Barker's FloatCanvas.
Added wxScrolledPanel from Will Sadkin
Added SetShape method to top level windows (e.g. wxFrame.)
Changed wxSWIG to not generate Python code using apply, (since it will @@ -730,8 +795,8 @@ release,) SetItemMinSize can now take a wxSize (or 2-tuple) parameter, and Spacers can be specified with a wxSize (or 2-tuple) parameter
Added wxCursorFromBits.
Gave up on generating a warning upon the use of the old true/false or TRUE/FALSE values.
Fixed wxGenericTreeCtrl (used on wxGTK and wxMac for wxTreeCtrl) so @@ -761,8 +826,8 @@ think I am testing in the future...
Updated pycolourchooser.
Updated to 0.9b of PyCrust.
Added missing wxRect methods
Add OOR support for wxApp objects too.
Added wxCursorFromImage, which works on wxMSW and wxGTK so far.
@@ -818,25 +883,25 @@ doesn't have a standard place for them.Fixed typemaps for wxGridCellCoordsArray.
Updated to the 0.9a version of PyCrust
Several bug fixes.
Added wxIntCtrl from Will Sadkin.
Added wxPyColourChooser by Michael Gilfix.
No major new features since 2.3.4.2, mostly bug fixes and minor enhancements.
Added function wrappers for the common dialogs from Kevin Altis. See wxPython/lib/dialogs.py for more details.
Various bug fixes.
Updated XRCed and wxTimeCtrl contribs.
Show a couple new wxGrid features in the demo.
Several bug fixes in wxWindows.
@@ -890,8 +955,8 @@ windows when desired. HTMLHelp viewer does. Changed how the wxPythonDocs tarball is built and added a script to launch the doc viewer.Added wxSplashScreen.
Added wxGenericDirCtrl.
Added wxMultiChoiceDialog.
@@ -1033,15 +1098,15 @@ example.Added wxPython.lib.mixins.rubberband module from Robb Shecter.
Added wxTimeCtrl from Will Sadkin.
Changed (again) how the Python global interpreter lock is handled as well as the Python thread state. This time it works on SMP machines without barfing and is also still compatible with Python debuggers.
Added some patches from library contributors.
Added EVT_HELP, EVT_HELP_RANGE, EVT_DETAILED_HELP, EVT_DETAILED_HELP_RANGE, EVT_CONTEXT_MENU, wxHelpEvent, wxContextMenuEvent, wxContextHelp, wxContextHelpButton, wxTipWindow, @@ -1123,8 +1188,8 @@ SendCommand method, but it is still quite powerful. See wxPython/contrib/dllwidget and wxPython/demo/dllwidget for more details.
Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the user code can get access to the edit control when it is created, (to push on a custom event handler for example.)
@@ -1137,8 +1202,8 @@ subclass wxXmlResourceHandler, etc...Fixed img2py to work correctly with Python 2.1.
Added enhanced wxVTKRenderWindow by Prabhu Ramachandran
Removed initial startup dependency on the OpenGL DLLs so only the glcanvasc.pyd depends on them, (on wxMSW.)
Changed wxFont, wxPen, wxBrush to not implicitly use the @@ -1234,13 +1299,13 @@ please send it to me for inclusion in this package.
by having smaller functional apps to play with. They can be found in wxPython/samples.No changes happened in the Python wrappers for this release, only changes and fixes in the wxWindows library.
New typemaps for wxString when compiling for Python 2.0 and beyond that allow Unicode objects to be passed as well as String objects. If a Unicode object is passed PyString_AsStringAndSize is used to convert @@ -1782,7 +1847,7 @@ compatibility with the current wxWindows.
Changed the import semantics from "from wxPython import *" to +
Changed the import semantics from "from wxPython import *" to "from wxPython.wx import *" This is for people who are worried about namespace pollution, they can use "from wxPython import wx" and then prefix all the wxPython identifiers with "wx."