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 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
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 "EventNames.h" | |
35 #include "GestureEvent.h" | |
36 #include "KeyboardEvent.h" | |
37 #include "MouseEvent.h" | |
38 #include "Touch.h" | |
39 #include "TouchEvent.h" | |
40 #include "TouchList.h" | |
41 #include "WebInputEvent.h" | 34 #include "WebInputEvent.h" |
42 #include "WheelEvent.h" | 35 #include "core/dom/EventNames.h" |
| 36 #include "core/dom/GestureEvent.h" |
| 37 #include "core/dom/KeyboardEvent.h" |
| 38 #include "core/dom/MouseEvent.h" |
| 39 #include "core/dom/Touch.h" |
| 40 #include "core/dom/TouchEvent.h" |
| 41 #include "core/dom/TouchList.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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 modifiers = getWebInputModifiers(event); | 640 modifiers = getWebInputModifiers(event); |
641 | 641 |
642 globalX = event.screenX(); | 642 globalX = event.screenX(); |
643 globalY = event.screenY(); | 643 globalY = event.screenY(); |
644 IntPoint localPoint = convertAbsoluteLocationForRenderObject(event.absoluteL
ocation(), *renderObject); | 644 IntPoint localPoint = convertAbsoluteLocationForRenderObject(event.absoluteL
ocation(), *renderObject); |
645 x = localPoint.x(); | 645 x = localPoint.x(); |
646 y = localPoint.y(); | 646 y = localPoint.y(); |
647 } | 647 } |
648 | 648 |
649 } // namespace WebKit | 649 } // namespace WebKit |
OLD | NEW |