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/PlatformMouseEvent.h" | |
27 #include "public/platform/WebGestureEvent.h" | 26 #include "public/platform/WebGestureEvent.h" |
| 27 #include "public/platform/WebMouseEvent.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: |
38 EventWithHitTestResults(const EventType& event, | 38 EventWithHitTestResults(const EventType& event, |
39 const HitTestResult& hitTestResult) | 39 const HitTestResult& hitTestResult) |
40 : m_event(event), m_hitTestResult(hitTestResult) {} | 40 : m_event(event), m_hitTestResult(hitTestResult) {} |
41 | 41 |
42 const EventType& event() const { return m_event; } | 42 const EventType& event() const { return m_event; } |
43 const HitTestResult& hitTestResult() const { return m_hitTestResult; } | 43 const HitTestResult& hitTestResult() const { return m_hitTestResult; } |
44 LayoutPoint localPoint() const { return m_hitTestResult.localPoint(); } | 44 LayoutPoint localPoint() const { return m_hitTestResult.localPoint(); } |
45 Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); } | 45 Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); } |
46 bool isOverLink() const { return m_hitTestResult.isOverLink(); } | 46 bool isOverLink() const { return m_hitTestResult.isOverLink(); } |
47 bool isOverWidget() const { return m_hitTestResult.isOverWidget(); } | 47 bool isOverWidget() const { return m_hitTestResult.isOverWidget(); } |
48 Node* innerNode() const { return m_hitTestResult.innerNode(); } | 48 Node* innerNode() const { return m_hitTestResult.innerNode(); } |
| 49 const String& canvasRegionId() const { |
| 50 return m_hitTestResult.canvasRegionId(); |
| 51 } |
49 | 52 |
50 private: | 53 private: |
51 EventType m_event; | 54 EventType m_event; |
52 HitTestResult m_hitTestResult; | 55 HitTestResult m_hitTestResult; |
53 }; | 56 }; |
54 | 57 |
55 using MouseEventWithHitTestResults = | 58 using MouseEventWithHitTestResults = EventWithHitTestResults<WebMouseEvent>; |
56 EventWithHitTestResults<PlatformMouseEvent>; | |
57 | 59 |
58 using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>; | 60 using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>; |
59 | 61 |
60 } // namespace blink | 62 } // namespace blink |
61 | 63 |
62 #endif // EventWithHitTestResults_h | 64 #endif // EventWithHitTestResults_h |
OLD | NEW |