HomeSort by relevance Sort by last modified time
    Searched refs:PlatformMouseEvent (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformMouseEvent.h 37 class PlatformMouseEvent : public PlatformEvent {
46 PlatformMouseEvent()
55 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp)
66 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp)
77 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, SyntheticEventType synthesized, double timestamp)
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.h 37 #include "platform/PlatformMouseEvent.h"
118 bool updateDragAndDrop(const PlatformMouseEvent&, DataTransfer*);
119 void cancelDragAndDrop(const PlatformMouseEvent&, DataTransfer*);
120 bool performDragAndDrop(const PlatformMouseEvent&, DataTransfer*);
137 bool handleMouseMoveEvent(const PlatformMouseEvent&);
138 void handleMouseLeaveEvent(const PlatformMouseEvent&);
140 bool handleMousePressEvent(const PlatformMouseEvent&);
141 bool handleMouseReleaseEvent(const PlatformMouseEvent&);
169 bool sendContextMenuEvent(const PlatformMouseEvent&);
183 void dragSourceEndedAt(const PlatformMouseEvent&, DragOperation)
    [all...]
AutoscrollController.h 38 class PlatformMouseEvent;
67 void handleMouseReleaseForPanScrolling(LocalFrame*, const PlatformMouseEvent&);
PointerLockController.h 37 class PlatformMouseEvent;
55 void dispatchLockedMouseEvent(const PlatformMouseEvent&, const AtomicString& eventType);
EventWithHitTestResults.h 27 #include "platform/PlatformMouseEvent.h"
57 typedef EventWithHitTestResults<PlatformMouseEvent> MouseEventWithHitTestResults;
DragController.h 49 class PlatformMouseEvent;
72 bool startDrag(LocalFrame* src, const DragState&, const PlatformMouseEvent& dragEvent, const IntPoint& dragOrigin);
PointerLockController.cpp 35 #include "platform/PlatformMouseEvent.h"
132 void PointerLockController::dispatchLockedMouseEvent(const PlatformMouseEvent& event, const AtomicString& eventType)
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorClient.h 39 class PlatformMouseEvent;
78 virtual void dispatchMouseEvent(const PlatformMouseEvent&) { }
InspectorOverlay.h 55 class PlatformMouseEvent;
90 bool handleMouseEvent(const PlatformMouseEvent&);
InspectorController.h 70 class PlatformMouseEvent;
109 bool handleMouseEvent(LocalFrame*, const PlatformMouseEvent&);
  /external/chromium_org/third_party/WebKit/Source/core/events/
MouseEvent.h 29 #include "platform/PlatformMouseEvent.h"
64 bool isSimulated = false, PlatformMouseEvent::SyntheticEventType = PlatformMouseEvent::RealOrIndistinguishable);
66 static PassRefPtrWillBeRawPtr<MouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, const PlatformMouseEvent&, int detail, PassRefPtrWillBeRawPtr<Node> relatedTarget);
89 bool fromTouch() const { return m_syntheticEventType == PlatformMouseEvent::FromTouch; }
105 bool isSimulated, PlatformMouseEvent::SyntheticEventType);
116 PlatformMouseEvent::SyntheticEventType m_syntheticEventType;
MouseEvent.cpp 29 #include "platform/PlatformMouseEvent.h"
52 PassRefPtrWillBeRawPtr<MouseEvent> MouseEvent::create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView> view, const PlatformMouseEvent& event, int detail, PassRefPtrWillBeRawPtr<Node> relatedTarget)
72 PassRefPtrWillBeRawPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer, bool isSimulated, PlatformMouseEvent::SyntheticEventType syntheticEventType)
91 PassRefPtrWillBeRawPtr<DataTransfer> dataTransfer, bool isSimulated, PlatformMouseEvent::SyntheticEventType syntheticEventType)
209 nullptr, nullptr, true, PlatformMouseEvent::RealOrIndistinguishable)
WheelEvent.cpp 28 #include "platform/PlatformMouseEvent.h"
66 nullptr, false, PlatformMouseEvent::RealOrIndistinguishable)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 33 class PlatformMouseEvent;
45 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
46 virtual bool shouldSnapBackToDragOrigin(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldSnapBackToDragOrigin(scrollbar, event); }
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.h 67 bool handleMouseDownEvent(const PlatformMouseEvent&);
68 bool handleMouseMoveEvent(const PlatformMouseEvent&);
69 bool handleMouseReleaseEvent(const PlatformMouseEvent&);
WebInputEventConversion.h 36 #include "platform/PlatformMouseEvent.h"
60 class PlatformMouseEventBuilder : public PlatformMouseEvent {
103 // Converts a PlatformMouseEvent to a corresponding WebMouseEvent.
107 WebMouseEventBuilder(const Widget*, const PlatformMouseEvent&);
PopupListBox.h 46 class PlatformMouseEvent;
123 bool handleMouseDownEvent(const PlatformMouseEvent&);
124 bool handleMouseMoveEvent(const PlatformMouseEvent&);
125 bool handleMouseReleaseEvent(const PlatformMouseEvent&);
PopupContainer.cpp 42 #include "platform/PlatformMouseEvent.h"
62 static PlatformMouseEvent constructRelativeMouseEvent(const PlatformMouseEvent& e, PopupContainer* parent, PopupListBox* child)
66 // FIXME: This is a horrible hack since PlatformMouseEvent has no setters for x/y.
67 PlatformMouseEvent relativeEvent = e;
272 bool PopupContainer::handleMouseDownEvent(const PlatformMouseEvent& event)
279 bool PopupContainer::handleMouseMoveEvent(const PlatformMouseEvent& event)
286 bool PopupContainer::handleMouseReleaseEvent(const PlatformMouseEvent& event)
312 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), PlatformMouseEvent::FromTouch, gestureEvent.timestamp())
    [all...]
InspectorClientImpl.h 76 virtual void dispatchMouseEvent(const PlatformMouseEvent&) OVERRIDE;
PopupMenuTest.cpp 42 #include "platform/PlatformMouseEvent.h"
241 PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MousePressed,
242 1, false, false, false, false, PlatformMouseEvent::RealOrIndistinguishable, 0);
247 PlatformMouseEvent mouseEvent(point, point, LeftButton, PlatformEvent::MouseReleased,
248 1, false, false, false, false, PlatformMouseEvent::RealOrIndistinguishable, 0);
369 PlatformMouseEvent mouseEvent(row1Point, row1Point, NoButton, PlatformEvent::MouseMoved,
370 1, false, false, false, false, PlatformMouseEvent::RealOrIndistinguishable, 0);
WebDevToolsAgentImpl.h 120 virtual void dispatchMouseEvent(const PlatformMouseEvent&) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.h 36 class PlatformMouseEvent;
86 virtual bool shouldCenterOnThumb(ScrollbarThemeClient*, const PlatformMouseEvent&);
87 virtual bool shouldSnapBackToDragOrigin(ScrollbarThemeClient*, const PlatformMouseEvent&);
88 virtual bool shouldDragDocumentInsteadOfThumb(ScrollbarThemeClient*, const PlatformMouseEvent&) { return false; }
Scrollbar.h 41 class PlatformMouseEvent;
126 void mouseMoved(const PlatformMouseEvent&);
131 void mouseUp(const PlatformMouseEvent&);
132 void mouseDown(const PlatformMouseEvent&);
ScrollbarThemeMacCommon.h 60 virtual bool shouldDragDocumentInsteadOfThumb(ScrollbarThemeClient*, const PlatformMouseEvent&) OVERRIDE;

Completed in 660 milliseconds

1 2