HomeSort by relevance Sort by last modified time
    Searched refs:globalPosition (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformMouseEvent.h 53 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp)
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)
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)
78 , m_globalPosition(globalPosition)
87 const IntPoint& globalPosition() const { return m_globalPosition; }
PlatformGestureEvent.h 46 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)
49 , m_globalPosition(globalPosition)
64 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
PlatformWheelEvent.h 82 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey)
85 , m_globalPosition(globalPosition)
106 const IntPoint& globalPosition() const { return m_globalPosition; } // Screen coordinates.
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragData.h 57 DragData(DataObject*, 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; }
DragData.cpp 43 DragData::DragData(DataObject* data, const IntPoint& clientPosition, const IntPoint& globalPosition,
46 , m_globalPosition(globalPosition)
53 DragData::DragData(const String&, const IntPoint& clientPosition, const IntPoint& globalPosition,
56 , m_globalPosition(globalPosition)
EventHandler.cpp     [all...]
DragController.cpp 119 return PlatformMouseEvent(dragData->clientPosition(), dragData->globalPosition(),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
GestureEvent.cpp 68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
WheelEvent.cpp 149 deltaMode(event), view, event.globalPosition(), event.position(),
MouseEvent.cpp 62 detail, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(),
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 131 EXPECT_EQ(10, platformMouseBuilder.globalPosition().x());
132 EXPECT_EQ(10, platformMouseBuilder.globalPosition().y());
150 EXPECT_EQ(10, platformGestureBuilder.globalPosition().x());
151 EXPECT_EQ(10, platformGestureBuilder.globalPosition().y());
337 EXPECT_EQ(100, platformMouseBuilder.globalPosition().x());
338 EXPECT_EQ(110, platformMouseBuilder.globalPosition().y());
356 EXPECT_EQ(100, platformGestureBuilder.globalPosition().x());
357 EXPECT_EQ(110, platformGestureBuilder.globalPosition().y());
482 EXPECT_EQ(10.f, platformGestureBuilder.globalPosition().x());
483 EXPECT_EQ(10.f, platformGestureBuilder.globalPosition().y())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 298 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
299 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
300 PlatformMouseEvent fakeMouseUp(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseReleased, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
308 PlatformWheelEvent syntheticWheelEvent(gestureEvent.position(), gestureEvent.globalPosition(), gestureEvent.deltaX(), gestureEvent.deltaY(), gestureEvent.deltaX() / 120.0f, gestureEvent.deltaY() / 120.0f, ScrollByPixelWheelEvent, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey());
WebInputEventConversion.cpp 640 globalX = event.globalPosition().x();
641 globalY = event.globalPosition().y();

Completed in 230 milliseconds