Searched refs:mouseDownEvent (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSViewExtras.h44 // returns whether a drag should begin starting with mouseDownEvent; if the time
47 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
54 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
H A DWebNSViewExtras.m69 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
77 if ([mouseDownEvent type] != NSLeftMouseDown) {
96 float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
97 float deltay = ABS([nextEvent locationInWindow].y - [mouseDownEvent locationInWindow].y);
131 - (BOOL)_web_dragShouldBeginFromMouseDown:(NSEvent *)mouseDownEvent
134 return [self _web_dragShouldBeginFromMouseDown:mouseDownEvent
/external/webkit/Source/WebKit/chromium/tests/
H A DWebInputEventFactoryTestGtk.cpp128 WebMouseEvent mouseDownEvent; local
134 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
135 EXPECT_EQ(i, mouseDownEvent.clickCount);
144 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
145 EXPECT_EQ(1, mouseDownEvent.clickCount);
162 mouseDownEvent = WebInputEventFactory::mouseEvent(&mouseDown);
163 EXPECT_EQ(1, mouseDownEvent.clickCount);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewEventHandling.mm67 if (event == _private->mouseDownEvent)
71 [_private->mouseDownEvent release];
72 _private->mouseDownEvent = event;
H A DWebViewData.h164 NSEvent *mouseDownEvent; // Kept after handling the event. variable
H A DWebHTMLView.mm491 NSEvent *mouseDownEvent; // Kept after handling the event.
624 [mouseDownEvent release];
649 [mouseDownEvent release];
659 mouseDownEvent = nil;
1081 if (event == _private->mouseDownEvent)
1085 [_private->mouseDownEvent release];
1086 _private->mouseDownEvent = event;
5189 return _private->mouseDownEvent;
/external/webkit/Source/WebKit/mac/DefaultDelegates/
H A DWebDefaultUIDelegate.m191 - (BOOL)webView:(WebView *)webView shouldBeginDragForElement:(NSDictionary *)element dragImage:(NSImage *)dragImage mouseDownEvent:(NSEvent *)mouseDownEvent mouseDraggedEvent:(NSEvent *)mouseDraggedEvent

Completed in 121 milliseconds