support for simulating focus events since not all controls can be focused
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -602,6 +602,25 @@ void wxWindowMac::SetFocus()
|
||||
GetPeer()->SetFocus() ;
|
||||
}
|
||||
|
||||
void wxWindowMac::OSXSimulateFocusEvents()
|
||||
{
|
||||
wxWindow* former = FindFocus() ;
|
||||
if ( former != NULL && former != this )
|
||||
{
|
||||
{
|
||||
wxFocusEvent event( wxEVT_KILL_FOCUS, former->GetId());
|
||||
event.SetEventObject(former);
|
||||
former->HandleWindowEvent(event) ;
|
||||
}
|
||||
|
||||
{
|
||||
wxFocusEvent event(wxEVT_SET_FOCUS, former->GetId());
|
||||
event.SetEventObject(former);
|
||||
former->HandleWindowEvent(event);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void wxWindowMac::DoCaptureMouse()
|
||||
{
|
||||
wxApp::s_captureWindow = (wxWindow*) this ;
|
||||
|
Reference in New Issue
Block a user