blob: d9718eda177dc46b73e4ee4ef3172e86d3a34141 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MouseEventHitRegion_h
#define MouseEventHitRegion_h
#include "core/events/MouseEvent.h"
#include "core/html/HTMLCanvasElement.h"
#include "core/html/canvas/CanvasRenderingContext.h"
#include "core/html/canvas/CanvasRenderingContext2D.h"
namespace blink {
class MouseEventHitRegion {
public:
static String region(MouseEvent& event)
{
if (!event.target() || !isHTMLCanvasElement(event.target()->toNode()))
return String();
HTMLCanvasElement* canvas = toHTMLCanvasElement(event.target()->toNode());
CanvasRenderingContext* context = canvas->renderingContext();
if (!context || !context->is2d())
return String();
HitRegion* hitRegion = toCanvasRenderingContext2D(context)->
hitRegionAtPoint(LayoutPoint(event.offsetX(), event.offsetY()));
if (!hitRegion)
return String();
String id = hitRegion->id();
if (id.isEmpty())
return String();
return id;
}
};
} // namespace blink
#endif