Searched defs:globalPosition (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragData.h57 DragData(ChromiumDataObject*, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
58 DragData(const String& dragStorageName, const IntPoint& clientPosition, const IntPoint& globalPosition, DragOperation, DragApplicationFlags = DragApplicationNone);
60 const IntPoint& globalPosition() const { return m_globalPosition; } function in class:WebCore::DragData
H A DDragData.cpp44 DragData::DragData(ChromiumDataObject* data, const IntPoint& clientPosition, const IntPoint& globalPosition, argument
47 , m_globalPosition(globalPosition)
54 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition, argument
57 , m_globalPosition(globalPosition)
H A DEventHandler.cpp192 m_screenPos = event.globalPosition();
1750 0, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(),
2424 PlatformMouseEvent fakeMouseMove(adjustedPoint, gestureEvent.globalPosition(),
2430 PlatformMouseEvent fakeMouseDown(adjustedPoint, gestureEvent.globalPosition(),
2435 PlatformMouseEvent fakeMouseUp(adjustedPoint, gestureEvent.globalPosition(),
2447 PlatformMouseEvent mouseDownEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, 1,
2451 PlatformMouseEvent mouseDragEvent(adjustedPoint, gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseMoved, 1,
2652 IntPoint globalPoint(gestureEvent.globalPosition().x(), gestureEvent.globalPosition()
2858 IntPoint globalPosition = view->hostWindow()->rootViewToScreen(IntRect(position, IntSize())).location(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformGestureEvent.h46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY) argument
49 , m_globalPosition(globalPosition)
64 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates. function in class:WebCore::PlatformGestureEvent
H A DPlatformMouseEvent.h53 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp) argument
56 , m_globalPosition(globalPosition)
64 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp) argument
67 , m_globalPosition(globalPosition)
75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
78 , m_globalPosition(globalPosition)
87 const IntPoint& globalPosition() const { return m_globalPosition; } function in class:WebCore::PlatformMouseEvent
H A DPlatformWheelEvent.h80 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
83 , m_globalPosition(globalPosition)
114 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates. function in class:WebCore::PlatformWheelEvent

Completed in 1997 milliseconds