Home | History | Annotate | Download | only in Plugins

Lines Matching refs:theEvent

748 - (void)mouseDown:(NSEvent *)theEvent
753 _eventHandler->mouseDown(theEvent);
756 - (void)mouseUp:(NSEvent *)theEvent
761 _eventHandler->mouseUp(theEvent);
764 - (void)handleMouseEntered:(NSEvent *)theEvent
772 _eventHandler->mouseEntered(theEvent);
775 - (void)handleMouseExited:(NSEvent *)theEvent
780 _eventHandler->mouseExited(theEvent);
787 - (void)handleMouseMoved:(NSEvent *)theEvent
792 _eventHandler->mouseMoved(theEvent);
795 - (void)mouseDragged:(NSEvent *)theEvent
800 _eventHandler->mouseDragged(theEvent);
803 - (void)scrollWheel:(NSEvent *)theEvent
806 [super scrollWheel:theEvent];
810 if (!_eventHandler->scrollWheel(theEvent))
811 [super scrollWheel:theEvent];
814 - (void)keyUp:(NSEvent *)theEvent
819 _eventHandler->keyUp(theEvent);
822 - (void)keyDown:(NSEvent *)theEvent
827 _eventHandler->keyDown(theEvent);
830 - (void)flagsChanged:(NSEvent *)theEvent
835 _eventHandler->flagsChanged(theEvent);