/external/webkit/Source/WebCore/platform/efl/ |
ScrollbarEfl.h | 45 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) { return false; } 46 virtual bool handleMouseOutEvent(const PlatformMouseEvent&) { return false; } 47 virtual bool handleMousePressEvent(const PlatformMouseEvent&) { return false; } 48 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) { return false; }
|
PlatformMouseEventEfl.cpp | 33 #include "PlatformMouseEvent.h" 40 void PlatformMouseEvent::setClickCount(unsigned int flags) 50 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Down* event, IntPoint position) 64 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Up* event, IntPoint position) 78 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Move* event, IntPoint position)
|
/external/webkit/Source/WebCore/page/ |
MouseEventWithHitTestResults.h | 25 #include "PlatformMouseEvent.h" 33 MouseEventWithHitTestResults(const PlatformMouseEvent&, const HitTestResult&); 35 const PlatformMouseEvent& event() const { return m_event; } 43 PlatformMouseEvent m_event;
|
MouseEventWithHitTestResults.cpp | 30 MouseEventWithHitTestResults::MouseEventWithHitTestResults(const PlatformMouseEvent& event, const HitTestResult& hitTestResult)
|
EventHandler.h | 32 #include "PlatformMouseEvent.h" 130 bool updateDragAndDrop(const PlatformMouseEvent&, Clipboard*); 131 void cancelDragAndDrop(const PlatformMouseEvent&, Clipboard*); 132 bool performDragAndDrop(const PlatformMouseEvent&, Clipboard*); 165 bool mouseMoved(const PlatformMouseEvent&); 169 bool handleMousePressEvent(const PlatformMouseEvent&); 170 bool handleMouseMoveEvent(const PlatformMouseEvent&, HitTestResult* hoveredNode = 0); 171 bool handleMouseReleaseEvent(const PlatformMouseEvent&); 180 bool sendContextMenuEvent(const PlatformMouseEvent&); 197 bool eventMayStartDrag(const PlatformMouseEvent&) const [all...] |
/external/webkit/Source/WebCore/platform/chromium/ |
FramelessScrollView.h | 40 class PlatformMouseEvent; 58 virtual bool handleMouseDownEvent(const PlatformMouseEvent&) = 0; 59 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) = 0; 60 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0;
|
ScrollbarThemeChromiumWin.h | 41 virtual bool shouldSnapBackToDragOrigin(Scrollbar*, const PlatformMouseEvent&); 47 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
ScrollbarThemeChromiumLinux.h | 45 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
ScrollbarThemeChromium.h | 38 class PlatformMouseEvent;
|
PopupMenuChromium.h | 120 virtual bool handleMouseDownEvent(const PlatformMouseEvent&); 121 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&); 122 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&);
|
ScrollbarThemeChromiumMac.h | 66 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
/external/webkit/Source/WebCore/platform/ |
PlatformMouseEvent.h | 76 class PlatformMouseEvent { 78 PlatformMouseEvent() 96 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, MouseEventType eventType, 135 PlatformMouseEvent(GdkEventButton*); 136 PlatformMouseEvent(GdkEventMotion*); 142 PlatformMouseEvent(const Evas_Event_Mouse_Down*, IntPoint); 143 PlatformMouseEvent(const Evas_Event_Mouse_Up*, IntPoint); 144 PlatformMouseEvent(const Evas_Event_Mouse_Move*, IntPoint); 149 PlatformMouseEvent(NSEvent *, NSView *windowView); 151 PlatformMouseEvent(int x, int y, int globalX, int globalY, MouseButton button, MouseEventType eventType [all...] |
ScrollbarTheme.h | 35 class PlatformMouseEvent; 46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&) { return NoPart; } 82 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&) { return false; } 83 virtual bool shouldSnapBackToDragOrigin(Scrollbar*, const PlatformMouseEvent&) { return false; }
|
Scrollbar.h | 39 class PlatformMouseEvent; 96 bool mouseMoved(const PlatformMouseEvent&); 102 bool mouseDown(const PlatformMouseEvent&); 108 bool contextMenu(const PlatformMouseEvent& event);
|
/external/webkit/Source/WebCore/platform/qt/ |
ScrollbarThemeQt.h | 46 virtual ScrollbarPart hitTest(Scrollbar*, const PlatformMouseEvent&); 48 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
PlatformMouseEventQt.cpp | 29 #include "PlatformMouseEvent.h" 38 PlatformMouseEvent::PlatformMouseEvent(QGraphicsSceneMouseEvent* event, int clickCount) 75 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount)
|
/external/webkit/Source/WebCore/platform/win/ |
ScrollbarThemeWin.h | 52 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&); 53 virtual bool shouldSnapBackToDragOrigin(Scrollbar*, const PlatformMouseEvent&);
|
ScrollbarThemeSafari.h | 53 virtual bool shouldCenterOnThumb(Scrollbar*, const PlatformMouseEvent&);
|
/external/webkit/Source/WebKit/win/ |
WebDropSource.h | 36 class PlatformMouseEvent; 39 WebCore::PlatformMouseEvent generateMouseEvent(WebView*, bool isDrag);
|
/external/webkit/Source/WebCore/platform/brew/ |
PlatformMouseEventBrew.cpp | 27 #include "PlatformMouseEvent.h" 36 PlatformMouseEvent::PlatformMouseEvent(AEEEvent event, uint16 wParam, uint32 dwParam)
|
/external/webkit/Source/WebCore/platform/haiku/ |
PlatformMouseEventHaiku.cpp | 31 #include "PlatformMouseEvent.h" 38 PlatformMouseEvent::PlatformMouseEvent(const BMessage* message)
|
/external/webkit/Source/WebKit2/Shared/ |
WebEventConversion.h | 30 #include <WebCore/PlatformMouseEvent.h> 57 WebCore::PlatformMouseEvent platform(const WebMouseEvent&);
|
/external/webkit/Source/WebCore/platform/gtk/ |
PlatformMouseEventGtk.cpp | 28 #include "PlatformMouseEvent.h" 39 PlatformMouseEvent::PlatformMouseEvent(GdkEventButton* event) 78 PlatformMouseEvent::PlatformMouseEvent(GdkEventMotion* motion)
|
/external/webkit/Source/WebCore/platform/mac/ |
PlatformMouseEventMac.mm | 27 #import "PlatformMouseEvent.h" 145 PlatformMouseEvent::PlatformMouseEvent(NSEvent* event, NSView *windowView) 161 PlatformMouseEvent::PlatformMouseEvent(int x, int y, int globalX, int globalY, MouseButton button, MouseEventType eventType,
|
/external/webkit/Source/WebCore/platform/wx/ |
MouseEventWx.cpp | 28 #include "PlatformMouseEvent.h" 36 PlatformMouseEvent::PlatformMouseEvent(const wxMouseEvent& event, const wxPoint& globalPoint, int clickCount)
|