OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 21 matching lines...) Expand all Loading... |
32 // Internal only: Helper class for what's common between mouse and wheel eve
nts. | 32 // Internal only: Helper class for what's common between mouse and wheel eve
nts. |
33 class MouseRelatedEvent : public UIEventWithKeyState { | 33 class MouseRelatedEvent : public UIEventWithKeyState { |
34 public: | 34 public: |
35 // Note that these values are adjusted to counter the effects of zoom, s
o that values | 35 // Note that these values are adjusted to counter the effects of zoom, s
o that values |
36 // exposed via DOM APIs are invariant under zooming. | 36 // exposed via DOM APIs are invariant under zooming. |
37 int screenX() const { return m_screenLocation.x(); } | 37 int screenX() const { return m_screenLocation.x(); } |
38 int screenY() const { return m_screenLocation.y(); } | 38 int screenY() const { return m_screenLocation.y(); } |
39 const IntPoint& screenLocation() const { return m_screenLocation; } | 39 const IntPoint& screenLocation() const { return m_screenLocation; } |
40 int clientX() const { return m_clientLocation.x(); } | 40 int clientX() const { return m_clientLocation.x(); } |
41 int clientY() const { return m_clientLocation.y(); } | 41 int clientY() const { return m_clientLocation.y(); } |
42 int webkitMovementX() const { return m_movementDelta.x(); } | 42 int movementX() const { return m_movementDelta.x(); } |
43 int webkitMovementY() const { return m_movementDelta.y(); } | 43 int movementY() const { return m_movementDelta.y(); } |
44 const LayoutPoint& clientLocation() const { return m_clientLocation; } | 44 const LayoutPoint& clientLocation() const { return m_clientLocation; } |
45 virtual int layerX() OVERRIDE FINAL; | 45 virtual int layerX() OVERRIDE FINAL; |
46 virtual int layerY() OVERRIDE FINAL; | 46 virtual int layerY() OVERRIDE FINAL; |
47 int offsetX(); | 47 int offsetX(); |
48 int offsetY(); | 48 int offsetY(); |
49 bool isSimulated() const { return m_isSimulated; } | 49 bool isSimulated() const { return m_isSimulated; } |
50 virtual int pageX() const OVERRIDE FINAL; | 50 virtual int pageX() const OVERRIDE FINAL; |
51 virtual int pageY() const OVERRIDE FINAL; | 51 virtual int pageY() const OVERRIDE FINAL; |
52 int x() const; | 52 int x() const; |
53 int y() const; | 53 int y() const; |
(...skipping 29 matching lines...) Expand all Loading... |
83 LayoutPoint m_layerLocation; | 83 LayoutPoint m_layerLocation; |
84 LayoutPoint m_offsetLocation; | 84 LayoutPoint m_offsetLocation; |
85 LayoutPoint m_absoluteLocation; | 85 LayoutPoint m_absoluteLocation; |
86 bool m_isSimulated; | 86 bool m_isSimulated; |
87 bool m_hasCachedRelativePosition; | 87 bool m_hasCachedRelativePosition; |
88 }; | 88 }; |
89 | 89 |
90 } // namespace WebCore | 90 } // namespace WebCore |
91 | 91 |
92 #endif // MouseRelatedEvent_h | 92 #endif // MouseRelatedEvent_h |
OLD | NEW |