#ifndef HTMLAreaElement_h
#define HTMLAreaElement_h
#include "core/html/HTMLAnchorElement.h"
#include "platform/geometry/LayoutRect.h"
namespace WebCore {
class HitTestResult;
class HTMLImageElement;
class Path;
class HTMLAreaElement FINAL : public HTMLAnchorElement {
public:
static PassRefPtr<HTMLAreaElement> create(Document&);
bool isDefault() const { return m_shape == Default; }
bool mapMouseEvent(LayoutPoint location, const LayoutSize&, HitTestResult&);
LayoutRect computeRect(RenderObject*) const;
Path computePath(RenderObject*) const;
HTMLImageElement* imageElement() const;
private:
explicit HTMLAreaElement(Document&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
virtual bool supportsFocus() const OVERRIDE;
virtual bool isKeyboardFocusable() const OVERRIDE;
virtual bool isMouseFocusable() const OVERRIDE;
virtual bool rendererIsFocusable() const OVERRIDE;
virtual void updateFocusAppearance(bool ) OVERRIDE;
virtual void setFocus(bool) OVERRIDE;
enum Shape { Default, Poly, Rect, Circle, Unknown };
Path getRegion(const LayoutSize&) const;
void invalidateCachedRegion();
OwnPtr<Path> m_region;
Vector<Length> m_coords;
LayoutSize m_lastSize;
Shape m_shape;
};
}
#endif