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
This commit is contained in:
Václav Slavík
2006-07-31 09:40:28 +00:00
parent 63e819f298
commit 3c665b38c0

View File

@@ -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: