blob: 636187425a85c409843947663cf7f81a31c4aa28 [file] [log] [blame]
eric@webkit.org34f91702009-11-05 23:53:45 +00001/*
darin947a31b2006-02-24 03:08:41 +00002 Copyright (C) 2000 Simon Hausmann <hausmann@kde.org>
mjs@apple.com92047332014-03-15 04:08:27 +00003 Copyright (C) 2006 Apple Inc.
darin947a31b2006-02-24 03:08:41 +00004
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
ddkilzerc8eccec2007-09-26 02:29:57 +000017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
darin947a31b2006-02-24 03:08:41 +000019*/
20
commit-queue@webkit.orgd862d772016-10-31 22:07:53 +000021#pragma once
darin947a31b2006-02-24 03:08:41 +000022
aroben3e7723d2007-07-05 02:59:41 +000023#include "HitTestResult.h"
darinb9481ed2006-03-20 02:57:59 +000024#include "PlatformMouseEvent.h"
darin947a31b2006-02-24 03:08:41 +000025
26namespace WebCore {
27
hyatt@apple.com30ed5442008-09-13 18:39:58 +000028class Scrollbar;
hyatt6ba8ab72006-09-30 01:55:05 +000029
darin947a31b2006-02-24 03:08:41 +000030class MouseEventWithHitTestResults {
31public:
aroben3e7723d2007-07-05 02:59:41 +000032 MouseEventWithHitTestResults(const PlatformMouseEvent&, const HitTestResult&);
darin947a31b2006-02-24 03:08:41 +000033
darinb9481ed2006-03-20 02:57:59 +000034 const PlatformMouseEvent& event() const { return m_event; }
aroben3e7723d2007-07-05 02:59:41 +000035 const HitTestResult& hitTestResult() const { return m_hitTestResult; }
darin@apple.com95130fc2011-10-04 02:26:10 +000036 LayoutPoint localPoint() const { return m_hitTestResult.localPoint(); }
37 Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); }
aroben3e7723d2007-07-05 02:59:41 +000038 bool isOverLink() const;
hyatt@apple.com7cb18562008-09-22 07:57:52 +000039 bool isOverWidget() const { return m_hitTestResult.isOverWidget(); }
commit-queue@webkit.orgf3368352012-08-15 22:14:05 +000040 Node* targetNode() const { return m_hitTestResult.targetNode(); }
darin947a31b2006-02-24 03:08:41 +000041
42private:
darinb9481ed2006-03-20 02:57:59 +000043 PlatformMouseEvent m_event;
aroben3e7723d2007-07-05 02:59:41 +000044 HitTestResult m_hitTestResult;
darin947a31b2006-02-24 03:08:41 +000045};
46
weinig@apple.com6b9844b2009-07-09 20:57:18 +000047} // namespace WebCore