Version | Change log |
wxPython 64bit 4.2.1 Jun 8, 2023 | |
wxPython 64bit 4.2.0 Aug 9, 2022 | |
wxPython 64bit 4.1.1 Nov 26, 2020 | |
wxPython 64bit 4.1.0 Apr 24, 2020 | |
wxPython 64bit 3.0.2.0 Nov 28, 2014 |
Fixed wxPython bug on OSX that was preventing the wx.App's virtual methods related to handling App Events, like open-files or reopen-app, from being handled correctly. NOTE: It appears that wxPython applications on OSX will now always be getting an initial Apple Event(s) sent to `MacOpenFiles` coresponding to the name of the script and args on the python command-line. Added patch #15142 which adds support for building with and using GTK3 as the wx platform. Thanks kosenko! Fixed the OSX Carbon build to actually use Carbon. (Because of a change in defaults it was actually building the Cocoa build instead.) Pythonized DataViewCtrl.HitTest. It now takes just the Point parameter and returns the DataViewItem and DataViewColumn objects. If there is no item at that point then item will evaluate to False, (or you can use its IsOk method.) For example:: item, col = ctrl.HitTest(point) if item: doSomething(item, col) |