Go to the documentation of this file.
24#include "wtf/Platform.h"
33SVGLangSpace::SVGLangSpace()
37SVGLangSpace::~SVGLangSpace()
41const AtomicString& SVGLangSpace::xmllang()
const
46void SVGLangSpace::setXmllang(
const AtomicString& xmlLang)
51const AtomicString& SVGLangSpace::xmlspace()
const
53 if (m_space.isNull()) {
54 static const AtomicString defaultString(
"default");
61void SVGLangSpace::setXmlspace(
const AtomicString& xmlSpace)
66bool SVGLangSpace::parseMappedAttribute(MappedAttribute* attr)
68 if (attr->id() == ATTR_XML_LANG) {
69 setXmllang(attr->value());
71 }
else if (attr->id() == ATTR_XML_SPACE) {
72 setXmlspace(attr->value());
79bool SVGLangSpace::isKnownAttribute(
const QualifiedName& attrName)
81 return attrName.id() == ATTR_XML_LANG ||
82 attrName.id() == ATTR_XML_SPACE;
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Tue Mar 25 2025 00:00:00 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.