OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "WebInputEventConversion.h" | 32 #include "WebInputEventConversion.h" |
33 | 33 |
34 #include "WebInputEvent.h" | 34 #include "WebInputEvent.h" |
35 #include "core/events/EventNames.h" | 35 #include "core/dom/EventNames.h" |
36 #include "core/events/GestureEvent.h" | 36 #include "core/dom/GestureEvent.h" |
37 #include "core/events/KeyboardEvent.h" | 37 #include "core/dom/KeyboardEvent.h" |
38 #include "core/events/MouseEvent.h" | 38 #include "core/dom/MouseEvent.h" |
39 #include "core/dom/Touch.h" | 39 #include "core/dom/Touch.h" |
40 #include "core/events/TouchEvent.h" | 40 #include "core/dom/TouchEvent.h" |
41 #include "core/dom/TouchList.h" | 41 #include "core/dom/TouchList.h" |
42 #include "core/events/WheelEvent.h" | 42 #include "core/dom/WheelEvent.h" |
43 #include "core/platform/PlatformKeyboardEvent.h" | 43 #include "core/platform/PlatformKeyboardEvent.h" |
44 #include "core/platform/PlatformMouseEvent.h" | 44 #include "core/platform/PlatformMouseEvent.h" |
45 #include "core/platform/PlatformWheelEvent.h" | 45 #include "core/platform/PlatformWheelEvent.h" |
46 #include "core/platform/ScrollView.h" | 46 #include "core/platform/ScrollView.h" |
47 #include "core/platform/Widget.h" | 47 #include "core/platform/Widget.h" |
48 #include "core/platform/chromium/KeyboardCodes.h" | 48 #include "core/platform/chromium/KeyboardCodes.h" |
49 #include "core/rendering/RenderObject.h" | 49 #include "core/rendering/RenderObject.h" |
50 | 50 |
51 using namespace WebCore; | 51 using namespace WebCore; |
52 | 52 |
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 modifiers = getWebInputModifiers(event); | 738 modifiers = getWebInputModifiers(event); |
739 | 739 |
740 globalX = event.screenX(); | 740 globalX = event.screenX(); |
741 globalY = event.screenY(); | 741 globalY = event.screenY(); |
742 IntPoint localPoint = convertAbsoluteLocationForRenderObject(event.absoluteL
ocation(), *renderObject); | 742 IntPoint localPoint = convertAbsoluteLocationForRenderObject(event.absoluteL
ocation(), *renderObject); |
743 x = localPoint.x(); | 743 x = localPoint.x(); |
744 y = localPoint.y(); | 744 y = localPoint.y(); |
745 } | 745 } |
746 | 746 |
747 } // namespace WebKit | 747 } // namespace WebKit |
OLD | NEW |