/* Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis Copyright (C) 2008 Apple Inc. All rights reserved. Copyright (C) 2008 Alp Toker Copyright (C) 2009 Cameron McCormack 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" #if ENABLE(SVG) #include "SVGElement.h" #include "CSSCursorImageValue.h" #include "DOMImplementation.h" #include "Document.h" #include "Event.h" #include "EventListener.h" #include "EventNames.h" #include "FrameView.h" #include "HTMLNames.h" #include "MappedAttribute.h" #include "RegisteredEventListener.h" #include "RenderObject.h" #include "SVGCursorElement.h" #include "SVGDocumentExtensions.h" #include "SVGElementInstance.h" #include "SVGNames.h" #include "SVGResource.h" #include "SVGSVGElement.h" #include "SVGURIReference.h" #include "SVGUseElement.h" #include "ScriptEventListener.h" #include "XMLNames.h" namespace WebCore { using namespace HTMLNames; SVGElement::SVGElement(const QualifiedName& tagName, Document* document) : StyledElement(tagName, document, CreateElementZeroRefCount) , m_shadowParent(0) , m_cursorElement(0) , m_cursorImageValue(0) { } PassRefPtr SVGElement::create(const QualifiedName& tagName, Document* document) { return new SVGElement(tagName, document); } SVGElement::~SVGElement() { if (m_cursorElement) m_cursorElement->removeClient(this); if (m_cursorImageValue) m_cursorImageValue->removeReferencedElement(this); } bool SVGElement::isSupported(StringImpl* feature, StringImpl* version) const { return DOMImplementation::hasFeature(feature, version); } String SVGElement::xmlbase() const { return getAttribute(XMLNames::baseAttr); } void SVGElement::setXmlbase(const String& value, ExceptionCode&) { setAttribute(XMLNames::baseAttr, value); } SVGSVGElement* SVGElement::ownerSVGElement() const { Node* n = isShadowNode() ? const_cast(this)->shadowParentNode() : parentNode(); while (n) { if (n->hasTagName(SVGNames::svgTag)) return static_cast(n); n = n->isShadowNode() ? n->shadowParentNode() : n->parentNode(); } return 0; } SVGElement* SVGElement::viewportElement() const { // This function needs shadow tree support - as RenderSVGContainer uses this function // to determine the "overflow" property. on wouldn't work otherwhise. Node* n = isShadowNode() ? const_cast(this)->shadowParentNode() : parentNode(); while (n) { if (n->hasTagName(SVGNames::svgTag) || n->hasTagName(SVGNames::imageTag) || n->hasTagName(SVGNames::symbolTag)) return static_cast(n); n = n->isShadowNode() ? n->shadowParentNode() : n->parentNode(); } return 0; } SVGDocumentExtensions* SVGElement::accessDocumentSVGExtensions() const { // This function is provided for use by SVGAnimatedProperty to avoid // global inclusion of Document.h in SVG code. return document() ? document()->accessSVGExtensions() : 0; } void SVGElement::mapInstanceToElement(SVGElementInstance* instance) { ASSERT(instance); ASSERT(!m_elementInstances.contains(instance)); m_elementInstances.add(instance); } void SVGElement::removeInstanceMapping(SVGElementInstance* instance) { ASSERT(instance); ASSERT(m_elementInstances.contains(instance)); m_elementInstances.remove(instance); } HashSet SVGElement::instancesForElement() const { return m_elementInstances; } void SVGElement::parseMappedAttribute(MappedAttribute* attr) { // standard events if (attr->name() == onloadAttr) setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onclickAttr) setAttributeEventListener(eventNames().clickEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onmousedownAttr) setAttributeEventListener(eventNames().mousedownEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onmousemoveAttr) setAttributeEventListener(eventNames().mousemoveEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onmouseoutAttr) setAttributeEventListener(eventNames().mouseoutEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onmouseoverAttr) setAttributeEventListener(eventNames().mouseoverEvent, createAttributeEventListener(this, attr)); else if (attr->name() == onmouseupAttr) setAttributeEventListener(eventNames().mouseupEvent, createAttributeEventListener(this, attr)); else if (attr->name() == SVGNames::onfocusinAttr) setAttributeEventListener(eventNames().DOMFocusInEvent, createAttributeEventListener(this, attr)); else if (attr->name() == SVGNames::onfocusoutAttr) setAttributeEventListener(eventNames().DOMFocusOutEvent, createAttributeEventListener(this, attr)); else if (attr->name() == SVGNames::onactivateAttr) setAttributeEventListener(eventNames().DOMActivateEvent, createAttributeEventListener(this, attr)); else StyledElement::parseMappedAttribute(attr); } bool SVGElement::haveLoadedRequiredResources() { Node* child = firstChild(); while (child) { if (child->isSVGElement() && !static_cast(child)->haveLoadedRequiredResources()) return false; child = child->nextSibling(); } return true; } static bool hasLoadListener(Node* node) { if (node->hasEventListeners(eventNames().loadEvent)) return true; for (node = node->parentNode(); node && node->isElementNode(); node = node->parentNode()) { const EventListenerVector& entry = node->getEventListeners(eventNames().loadEvent); for (size_t i = 0; i < entry.size(); ++i) { if (entry[i].useCapture) return true; } } return false; } void SVGElement::sendSVGLoadEventIfPossible(bool sendParentLoadEvents) { RefPtr currentTarget = this; while (currentTarget && currentTarget->haveLoadedRequiredResources()) { RefPtr parent; if (sendParentLoadEvents) parent = currentTarget->parentNode(); // save the next parent to dispatch too incase dispatching the event changes the tree if (hasLoadListener(currentTarget.get())) { RefPtr event = Event::create(eventNames().loadEvent, false, false); event->setTarget(currentTarget); currentTarget->dispatchGenericEvent(event.release()); } currentTarget = (parent && parent->isSVGElement()) ? static_pointer_cast(parent) : 0; } } void SVGElement::finishParsingChildren() { StyledElement::finishParsingChildren(); // finishParsingChildren() is called when the close tag is reached for an element (e.g. ) // we send SVGLoad events here if we can, otherwise they'll be sent when any required loads finish sendSVGLoadEventIfPossible(); } bool SVGElement::childShouldCreateRenderer(Node* child) const { if (child->isSVGElement()) return static_cast(child)->isValid(); return false; } void SVGElement::insertedIntoDocument() { StyledElement::insertedIntoDocument(); SVGDocumentExtensions* extensions = document()->accessSVGExtensions(); String resourceId = SVGURIReference::getTarget(getAttribute(idAttr)); if (extensions->isPendingResource(resourceId)) { std::auto_ptr > clients(extensions->removePendingResource(resourceId)); if (clients->isEmpty()) return; HashSet::const_iterator it = clients->begin(); const HashSet::const_iterator end = clients->end(); for (; it != end; ++it) (*it)->buildPendingResource(); SVGResource::invalidateClients(*clients); } } void SVGElement::attributeChanged(Attribute* attr, bool preserveDecls) { ASSERT(attr); if (!attr) return; StyledElement::attributeChanged(attr, preserveDecls); svgAttributeChanged(attr->name()); } void SVGElement::updateAnimatedSVGAttribute(const String& name) const { ASSERT(!m_areSVGAttributesValid); if (m_synchronizingSVGAttributes) return; m_synchronizingSVGAttributes = true; if (name.isEmpty()) { m_propertyController.synchronizeAllProperties(); setSynchronizedSVGAttributes(true); } else m_propertyController.synchronizeProperty(name); m_synchronizingSVGAttributes = false; } void SVGElement::setSynchronizedSVGAttributes(bool value) const { m_areSVGAttributesValid = value; } ContainerNode* SVGElement::eventParentNode() { return m_shadowParent ? m_shadowParent : StyledElement::eventParentNode(); } } #endif // ENABLE(SVG)