| 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 15 matching lines...) Expand all Loading... |
| 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" | 34 #include "EventNames.h" |
| 35 #include "GestureEvent.h" | 35 #include "GestureEvent.h" |
| 36 #include "KeyboardCodes.h" | |
| 37 #include "KeyboardEvent.h" | 36 #include "KeyboardEvent.h" |
| 38 #include "MouseEvent.h" | 37 #include "MouseEvent.h" |
| 39 #include "PlatformKeyboardEvent.h" | 38 #include "PlatformKeyboardEvent.h" |
| 40 #include "PlatformMouseEvent.h" | 39 #include "PlatformMouseEvent.h" |
| 41 #include "PlatformWheelEvent.h" | 40 #include "PlatformWheelEvent.h" |
| 42 #include "RenderObject.h" | 41 #include "RenderObject.h" |
| 43 #include "ScrollView.h" | 42 #include "ScrollView.h" |
| 44 #include "Touch.h" | 43 #include "Touch.h" |
| 45 #include "TouchEvent.h" | 44 #include "TouchEvent.h" |
| 46 #include "TouchList.h" | 45 #include "TouchList.h" |
| 47 #include "WebInputEvent.h" | 46 #include "WebInputEvent.h" |
| 48 #include "WheelEvent.h" | 47 #include "WheelEvent.h" |
| 49 #include "Widget.h" | 48 #include "Widget.h" |
| 49 #include "core/platform/chromium/KeyboardCodes.h" |
| 50 | 50 |
| 51 using namespace WebCore; | 51 using namespace WebCore; |
| 52 | 52 |
| 53 namespace WebKit { | 53 namespace WebKit { |
| 54 | 54 |
| 55 static const double millisPerSecond = 1000.0; | 55 static const double millisPerSecond = 1000.0; |
| 56 | 56 |
| 57 static float widgetScaleFactor(const Widget* widget) | 57 static float widgetScaleFactor(const Widget* widget) |
| 58 { | 58 { |
| 59 if (!widget) | 59 if (!widget) |
| (...skipping 580 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 |