| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2000 Simon Hausmann <hausmann@kde.org> | 2 Copyright (C) 2000 Simon Hausmann <hausmann@kde.org> |
| 3 Copyright (C) 2006 Apple Computer, Inc. | 3 Copyright (C) 2006 Apple Computer, Inc. |
| 4 | 4 |
| 5 This library is free software; you can redistribute it and/or | 5 This library is free software; you can redistribute it and/or |
| 6 modify it under the terms of the GNU Library General Public | 6 modify it under the terms of the GNU Library General Public |
| 7 License as published by the Free Software Foundation; either | 7 License as published by the Free Software Foundation; either |
| 8 version 2 of the License, or (at your option) any later version. | 8 version 2 of the License, or (at your option) any later version. |
| 9 | 9 |
| 10 This library is distributed in the hope that it will be useful, | 10 This library is distributed in the hope that it will be useful, |
| 11 but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 Library General Public License for more details. | 13 Library General Public License for more details. |
| 14 | 14 |
| 15 You should have received a copy of the GNU Library General Public License | 15 You should have received a copy of the GNU Library General Public License |
| 16 along with this library; see the file COPYING.LIB. If not, write to | 16 along with this library; see the file COPYING.LIB. If not, write to |
| 17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 Boston, MA 02110-1301, USA. | 18 Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef EventWithHitTestResults_h | 21 #ifndef EventWithHitTestResults_h |
| 22 #define EventWithHitTestResults_h | 22 #define EventWithHitTestResults_h |
| 23 | 23 |
| 24 #include "core/layout/HitTestResult.h" | 24 #include "core/layout/HitTestResult.h" |
| 25 #include "platform/PlatformEvent.h" | 25 #include "platform/PlatformEvent.h" |
| 26 #include "platform/PlatformGestureEvent.h" | |
| 27 #include "platform/PlatformMouseEvent.h" | 26 #include "platform/PlatformMouseEvent.h" |
| 27 #include "public/platform/WebGestureEvent.h" |
| 28 | 28 |
| 29 namespace blink { | 29 namespace blink { |
| 30 | 30 |
| 31 class Scrollbar; | 31 class Scrollbar; |
| 32 | 32 |
| 33 template <typename EventType> | 33 template <typename EventType> |
| 34 class EventWithHitTestResults { | 34 class EventWithHitTestResults { |
| 35 STACK_ALLOCATED(); | 35 STACK_ALLOCATED(); |
| 36 | 36 |
| 37 public: | 37 public: |
| (...skipping 10 matching lines...) Expand all Loading... |
| 48 Node* innerNode() const { return m_hitTestResult.innerNode(); } | 48 Node* innerNode() const { return m_hitTestResult.innerNode(); } |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 EventType m_event; | 51 EventType m_event; |
| 52 HitTestResult m_hitTestResult; | 52 HitTestResult m_hitTestResult; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 using MouseEventWithHitTestResults = | 55 using MouseEventWithHitTestResults = |
| 56 EventWithHitTestResults<PlatformMouseEvent>; | 56 EventWithHitTestResults<PlatformMouseEvent>; |
| 57 | 57 |
| 58 using GestureEventWithHitTestResults = | 58 using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>; |
| 59 EventWithHitTestResults<PlatformGestureEvent>; | |
| 60 | 59 |
| 61 } // namespace blink | 60 } // namespace blink |
| 62 | 61 |
| 63 #endif // EventWithHitTestResults_h | 62 #endif // EventWithHitTestResults_h |
| OLD | NEW |