/external/webkit/Source/WebKit/chromium/tests/ |
WebInputEventFactoryTestGtk.cpp | 55 WebMouseEvent firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick); 61 WebMouseEvent secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick); 66 firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick); 72 secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick); 77 firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick); 84 secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick); 89 firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick); 96 secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick); 101 firstClickEvent = WebInputEventFactory::mouseEvent(&firstClick); 108 secondClickEvent = WebInputEventFactory::mouseEvent(&secondClick) [all...] |
PopupMenuTest.cpp | 238 PlatformMouseEvent mouseEvent(point, point, LeftButton, MouseEventPressed, 240 m_webView->selectPopup()->handleMouseDownEvent(mouseEvent); 244 PlatformMouseEvent mouseEvent(point, point, LeftButton, MouseEventReleased, 246 m_webView->selectPopup()->handleMouseReleaseEvent(mouseEvent); 349 PlatformMouseEvent mouseEvent(row1Point, row1Point, NoButton, MouseEventMoved, 351 m_webView->selectPopup()->handleMouseMoveEvent(mouseEvent);
|
/external/webkit/Source/WebKit/chromium/public/gtk/ |
WebInputEventFactory.h | 52 WEBKIT_API static WebMouseEvent mouseEvent(const GdkEventButton*); 53 WEBKIT_API static WebMouseEvent mouseEvent(const GdkEventMotion*); 54 WEBKIT_API static WebMouseEvent mouseEvent(const GdkEventCrossing*);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundleNavigationAction.cpp | 32 #include <WebCore/MouseEvent.h> 40 static const MouseEvent* mouseEventForNavigationAction(const NavigationAction& navigationAction) 44 return static_cast<const MouseEvent*>(e); 49 static WebMouseEvent::Button mouseButtonForMouseEvent(const MouseEvent* mouseEvent) 51 if (!mouseEvent) 54 if (!mouseEvent->buttonDown()) 57 return static_cast<WebMouseEvent::Button>(mouseEvent->button()); 93 if (const MouseEvent* mouseEvent = mouseEventForNavigationAction(navigationAction)) [all...] |
/external/webkit/Source/WebKit/chromium/public/win/ |
WebInputEventFactory.h | 47 WEBKIT_API static WebMouseEvent mouseEvent(HWND, UINT, WPARAM, LPARAM);
|
/external/webkit/Source/WebKit/chromium/public/mac/ |
WebInputEventFactory.h | 54 WEBKIT_API static WebMouseEvent mouseEvent(NSEvent*, NSView*);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
PageOverlay.cpp | 117 bool PageOverlay::mouseEvent(const WebMouseEvent& mouseEvent) 120 if (!bounds().contains(mouseEvent.position())) 123 return m_client->mouseEvent(this, mouseEvent);
|
PageOverlay.h | 54 virtual bool mouseEvent(PageOverlay*, const WebMouseEvent&) = 0; 67 bool mouseEvent(const WebMouseEvent&);
|
FindController.h | 62 virtual bool mouseEvent(PageOverlay*, const WebMouseEvent&);
|
/external/chromium/chrome/browser/ui/cocoa/ |
base_view.h | 29 - (void)mouseEvent:(NSEvent *)theEvent;
|
/external/webkit/Source/WebKit/wince/ |
WebView.cpp | 289 PlatformMouseEvent mouseEvent(hWnd, message, wParam, lParam); 291 bool insideThreshold = abs(globalPrevPoint.x() - mouseEvent.pos().x()) < ::GetSystemMetrics(SM_CXDOUBLECLK) 292 && abs(globalPrevPoint.y() - mouseEvent.pos().y()) < ::GetSystemMetrics(SM_CYDOUBLECLK); 309 if (insideThreshold && mouseEvent.button() == globalPrevButton) 315 globalPrevButton = mouseEvent.button(); 316 globalPrevPoint = mouseEvent.pos(); 318 mouseEvent.setClickCount(globalClickCount); 319 handled = m_page->mainFrame()->eventHandler()->handleMousePressEvent(mouseEvent); 322 mouseEvent.setClickCount(globalClickCount); 323 handled = m_page->mainFrame()->eventHandler()->handleMousePressEvent(mouseEvent); [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLSummaryElement.cpp | 27 #include "MouseEvent.h" 80 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event); 81 if (mouseEvent->button() != LeftButton)
|
ImageInputType.cpp | 29 #include "MouseEvent.h" 79 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event->underlyingEvent()); 80 m_clickLocation = IntPoint(mouseEvent->offsetX(), mouseEvent->offsetY());
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/ |
NetscapePluginMac.mm | 459 static void fillInCocoaEventFromMouseEvent(NPCocoaEvent& event, const WebMouseEvent& mouseEvent, const WebCore::IntPoint& pluginLocation) 461 event.data.mouse.modifierFlags = modifierFlags(mouseEvent); 462 event.data.mouse.pluginX = mouseEvent.position().x() - pluginLocation.x(); 463 event.data.mouse.pluginY = mouseEvent.position().y() - pluginLocation.y(); 464 event.data.mouse.buttonNumber = buttonNumber(mouseEvent.button()); 465 event.data.mouse.clickCount = mouseEvent.clickCount(); 466 event.data.mouse.deltaX = mouseEvent.deltaX(); 467 event.data.mouse.deltaY = mouseEvent.deltaY(); 468 event.data.mouse.deltaZ = mouseEvent.deltaZ(); 471 static NPCocoaEvent initializeMouseEvent(const WebMouseEvent& mouseEvent, const WebCore::IntPoint& pluginLocation [all...] |
/external/webkit/Source/WebKit/win/ |
WebActionPropertyBag.cpp | 37 #include <WebCore/MouseEvent.h> 101 static const MouseEvent* findMouseEvent(const Event* event) 105 return static_cast<const MouseEvent*>(e); 122 if (const MouseEvent* mouseEvent = findMouseEvent(m_action.event())) { 124 V_UNKNOWN(pVar) = WebElementPropertyBag::createInstance(m_frame->eventHandler()->hitTestResultAtPoint(mouseEvent->absoluteLocation(), false)); 129 if (const MouseEvent* mouseEvent = findMouseEvent(m_action.event())) { 131 V_I4(pVar) = mouseEvent->button();
|
DOMEventsClasses.cpp | 34 #include <WebCore/MouseEvent.h> 410 WebCore::MouseEvent* mouseEvent = static_cast<WebCore::MouseEvent*>(m_event.get()); 412 *result = mouseEvent->ctrlKey() ? TRUE : FALSE; 422 WebCore::MouseEvent* mouseEvent = static_cast<WebCore::MouseEvent*>(m_event.get()); 424 *result = mouseEvent->shiftKey() ? TRUE : FALSE; 434 WebCore::MouseEvent* mouseEvent = static_cast<WebCore::MouseEvent*>(m_event.get()) [all...] |
WebScrollBar.cpp | 227 PlatformMouseEvent mouseEvent((HWND)(ULONG64)window, msg, wParam, lParam); 230 m_scrollBar->mouseDown(mouseEvent); 236 m_scrollBar->mouseMoved(mouseEvent);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ControlPointTest.java | 19 import org.eclipse.swt.events.MouseEvent; 23 MouseEvent mouseEvent = canvasMouseEvent(10, 20, 0); 25 ControlPoint point = ControlPoint.create(mCanvas, mouseEvent);
|
PointTestCases.java | 20 import org.eclipse.swt.events.MouseEvent; 35 protected MouseEvent canvasMouseEvent(int x, int y, int stateMask) { 41 MouseEvent mouseEvent = new MouseEvent(event); 42 return mouseEvent;
|
/external/webkit/Source/WebCore/html/shadow/ |
SliderThumbElement.cpp | 40 #include "MouseEvent.h" 197 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event); 198 isLeftButton = mouseEvent->button() == LeftButton; 201 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event); 202 bool isLeftButton = mouseEvent->button() == LeftButton; 230 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event) [all...] |
TextControlInnerElements.cpp | 38 #include "MouseEvent.h" 153 if (event->type() == eventNames().mousedownEvent && event->isMouseEvent() && static_cast<MouseEvent*>(event)->button() == LeftButton) { 195 if (event->type() == eventNames().mousedownEvent && event->isMouseEvent() && static_cast<MouseEvent*>(event)->button() == LeftButton) { 206 if (event->type() == eventNames().mouseupEvent && event->isMouseEvent() && static_cast<MouseEvent*>(event)->button() == LeftButton) { 275 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event); 276 IntPoint local = roundedIntPoint(box->absoluteToLocal(mouseEvent->absoluteLocation(), false, true)); 277 if (mouseEvent->type() == eventNames().mousedownEvent && mouseEvent->button() == LeftButton) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderEmbeddedObject.cpp | 42 #include "MouseEvent.h" 253 bool RenderEmbeddedObject::isInMissingPluginIndicator(MouseEvent* event) 277 MouseEvent* mouseEvent = static_cast<MouseEvent*>(event); 279 if (event->type() == eventNames().mousedownEvent && static_cast<MouseEvent*>(event)->button() == LeftButton) { 280 m_mouseDownWasInMissingPluginIndicator = isInMissingPluginIndicator(mouseEvent); 290 if (event->type() == eventNames().mouseupEvent && static_cast<MouseEvent*>(event)->button() == LeftButton) { 298 if (m_mouseDownWasInMissingPluginIndicator && isInMissingPluginIndicator(mouseEvent)) { 306 setMissingPluginIndicatorIsPressed(m_mouseDownWasInMissingPluginIndicator && isInMissingPluginIndicator(mouseEvent)); [all...] |
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
WebHostedNetscapePluginView.mm | 93 _proxy->mouseEvent(self, event, NPCocoaEventMouseMoved); 314 _proxy->mouseEvent(self, event, NPCocoaEventMouseDown); 320 _proxy->mouseEvent(self, event, NPCocoaEventMouseUp); 326 _proxy->mouseEvent(self, event, NPCocoaEventMouseDragged); 335 _proxy->mouseEvent(self, event, NPCocoaEventMouseEntered); 341 _proxy->mouseEvent(self, event, NPCocoaEventMouseExited);
|
/external/webkit/Source/WebCore/page/ |
EventHandler.cpp | 58 #include "MouseEvent.h" [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
ChromeClientImpl.cpp | 291 const WebMouseEvent* mouseEvent = static_cast<const WebMouseEvent*>(inputEvent); 295 switch (mouseEvent->button) { 308 bool ctrl = mouseEvent->modifiers & WebMouseEvent::ControlKey; 309 bool shift = mouseEvent->modifiers & WebMouseEvent::ShiftKey; 310 bool alt = mouseEvent->modifiers & WebMouseEvent::AltKey; 311 bool meta = mouseEvent->modifiers & WebMouseEvent::MetaKey;
|