eric@webkit.org | 34f9170 | 2009-11-05 23:53:45 +0000 | [diff] [blame] | 1 | /* |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 2 | Copyright (C) 2000 Simon Hausmann <hausmann@kde.org> |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 3 | Copyright (C) 2006 Apple Inc. |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 4 | |
| 5 | This library is free software; you can redistribute it and/or |
| 6 | modify it under the terms of the GNU Library General Public |
| 7 | License as published by the Free Software Foundation; either |
| 8 | version 2 of the License, or (at your option) any later version. |
| 9 | |
| 10 | This library is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | Library General Public License for more details. |
| 14 | |
| 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 |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 17 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 | Boston, MA 02110-1301, USA. |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
commit-queue@webkit.org | d862d77 | 2016-10-31 22:07:53 +0000 | [diff] [blame] | 21 | #pragma once |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 22 | |
aroben | 3e7723d | 2007-07-05 02:59:41 +0000 | [diff] [blame] | 23 | #include "HitTestResult.h" |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 24 | #include "PlatformMouseEvent.h" |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 25 | |
| 26 | namespace WebCore { |
| 27 | |
hyatt@apple.com | 30ed544 | 2008-09-13 18:39:58 +0000 | [diff] [blame] | 28 | class Scrollbar; |
hyatt | 6ba8ab7 | 2006-09-30 01:55:05 +0000 | [diff] [blame] | 29 | |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 30 | class MouseEventWithHitTestResults { |
| 31 | public: |
aroben | 3e7723d | 2007-07-05 02:59:41 +0000 | [diff] [blame] | 32 | MouseEventWithHitTestResults(const PlatformMouseEvent&, const HitTestResult&); |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 33 | |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 34 | const PlatformMouseEvent& event() const { return m_event; } |
aroben | 3e7723d | 2007-07-05 02:59:41 +0000 | [diff] [blame] | 35 | const HitTestResult& hitTestResult() const { return m_hitTestResult; } |
darin@apple.com | 95130fc | 2011-10-04 02:26:10 +0000 | [diff] [blame] | 36 | LayoutPoint localPoint() const { return m_hitTestResult.localPoint(); } |
| 37 | Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); } |
aroben | 3e7723d | 2007-07-05 02:59:41 +0000 | [diff] [blame] | 38 | bool isOverLink() const; |
hyatt@apple.com | 7cb1856 | 2008-09-22 07:57:52 +0000 | [diff] [blame] | 39 | bool isOverWidget() const { return m_hitTestResult.isOverWidget(); } |
commit-queue@webkit.org | f336835 | 2012-08-15 22:14:05 +0000 | [diff] [blame] | 40 | Node* targetNode() const { return m_hitTestResult.targetNode(); } |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 41 | |
| 42 | private: |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 43 | PlatformMouseEvent m_event; |
aroben | 3e7723d | 2007-07-05 02:59:41 +0000 | [diff] [blame] | 44 | HitTestResult m_hitTestResult; |
darin | 947a31b | 2006-02-24 03:08:41 +0000 | [diff] [blame] | 45 | }; |
| 46 | |
weinig@apple.com | 6b9844b | 2009-07-09 20:57:18 +0000 | [diff] [blame] | 47 | } // namespace WebCore |