#ifndef SVGCursorElement_h
#define SVGCursorElement_h
#include "SVGNames.h"
#include "core/svg/SVGAnimatedBoolean.h"
#include "core/svg/SVGAnimatedLength.h"
#include "core/svg/SVGAnimatedString.h"
#include "core/svg/SVGElement.h"
#include "core/svg/SVGTests.h"
#include "core/svg/SVGURIReference.h"
namespace WebCore {
class SVGCursorElement FINAL : public SVGElement,
public SVGTests,
public SVGURIReference {
public:
static PassRefPtr<SVGCursorElement> create(Document&);
virtual ~SVGCursorElement();
void addClient(SVGElement*);
void removeClient(SVGElement*);
void removeReferencedElement(SVGElement*);
SVGAnimatedLength* x() const { return m_x.get(); }
SVGAnimatedLength* y() const { return m_y.get(); }
private:
explicit SVGCursorElement(Document&);
virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); }
bool isSupportedAttribute(const QualifiedName&);
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
RefPtr<SVGAnimatedLength> m_x;
RefPtr<SVGAnimatedLength> m_y;
HashSet<SVGElement*> m_clients;
};
}
#endif