This source file includes following definitions.
- m_hasCachedRelativePosition
- contentsScrollOffset
- m_isSimulated
- initCoordinates
- initCoordinates
- pageZoomFactor
- computePageLocation
- receivedTarget
- computeRelativePosition
- layerX
- layerY
- offsetX
- offsetY
- pageX
- pageY
- x
- y
- trace
#include "config.h"
#include "core/events/MouseRelatedEvent.h"
#include "core/dom/Document.h"
#include "core/frame/DOMWindow.h"
#include "core/frame/FrameView.h"
#include "core/frame/LocalFrame.h"
#include "core/rendering/RenderLayer.h"
#include "core/rendering/RenderObject.h"
namespace WebCore {
MouseRelatedEvent::MouseRelatedEvent()
: m_isSimulated(false)
, m_hasCachedRelativePosition(false)
{
}
static LayoutSize contentsScrollOffset(AbstractView* abstractView)
{
if (!abstractView)
return LayoutSize();
LocalFrame* frame = abstractView->frame();
if (!frame)
return LayoutSize();
FrameView* frameView = frame->view();
if (!frameView)
return LayoutSize();
float scaleFactor = frame->pageZoomFactor();
return LayoutSize(frameView->scrollX() / scaleFactor, frameView->scrollY() / scaleFactor);
}
MouseRelatedEvent::MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> abstractView,
int detail, const IntPoint& screenLocation, const IntPoint& windowLocation,
const IntPoint& movementDelta,
bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
: UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
, m_screenLocation(screenLocation)
, m_movementDelta(movementDelta)
, m_isSimulated(isSimulated)
{
LayoutPoint adjustedPageLocation;
LayoutPoint scrollPosition;
LocalFrame* frame = view() ? view()->frame() : 0;
if (frame && !isSimulated) {
if (FrameView* frameView = frame->view()) {
scrollPosition = frameView->scrollPosition();
adjustedPageLocation = frameView->windowToContents(windowLocation);
float scaleFactor = 1 / frame->pageZoomFactor();
if (scaleFactor != 1.0f) {
adjustedPageLocation.scale(scaleFactor, scaleFactor);
scrollPosition.scale(scaleFactor, scaleFactor);
}
}
}
m_clientLocation = adjustedPageLocation - toLayoutSize(scrollPosition);
m_pageLocation = adjustedPageLocation;
initCoordinates();
}
void MouseRelatedEvent::initCoordinates()
{
m_layerLocation = m_pageLocation;
m_offsetLocation = m_pageLocation;
computePageLocation();
m_hasCachedRelativePosition = false;
}
void MouseRelatedEvent::initCoordinates(const LayoutPoint& clientLocation)
{
m_clientLocation = clientLocation;
m_pageLocation = clientLocation + contentsScrollOffset(view());
m_layerLocation = m_pageLocation;
m_offsetLocation = m_pageLocation;
computePageLocation();
m_hasCachedRelativePosition = false;
}
static float pageZoomFactor(const UIEvent* event)
{
DOMWindow* window = event->view();
if (!window)
return 1;
LocalFrame* frame = window->frame();
if (!frame)
return 1;
return frame->pageZoomFactor();
}
void MouseRelatedEvent::computePageLocation()
{
float scaleFactor = pageZoomFactor(this);
setAbsoluteLocation(roundedLayoutPoint(FloatPoint(pageX() * scaleFactor, pageY() * scaleFactor)));
}
void MouseRelatedEvent::receivedTarget()
{
m_hasCachedRelativePosition = false;
}
void MouseRelatedEvent::computeRelativePosition()
{
Node* targetNode = target() ? target()->toNode() : 0;
if (!targetNode)
return;
m_layerLocation = m_pageLocation;
m_offsetLocation = m_pageLocation;
targetNode->document().updateLayoutIgnorePendingStylesheets();
if (RenderObject* r = targetNode->renderer()) {
FloatPoint localPos = r->absoluteToLocal(absoluteLocation(), UseTransforms);
m_offsetLocation = roundedLayoutPoint(localPos);
float scaleFactor = 1 / pageZoomFactor(this);
if (scaleFactor != 1.0f)
m_offsetLocation.scale(scaleFactor, scaleFactor);
}
Node* n = targetNode;
while (n && !n->renderer())
n = n->parentNode();
if (n) {
for (RenderLayer* layer = n->renderer()->enclosingLayer(); layer; layer = layer->parent())
m_layerLocation -= toLayoutSize(layer->location());
}
m_hasCachedRelativePosition = true;
}
int MouseRelatedEvent::layerX()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return m_layerLocation.x();
}
int MouseRelatedEvent::layerY()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return m_layerLocation.y();
}
int MouseRelatedEvent::offsetX()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return roundToInt(m_offsetLocation.x());
}
int MouseRelatedEvent::offsetY()
{
if (!m_hasCachedRelativePosition)
computeRelativePosition();
return roundToInt(m_offsetLocation.y());
}
int MouseRelatedEvent::pageX() const
{
return m_pageLocation.x();
}
int MouseRelatedEvent::pageY() const
{
return m_pageLocation.y();
}
int MouseRelatedEvent::x() const
{
return m_clientLocation.x();
}
int MouseRelatedEvent::y() const
{
return m_clientLocation.y();
}
void MouseRelatedEvent::trace(Visitor* visitor)
{
UIEventWithKeyState::trace(visitor);
}
}