1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
|
/*
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
* Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
* Copyright (C) 2003, 2005, 2006, 2008, 2013 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "MouseRelatedEvent.h"
#include "DocumentView.h"
#include "EventNames.h"
#include "LocalDOMWindow.h"
#include "LocalFrame.h"
#include "LocalFrameView.h"
#include "RenderLayer.h"
#include "RenderLayerInlines.h"
#include "RenderObject.h"
#include <wtf/TZoneMallocInlines.h>
namespace WebCore {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(MouseRelatedEvent);
// FIXME: Remove this variant.
MouseRelatedEvent::MouseRelatedEvent()
: UIEventWithKeyState(EventInterfaceType::Invalid)
{
}
MouseRelatedEvent::MouseRelatedEvent(enum EventInterfaceType eventInterface)
: UIEventWithKeyState(eventInterface)
{
}
MouseRelatedEvent::MouseRelatedEvent(enum EventInterfaceType eventInterface, const AtomString& eventType, CanBubble canBubble, IsCancelable isCancelable, IsComposed isComposed,
MonotonicTime timestamp, RefPtr<WindowProxy>&& view, int detail,
const DoublePoint& screenLocation, const DoublePoint& windowLocation, double movementX, double movementY, OptionSet<Modifier> modifiers, IsSimulated isSimulated, IsTrusted isTrusted)
: UIEventWithKeyState(eventInterface, eventType, canBubble, isCancelable, isComposed, timestamp, WTFMove(view), detail, modifiers, isTrusted)
, m_movementX(movementX)
, m_movementY(movementY)
, m_windowLocation(windowLocation)
, m_screenLocation(screenLocation)
, m_isSimulated(isSimulated == IsSimulated::Yes)
{
init(m_isSimulated, windowLocation);
}
MouseRelatedEvent::MouseRelatedEvent(enum EventInterfaceType eventInterface, const AtomString& type, IsCancelable isCancelable, MonotonicTime timestamp, RefPtr<WindowProxy>&& view, const DoublePoint& globalLocation, OptionSet<Modifier> modifiers)
: MouseRelatedEvent(eventInterface, type, CanBubble::Yes, isCancelable, IsComposed::Yes, timestamp,
WTFMove(view), 0, globalLocation, globalLocation /* Converted in init */, 0, 0, modifiers, IsSimulated::No)
{
}
MouseRelatedEvent::MouseRelatedEvent(enum EventInterfaceType eventInterface, const AtomString& eventType, const MouseRelatedEventInit& initializer, IsTrusted isTrusted)
: UIEventWithKeyState(eventInterface, eventType, initializer, isTrusted)
, m_movementX(initializer.movementX)
, m_movementY(initializer.movementY)
, m_screenLocation(DoublePoint(initializer.screenX, initializer.screenY))
{
auto screenX = initializer.screenX;
auto screenY = initializer.screenY;
if (!std::isfinite(screenX))
screenX = 0;
if (!std::isfinite(screenY))
screenY = 0;
setScreenLocation({ screenX, screenY });
init(false, DoublePoint::zero());
}
static inline bool isMoveEventType(const AtomString& eventType)
{
auto& eventNames = WebCore::eventNames();
return eventType == eventNames.mousemoveEvent
|| eventType == eventNames.pointermoveEvent
|| eventType == eventNames.touchmoveEvent;
}
void MouseRelatedEvent::init(bool isSimulated, const DoublePoint& windowLocation)
{
if (!isSimulated) {
if (RefPtr frameView = frameViewFromWindowProxy(view())) {
DoublePoint absolutePoint = frameView->windowToContents(windowLocation);
DoublePoint documentPoint = frameView->absoluteToDocumentPoint(absolutePoint);
m_pageLocation = WTFMove(documentPoint);
m_clientLocation = pagePointToClientPoint(m_pageLocation, frameView.get());
}
}
initCoordinates();
if (!isConstructedFromInitializer() && !isMoveEventType(type())) {
m_movementX = 0;
m_movementY = 0;
}
}
void MouseRelatedEvent::initCoordinates()
{
// Set up initial values for coordinates.
// Correct values are computed lazily, see computeRelativePosition.
m_layerLocation = LayoutPoint(m_pageLocation);
m_offsetLocation = m_pageLocation;
computePageLocation();
m_hasCachedRelativePosition = false;
}
LocalFrameView* MouseRelatedEvent::frameViewFromWindowProxy(WindowProxy* windowProxy)
{
if (!windowProxy)
return nullptr;
auto* window = dynamicDowncast<LocalDOMWindow>(windowProxy->window());
if (!window)
return nullptr;
auto* frame = window->localFrame();
return frame ? frame->view() : nullptr;
}
DoublePoint MouseRelatedEvent::pagePointToClientPoint(DoublePoint pagePoint, LocalFrameView* frameView)
{
if (!frameView)
return pagePoint;
return frameView->documentToClientPoint(pagePoint);
}
DoublePoint MouseRelatedEvent::pagePointToAbsolutePoint(DoublePoint pagePoint, LocalFrameView* frameView)
{
if (!frameView)
return pagePoint;
return pagePoint.scaled(frameView->documentToAbsoluteScaleFactor());
}
void MouseRelatedEvent::initCoordinates(const DoublePoint& clientLocation)
{
// Set up initial values for coordinates.
// Correct values are computed lazily, see computeRelativePosition.
auto documentToClientOffset = [&] -> DoubleSize {
if (RefPtr frameView = frameViewFromWindowProxy(view()))
return frameView->documentToClientOffset();
return { };
};
m_clientLocation = clientLocation;
m_pageLocation = clientLocation - documentToClientOffset();
m_layerLocation = LayoutPoint(m_pageLocation);
m_offsetLocation = m_pageLocation;
computePageLocation();
m_hasCachedRelativePosition = false;
}
float MouseRelatedEvent::documentToAbsoluteScaleFactor() const
{
if (RefPtr frameView = frameViewFromWindowProxy(view()))
return frameView->documentToAbsoluteScaleFactor();
return 1;
}
void MouseRelatedEvent::computePageLocation()
{
m_absoluteLocation = pagePointToAbsolutePoint(m_pageLocation, frameViewFromWindowProxy(view()));
}
void MouseRelatedEvent::receivedTarget()
{
m_hasCachedRelativePosition = false;
}
void MouseRelatedEvent::computeRelativePosition()
{
RefPtr targetNode = dynamicDowncast<Node>(target());
if (!targetNode)
return;
// Compute coordinates that are based on the target.
m_layerLocation = LayoutPoint(m_pageLocation);
m_offsetLocation = m_pageLocation;
// Must have an updated render tree for this math to work correctly.
targetNode->protectedDocument()->updateLayoutIgnorePendingStylesheets();
// Adjust offsetLocation to be relative to the target's position.
if (CheckedPtr renderer = targetNode->renderer()) {
m_offsetLocation = renderer->absoluteToLocal(absoluteLocation(), UseTransforms);
float scaleFactor = 1 / documentToAbsoluteScaleFactor();
if (scaleFactor != 1.0f)
m_offsetLocation.scale(scaleFactor);
}
// Adjust layerLocation to be relative to the layer.
// FIXME: event.layerX and event.layerY are poorly defined,
// and probably don't always correspond to RenderLayer offsets.
// https://bugs.webkit.org/show_bug.cgi?id=21868
RefPtr node = WTFMove(targetNode);
while (node && !node->renderer())
node = node->parentNode();
RenderLayer* layer;
if (node && (layer = node->renderer()->enclosingLayer())) {
for (; layer; layer = layer->parent()) {
m_layerLocation -= toLayoutSize(layer->location());
}
}
m_hasCachedRelativePosition = true;
}
DoublePoint MouseRelatedEvent::locationInRootViewCoordinates() const
{
if (RefPtr frameView = frameViewFromWindowProxy(view()))
return frameView->contentsToRootView(m_absoluteLocation);
return m_absoluteLocation;
}
int MouseRelatedEvent::layerX()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return m_layerLocation.x();
}
int MouseRelatedEvent::layerY()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return m_layerLocation.y();
}
double MouseRelatedEvent::offsetX()
{
if (isSimulated())
return 0;
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return std::round(m_offsetLocation.x());
}
double MouseRelatedEvent::offsetY()
{
if (isSimulated())
return 0;
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return std::round(m_offsetLocation.y());
}
double MouseRelatedEvent::pageX() const
{
return std::floor(m_pageLocation.x());
}
double MouseRelatedEvent::pageY() const
{
return std::floor(m_pageLocation.y());
}
static double finiteValue(double value)
{
return std::isfinite(value) ? value : 0;
}
double MouseRelatedEvent::screenX() const
{
// FIXME: Determine whether or not we should restrict the range of this value
// now that screenX is a double instead of an integer.
return std::floor(finiteValue(m_screenLocation.x()));
}
double MouseRelatedEvent::screenY() const
{
// FIXME: Determine whether or not we should restrict the range of this value
// now that screenY is a double instead of an integer.
return std::floor(finiteValue(m_screenLocation.y()));
}
double MouseRelatedEvent::clientX() const
{
// FIXME: Determine whether or not we should restrict the range of this value
// now that clientX is a double instead of an integer.
return std::floor(finiteValue(m_clientLocation.x()));
}
double MouseRelatedEvent::clientY() const
{
// FIXME: Determine whether or not we should restrict the range of this value
// now that clientY is a double instead of an integer.
return std::floor(finiteValue(m_clientLocation.y()));
}
} // namespace WebCore
|