• 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/classic/

Lines Matching defs:modifiers

113     UInt32 modifiers ;
122 GetEventParameter( rawEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
137 ::HandleControlKey( macControl , keyCode , charCode , modifiers ) ;
147 focus , message , modifiers , when , point.h , point.v ) )
165 UInt32 modifiers ;
171 GetEventParameter(event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers);
185 focus , message , modifiers , when , point.h , point.v ) )
194 focus , message , modifiers , when , point.h , point.v ) )
203 event.m_shiftDown = modifiers & shiftKey;
204 event.m_controlDown = modifiers & controlKey;
205 event.m_altDown = modifiers & optionKey;
206 event.m_metaDown = modifiers & cmdKey;
214 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & controlKey )
217 event.SetEventType( ( modifiers & controlKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
220 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & shiftKey )
223 event.SetEventType( ( modifiers & shiftKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
226 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & optionKey )
229 event.SetEventType( ( modifiers & optionKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
232 if ( focus && (modifiers ^ wxTheApp->s_lastModifiers ) & cmdKey )
235 event.SetEventType( ( modifiers & cmdKey ) ? wxEVT_KEY_DOWN : wxEVT_KEY_UP ) ;
238 wxTheApp->s_lastModifiers = modifiers ;
252 UInt32 modifiers = 0;
259 sizeof( UInt32 ), NULL, &modifiers );
266 modifiers += btnState ;
271 modifiers |= controlKey ;
284 toplevelWindow->MacFireMouseEvent( mouseDown , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
288 toplevelWindow->MacFireMouseEvent( mouseUp , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
292 wxTheApp->MacHandleMouseMovedEvent( point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
296 toplevelWindow->MacFireMouseEvent( nullEvent , point.h , point.v , modifiers , EventTimeToTicks( GetEventTime( event ) ) ) ;
897 wxUint16 kind , wxInt32 x , wxInt32 y ,wxUint32 modifiers , long timestamp )
900 bool isDown = !(modifiers & btnState) ; // 1 is for up
901 bool controlDown = modifiers & controlKey ; // for simulating right mouse
927 event.m_shiftDown = modifiers & shiftKey;
928 event.m_controlDown = modifiers & controlKey;
929 event.m_altDown = modifiers & optionKey;
930 event.m_metaDown = modifiers & cmdKey;
1002 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;
1012 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;
1025 ((EventRecord*)ev)->modifiers , ((EventRecord*)ev)->when ) ;