Added private wxEVT_AFTER_CHAR event for wxMSW implementation needs.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 16 Apr 2011 17:27:21 +0000 (17:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 16 Apr 2011 17:27:21 +0000 (17:27 +0000)
commit1afe4f9b47b9ee020cc21e12ed603409f60a59dc
treef26ba7048bfb87395f30a8f22ef95bd4275c1dde
parentea98f11c2fbcd33ffc9b9771b8046c7353f51fcf
Added private wxEVT_AFTER_CHAR event for wxMSW implementation needs.

This event is sent by wxMSW after the default handling of WM_CHAR has taken
place. It can be used to define an event handler triggered by key presses and
having access to the new value of the control, updated to take the last key
press into account.

This event will be used by auto-completion implementation for wxMSW only for
now.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
include/wx/event.h
include/wx/msw/window.h
src/common/event.cpp
src/msw/window.cpp