Go to the documentation of this file.
30SVGMPathElement::SVGMPathElement(
const QualifiedName& qname, Document* doc)
31 : SVGElement(qname, doc)
35SVGMPathElement::~SVGMPathElement()
39void SVGMPathElement::parseMappedAttribute(MappedAttribute* attr)
41 if (SVGURIReference::parseMappedAttribute(attr))
43 SVGElement::parseMappedAttribute(attr);
46SVGPathElement* SVGMPathElement::pathElement()
48 Element* target = document()->getElementById(getTarget(SVGURIReference::href()));
49 if (target && target->hasTagName(SVGNames::pathTag))
50 return static_cast<SVGPathElement*
>(target);
This file is part of the KDE documentation.
Documentation copyright © 1996-2026 The KDE developers.
Generated on
by
doxygen 1.16.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.