• 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:modifiers

1015                     UInt32 modifiers ;
1019 err = GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
1022 rec->modifiers = modifiers ;
1041 UInt32 keyCode, modifiers;
1048 err = GetEventParameter(rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, 4, NULL, &modifiers);
1051 rec->modifiers = modifiers ;
1468 UInt32 modifiers = GetCurrentKeyModifiers();
1469 ms.SetControlDown(modifiers & controlKey);
1470 ms.SetShiftDown(modifiers & shiftKey);
1471 ms.SetAltDown(modifiers & optionKey);
1472 ms.SetMetaDown(modifiers & cmdKey);
1479 bool wxApp::MacSendKeyDownEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1486 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1517 bool wxApp::MacSendKeyUpEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1524 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1530 bool wxApp::MacSendCharEvent( wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1536 MacCreateKeyEvent( event, focus , keymessage , modifiers , when , wherex , wherey , uniChar ) ;
1604 else if (keyval == WXK_ESCAPE || (keyval == '.' && modifiers & cmdKey ) )
1617 void wxApp::MacCreateKeyEvent( wxKeyEvent& event, wxWindow* focus , long keymessage , long modifiers , long when , short wherex , short wherey , wxChar uniChar )
1623 if ( !(event.GetEventType() == wxEVT_CHAR) && (modifiers & (controlKey | shiftKey | optionKey) ) )
1631 UInt32 keyInfo = KeyTranslate((Ptr)GetScriptManagerVariable(smKCHRCache), ( modifiers & (~(controlKey | shiftKey | optionKey))) | keycode, &state);
1686 event.m_shiftDown = modifiers & shiftKey;
1687 event.m_controlDown = modifiers & controlKey;
1688 event.m_altDown = modifiers & optionKey;
1689 event.m_metaDown = modifiers & cmdKey;
1696 event.m_rawFlags = modifiers;