• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/

Lines Matching defs:focus

1479 bool wxApp::MacSendKeyDownEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1481 if ( !focus )
1486 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1488 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1495 wxWindow *ancestor = focus;
1517 bool wxApp::MacSendKeyUpEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1519 if ( !focus )
1524 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1525 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1530 bool wxApp::MacSendCharEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1532 if ( !focus )
1536 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1541 wxTopLevelWindowMac *tlw = focus->MacGetTopLevelWindow() ;
1555 handled = focus->GetEventHandler()->ProcessEvent( event ) ;
1560 wxWindow* iter = focus->GetParent() ;
1566 new_event.SetEventObject( focus );
1570 new_event.SetCurrentFocus( focus );
1571 handled = focus->GetParent()->GetEventHandler()->ProcessEvent( new_event );
1581 if ( !handled && (!focus->IsKindOf(CLASSINFO(wxControl) ) || !focus->MacCanFocus() ) )
1583 // if window is not having a focus still testing for default enter or cancel
1585 wxWindow* focus = wxFindWinFromMacWindow( FrontWindow() ) ;
1586 if ( focus )
1590 wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(focus), wxTopLevelWindow);
1608 new_event.SetEventObject( focus );
1609 handled = focus->GetEventHandler()->ProcessEvent( new_event );
1617 void wxApp::MacCreateKeyEvent( wxKeyEvent& event, wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1700 event.SetEventObject(focus);