/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/ |
MacHelpers.cpp | 37 EventRef theEvent, 42 ((MacKeyboard*)callClass)->_keyDownCallback( theEvent ); 45 return CallNextEventHandler( nextHandler, theEvent ); 56 EventRef theEvent, 60 ((MacKeyboard*)callClass)->_keyUpCallback( theEvent ); 63 return CallNextEventHandler( nextHandler, theEvent ); 74 EventRef theEvent, 78 ((MacKeyboard*)callClass)->_modChangeCallback( theEvent ); 81 return CallNextEventHandler( nextHandler, theEvent ); 93 EventRef theEvent, [all...] |
CocoaMouse.mm | 122 - (BOOL)acceptsFirstMouse:(NSEvent *)theEvent 173 - (void)mouseDown:(NSEvent *)theEvent 176 NSEventType type = [theEvent type]; 182 if((type == NSLeftMouseDown) && ([theEvent modifierFlags] & NSAlternateKeyMask)) 186 else if((type == NSLeftMouseDown) && ([theEvent modifierFlags] & NSControlKeyMask)) 199 - (void)mouseUp:(NSEvent *)theEvent { 201 NSEventType type = [theEvent type]; 204 if((type == NSLeftMouseUp) && ([theEvent modifierFlags] & NSAlternateKeyMask)) 208 else if((type == NSLeftMouseUp) && ([theEvent modifierFlags] & NSControlKeyMask)) 223 - (void)mouseDragged:(NSEvent *)theEvent [all...] |
MacMouse.cpp | 191 void MacMouse::_mouseCallback( EventRef theEvent ) 193 UInt32 kind = GetEventKind (theEvent); 209 //GetEventParameter(theEvent, kEventParamMouseLocation, typeHIPoint, NULL, sizeof(HIPoint), NULL, &location); 210 GetEventParameter(theEvent, kEventParamMouseDelta, typeHIPoint, NULL, sizeof(HIPoint), NULL, &delta); 266 GetEventParameter(theEvent, kEventParamMouseButton, typeMouseButton, NULL, sizeof(EventMouseButton), NULL, &button); 267 GetEventParameter(theEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers); 327 GetEventParameter(theEvent, kEventParamMouseButton, typeMouseButton, NULL, sizeof(EventMouseButton), NULL, &button); 328 GetEventParameter(theEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modifiers); 357 GetEventParameter(theEvent, kEventParamMouseWheelAxis, typeMouseWheelAxis, NULL, sizeof(EventMouseWheelAxis), NULL, &wheelAxis); 358 GetEventParameter(theEvent, kEventParamMouseWheelDelta, typeSInt32, NULL, sizeof(SInt32), NULL, &wheelDelta) [all...] |
CocoaKeyboard.mm | 333 - (void)keyDown:(NSEvent *)theEvent 335 unsigned short virtualKey = [theEvent keyCode]; 336 unsigned int time = (unsigned int)[theEvent timestamp]; 345 NSUInteger stringsize = [[theEvent charactersIgnoringModifiers] length]; 346 [[theEvent charactersIgnoringModifiers] getCharacters:text range:NSMakeRange(0, stringsize)]; 361 macChar = [[theEvent charactersIgnoringModifiers] characterAtIndex:0]; 370 - (void)keyUp:(NSEvent *)theEvent 372 unsigned short virtualKey = [theEvent keyCode]; 375 [self injectEvent:kc eventTime:[theEvent timestamp] eventType:MAC_KEYUP]; 378 - (void)flagsChanged:(NSEvent *)theEvent [all...] |
MacKeyboard.cpp | 195 void MacKeyboard::_keyDownCallback( EventRef theEvent ) 201 unsigned int time = (unsigned int)GetEventTime(theEvent); 203 status = GetEventParameter(theEvent, 220 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, 0, &stringsize, NULL); 221 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar)*10, NULL, &text ); 222 status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar) * 10, &stringsize, &text ); 242 status = GetEventParameter( theEvent, 'kchr', typeChar, NULL, sizeof(char), NULL, &macChar ); 252 void MacKeyboard::_keyUpCallback( EventRef theEvent ) 257 status = GetEventParameter( theEvent, kEventParamKeyCode, typeUInt32, 261 injectEvent( kc, (int)GetEventTime(theEvent), MAC_KEYUP ) [all...] |
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/mac/ |
MacHelpers.h | 38 OSStatus KeyDownWrapper( EventHandlerCallRef nextHandler, EventRef theEvent, void* callClass ); 40 OSStatus KeyUpWrapper( EventHandlerCallRef nextHandler, EventRef theEvent, void* callClass ); 42 OSStatus KeyModWrapper( EventHandlerCallRef nextHandler, EventRef theEvent, void* callClass ); 44 OSStatus MouseWrapper( EventHandlerCallRef nextHandler, EventRef theEvent, void* callClass );
|
MacKeyboard.h | 63 void _keyDownCallback( EventRef theEvent ); 64 void _keyUpCallback( EventRef theEvent ); 65 void _modChangeCallback( EventRef theEvent );
|
MacMouse.h | 54 void _mouseCallback( EventRef theEvent );
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
terminalcommand.py | 34 theEvent = AE.AECreateAppleEvent(kAECoreSuite, kAEDoScript, termAddress, 37 theEvent.AEPutParamDesc(kAECommandClass, commandDesc) 40 theEvent.AESend(SEND_MODE, kAENormalPriority, kAEDefaultTimeout) 46 theEvent.AESend(SEND_MODE, kAENormalPriority, kAEDefaultTimeout)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
terminalcommand.py | 34 theEvent = AE.AECreateAppleEvent(kAECoreSuite, kAEDoScript, termAddress, 37 theEvent.AEPutParamDesc(kAECommandClass, commandDesc) 40 theEvent.AESend(SEND_MODE, kAENormalPriority, kAEDefaultTimeout) 46 theEvent.AESend(SEND_MODE, kAENormalPriority, kAEDefaultTimeout)
|
/external/opencv3/modules/highgui/src/ |
window_cocoa.mm | 715 - (void)keyDown:(NSEvent *)theEvent { 717 [super keyDown:theEvent]; 719 - (void)rightMouseDragged:(NSEvent *)theEvent { 721 [self cvMouseEvent:theEvent]; 723 - (void)rightMouseUp:(NSEvent *)theEvent { 725 [self cvMouseEvent:theEvent]; 727 - (void)rightMouseDown:(NSEvent *)theEvent { 730 [self cvMouseEvent:theEvent]; 732 - (void)mouseMoved:(NSEvent *)theEvent { 733 [self cvMouseEvent:theEvent]; [all...] |
window_carbon.cpp | 127 OSStatus keyHandler(EventHandlerCallRef hcr, EventRef theEvent, void* inUserData); 128 static pascal OSStatus windowEventHandler(EventHandlerCallRef nextHandler, EventRef theEvent, void *inUserData); 955 static pascal OSStatus windowEventHandler(EventHandlerCallRef nextHandler, EventRef theEvent, void *inUserData) 973 eventKind = GetEventKind(theEvent); 974 eventClass = GetEventClass(theEvent); 983 err = CallNextEventHandler(nextHandler, theEvent); 986 err = GetEventParameter(theEvent, kEventParamMouseButton, typeMouseButton, NULL, sizeof(eventMouseButton), NULL, &eventMouseButton); 987 err = GetEventParameter(theEvent, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(modifiers), NULL, &modifiers); 988 err = GetEventParameter(theEvent,kEventParamClickCount,typeUInt32,NULL,sizeof(UInt32),NULL,&count); 1002 err = GetEventParameter(theEvent, kEventParamWindowMouseLocation, typeHIPoint, NULL, sizeof(point), NULL, &point) [all...] |
/external/webrtc/webrtc/modules/video_render/mac/ |
video_render_agl.h | 136 EventHandlerCallRef nextHandler, EventRef theEvent, void* userData); 138 EventHandlerCallRef nextHandler, EventRef theEvent, void* userData);
|
video_render_agl.cc | 424 EventRef theEvent, 429 int eventType = GetEventKind(theEvent); 432 GetEventParameter (theEvent, 583 pascal OSStatus VideoRenderAGL::sHandleHiViewResized (EventHandlerCallRef nextHandler, EventRef theEvent, void* userData) 589 int eventType = GetEventKind(theEvent); 591 status = GetEventParameter (theEvent, [all...] |