From: Václav Slavík Date: Mon, 31 Jul 2006 09:40:28 +0000 (+0000) Subject: added wxEVT_MOUSE_CAPTURE_LOST event and code for correctly handling capture loss... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3c665b38c0a0a95c45f65d5aec25c3f8ad428bc8 added wxEVT_MOUSE_CAPTURE_LOST event and code for correctly handling capture loss (bug #1153662) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40392 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index b76b7c8695..10e7fb172b 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -27,6 +27,8 @@ INCOMPATIBLE CHANGES SINCE 2.6.x - wxFontEnumerator::GetFacenames() and GetEncodings() now return arrays and not pointers to arrays. - wxStaticBoxSizer now deletes the associated wxStaticBox when it is deleted. +- Windows calling CaptureMouse() are now required to handle + the wxEVT_MOUSE_CAPTURE_LOST event. Deprecated methods since 2.6.x and their replacements @@ -168,6 +170,8 @@ All (GUI): implementations (so far) for wxMSW and wxMac. - Allow customizing individual grid lines appearance (Søren Lassen) - Fixed middle click events generation in generic wxTreeCtrl (Olly Betts) +- Added wxEVT_MOUSE_CAPTURE_LOST event that must be handled by all windows + that CaptureMouse() is called on. wxMSW: