/external/webkit/WebCore/page/ |
D | EventHandler.h | 111 bool updateDragAndDrop(const PlatformMouseEvent&, Clipboard*); 112 void cancelDragAndDrop(const PlatformMouseEvent&, Clipboard*); 113 bool performDragAndDrop(const PlatformMouseEvent&, Clipboard*); 134 bool mouseMoved(const PlatformMouseEvent&); 136 bool handleMousePressEvent(const PlatformMouseEvent&); 137 bool handleMouseMoveEvent(const PlatformMouseEvent&, HitTestResult* hoveredNode = 0); 138 bool handleMouseReleaseEvent(const PlatformMouseEvent&); 145 bool sendContextMenuEvent(const PlatformMouseEvent&); 160 bool eventMayStartDrag(const PlatformMouseEvent&) const; 162 void dragSourceMovedTo(const PlatformMouseEvent&); [all …]
|
D | MouseEventWithHitTestResults.h | 34 MouseEventWithHitTestResults(const PlatformMouseEvent&, const HitTestResult&); 36 const PlatformMouseEvent& event() const { return m_event; } in event() 45 PlatformMouseEvent m_event;
|
D | DragController.h | 46 class PlatformMouseEvent; variable 86 …bool startDrag(Frame* src, Clipboard*, DragOperation srcOp, const PlatformMouseEvent& dragEvent, c…
|
D | EventHandler.cpp | 438 bool EventHandler::eventMayStartDrag(const PlatformMouseEvent& event) const in eventMayStartDrag() 1003 bool EventHandler::handleMousePressEvent(const PlatformMouseEvent& mouseEvent) in handleMousePressEvent() 1121 bool EventHandler::handleMouseDoubleClickEvent(const PlatformMouseEvent& mouseEvent) in handleMouseDoubleClickEvent() 1159 bool EventHandler::mouseMoved(const PlatformMouseEvent& event) in mouseMoved() 1174 bool EventHandler::handleMouseMoveEvent(const PlatformMouseEvent& mouseEvent, HitTestResult* hovere… in handleMouseMoveEvent() 1272 bool EventHandler::handleMouseReleaseEvent(const PlatformMouseEvent& mouseEvent) in handleMouseReleaseEvent() 1326 …chDragEvent(const AtomicString& eventType, Node* dragTarget, const PlatformMouseEvent& event, Clip… in dispatchDragEvent() 1341 bool EventHandler::updateDragAndDrop(const PlatformMouseEvent& event, Clipboard* clipboard) in updateDragAndDrop() 1390 void EventHandler::cancelDragAndDrop(const PlatformMouseEvent& event, Clipboard* clipboard) in cancelDragAndDrop() 1403 bool EventHandler::performDragAndDrop(const PlatformMouseEvent& event, Clipboard* clipboard) in performDragAndDrop() [all …]
|
D | MouseEventWithHitTestResults.cpp | 30 MouseEventWithHitTestResults::MouseEventWithHitTestResults(const PlatformMouseEvent& event, const H… in MouseEventWithHitTestResults()
|
/external/webkit/WebCore/platform/ |
D | PlatformMouseEvent.h | 72 class PlatformMouseEvent { 74 PlatformMouseEvent() in PlatformMouseEvent() function 87 …PlatformMouseEvent(const IntPoint& pos, const IntPoint& globalPos, MouseButton button, MouseEventT… in PlatformMouseEvent() function 119 PlatformMouseEvent(NSEvent*); 123 PlatformMouseEvent(HWND, UINT, WPARAM, LPARAM, bool activatedWebView = false); 128 PlatformMouseEvent(GdkEventButton*); 129 PlatformMouseEvent(GdkEventMotion*); 132 PlatformMouseEvent(QInputEvent*, int clickCount); 135 PlatformMouseEvent(const wxMouseEvent&, const wxPoint& globalPoint);
|
D | Scrollbar.h | 42 class PlatformMouseEvent; variable 98 bool mouseMoved(const PlatformMouseEvent&); 104 bool mouseDown(const PlatformMouseEvent&); 110 bool contextMenu(const PlatformMouseEvent& event); 115 PlatformMouseEvent transformEvent(const PlatformMouseEvent&);
|
D | ScrollbarTheme.h | 35 class PlatformMouseEvent; variable 44 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&) { return NoPart; } in hitTest() argument 78 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&) { return false; } in shouldCenterOnThumb() argument
|
D | Scrollbar.cpp | 306 bool Scrollbar::mouseMoved(const PlatformMouseEvent& evt) in mouseMoved() 358 bool Scrollbar::mouseDown(const PlatformMouseEvent& evt) in mouseDown() 447 PlatformMouseEvent Scrollbar::transformEvent(const PlatformMouseEvent& event) in transformEvent()
|
/external/webkit/WebCore/platform/gtk/ |
D | ScrollbarGtk.h | 44 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) { return false; } in handleMouseMoveEvent() argument 45 virtual bool handleMouseOutEvent(const PlatformMouseEvent&) { return false; } in handleMouseOutEvent() argument 46 virtual bool handleMousePressEvent(const PlatformMouseEvent&) { return false; } in handleMousePressEvent() argument 47 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) { return false; } in handleMouseReleaseEvent() argument
|
D | MouseEventGtk.cpp | 42 PlatformMouseEvent::PlatformMouseEvent(GdkEventButton* event) in PlatformMouseEvent() function in WebCore::PlatformMouseEvent 86 PlatformMouseEvent::PlatformMouseEvent(GdkEventMotion* motion) in PlatformMouseEvent() function in WebCore::PlatformMouseEvent
|
/external/webkit/WebCore/platform/chromium/ |
D | FramelessScrollView.h | 40 class PlatformMouseEvent; variable 58 virtual bool handleMouseDownEvent(const PlatformMouseEvent&) = 0; 59 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) = 0; 60 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0;
|
D | PopupMenuChromium.h | 65 virtual bool handleMouseDownEvent(const PlatformMouseEvent&); 66 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&); 67 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&);
|
D | PopupMenuChromium.cpp | 78 virtual bool handleMouseDownEvent(const PlatformMouseEvent&); 79 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&); 80 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&); 286 static PlatformMouseEvent constructRelativeMouseEvent(const PlatformMouseEvent& e, in constructRelativeMouseEvent() 293 PlatformMouseEvent relativeEvent = e; in constructRelativeMouseEvent() 400 bool PopupContainer::handleMouseDownEvent(const PlatformMouseEvent& event) in handleMouseDownEvent() 406 bool PopupContainer::handleMouseMoveEvent(const PlatformMouseEvent& event) in handleMouseMoveEvent() 412 bool PopupContainer::handleMouseReleaseEvent(const PlatformMouseEvent& event) in handleMouseReleaseEvent() 522 bool PopupListBox::handleMouseDownEvent(const PlatformMouseEvent& event) in handleMouseDownEvent() 537 bool PopupListBox::handleMouseMoveEvent(const PlatformMouseEvent& event) in handleMouseMoveEvent() [all …]
|
D | ScrollbarThemeChromium.h | 38 class PlatformMouseEvent; variable 65 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
/external/webkit/WebCore/platform/qt/ |
D | ScrollbarThemeQt.h | 40 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&); 42 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
D | PlatformMouseEventQt.cpp | 37 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount) in PlatformMouseEvent() function in WebCore::PlatformMouseEvent
|
/external/webkit/WebCore/platform/wx/ |
D | MouseEventWx.cpp | 36 PlatformMouseEvent::PlatformMouseEvent(const wxMouseEvent& event, const wxPoint& globalPoint) in PlatformMouseEvent() function in WebCore::PlatformMouseEvent
|
/external/webkit/WebCore/platform/win/ |
D | PlatformMouseEventWin.cpp | 76 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool … in PlatformMouseEvent() function in WebCore::PlatformMouseEvent
|
D | ScrollbarThemeSafari.h | 53 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
D | ScrollbarThemeWin.h | 52 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
/external/webkit/WebCore/rendering/ |
D | RenderScrollbarTheme.h | 33 class PlatformMouseEvent; variable 49 …virtual bool shouldCenterOnThumb(Scrollbar* scrollbar, const PlatformMouseEvent& event) { return S… in shouldCenterOnThumb()
|
/external/webkit/WebKit/win/ |
D | WebDropSource.cpp | 94 PlatformMouseEvent generateMouseEvent(WebView* webView, bool isDrag) { in generateMouseEvent() 101 return PlatformMouseEvent(IntPoint(localpt.x, localpt.y), IntPoint(pt.x, pt.y), in generateMouseEvent()
|
/external/webkit/WebCore/platform/mac/ |
D | PlatformMouseEventMac.mm | 27 #import "PlatformMouseEvent.h" 142 PlatformMouseEvent::PlatformMouseEvent(NSEvent* event)
|
D | ScrollbarThemeMac.h | 62 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|