Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'HTMLHeadElement (./kdelibs/khtml/dom/html_base.h:341)
class HTMLHeadElement : public HTMLElement
{
public:
HTMLHeadElement();
HTMLHeadElement(const HTMLHeadElement &other);
HTMLHeadElement(const Node &other) : HTMLElement()
{(*this)=other;}
protected:
HTMLHeadElement(HTMLHeadElementImpl *impl);
public:
HTMLHeadElement & operator = (const HTMLHeadElement &other);
HTMLHeadElement & operator = (const Node &other);
~HTMLHeadElement();
/**
* URI designating a metadata profile. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-profile">
* profile attribute definition </a> in HTML 4.0.
*
*/
DOMString profile() const;
/**
* see @ref profile
*/
void setProfile( const DOMString & );
};
// --------------------------------------------------------------------------
kdelibs'HTMLHeadElement::HTMLHeadElement() (./kdelibs/khtml/dom/html_base.cpp:321)
HTMLHeadElement::HTMLHeadElement() : HTMLElement()
{
}
kdelibs'HTMLHeadElement::HTMLHeadElement() (./kdelibs/khtml/dom/html_base.cpp:325)
HTMLHeadElement::HTMLHeadElement(const HTMLHeadElement &other) : HTMLElement(other)
{
}
kdelibs'HTMLHeadElement::HTMLHeadElement() (./kdelibs/khtml/dom/html_base.cpp:329)
HTMLHeadElement::HTMLHeadElement(HTMLHeadElementImpl *impl) : HTMLElement(impl)
{
}
kdelibs'HTMLHeadElement::~HTMLHeadElement() (./kdelibs/khtml/dom/html_base.cpp:350)
HTMLHeadElement::~HTMLHeadElement()
{
}
kdelibs'HTMLHeadElement::profile() (./kdelibs/khtml/dom/html_base.cpp:354)
DOMString HTMLHeadElement::profile() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_PROFILE);
}
kdelibs'HTMLHeadElement::setProfile() (./kdelibs/khtml/dom/html_base.cpp:360)
void HTMLHeadElement::setProfile( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_PROFILE, value);
}
// --------------------------------------------------------------------------