Home | History | Annotate | Download | only in mac

Lines Matching refs:theEvent

943     - (void)Selector:(NSEvent *)theEvent \
945 if ([[self inputContext] handleEvent:theEvent]) { \
949 NativeWebMouseEvent webEvent(theEvent, self); \
970 - (void)Selector:(NSEvent *)theEvent \
972 Web##Type##Event webEvent = WebEventFactory::createWeb##Type##Event(theEvent, self); \
1199 - (void)keyUp:(NSEvent *)theEvent
1201 _data->_page->handleKeyboardEvent(NativeWebKeyboardEvent(theEvent, self));
1204 - (void)keyDown:(NSEvent *)theEvent
1209 [[theEvent retain] autorelease];
1214 if ([[WKTextInputWindowController sharedTextInputWindowController] interpretKeyEvent:theEvent string:&string]) {
1225 if (_data->_keyDownEventBeingResent == theEvent) {
1226 [super keyDown:theEvent];
1229 _data->_page->handleKeyboardEvent(NativeWebKeyboardEvent(theEvent, self));
1232 - (void)flagsChanged:(NSEvent *)theEvent
1237 [[theEvent retain] autorelease];
1239 unsigned short keyCode = [theEvent keyCode];
1245 _data->_page->handleKeyboardEvent(NativeWebKeyboardEvent(theEvent, self));