Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'HTMLAppletElement (./kdelibs/khtml/dom/html_object.h:43)
class HTMLAppletElement : public HTMLElement
{
public:
HTMLAppletElement();
HTMLAppletElement(const HTMLAppletElement &other);
HTMLAppletElement(const Node &other) : HTMLElement()
{(*this)=other;}
protected:
HTMLAppletElement(HTMLAppletElementImpl *impl);
public:
HTMLAppletElement & operator = (const HTMLAppletElement &other);
HTMLAppletElement & operator = (const Node &other);
~HTMLAppletElement();
/**
* Aligns this object (vertically or horizontally) with respect to
* its surrounding text. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG">
* align attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString align() const;
/**
* see @ref align
*/
void setAlign( const DOMString & );
/**
* Alternate text for user agents not rendering the normal content
* of this element. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt">
* alt attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString alt() const;
/**
* see @ref alt
*/
void setAlt( const DOMString & );
/**
* Comma-separated archive list. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-archive-APPLET">
* archive attribute definition </a> in HTML 4.0. This attribute
* is deprecated in HTML 4.0.
*
*/
DOMString archive() const;
/**
* see @ref archive
*/
void setArchive( const DOMString & );
/**
* Applet class file. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-code">
* code attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString code() const;
/**
* see @ref code
*/
void setCode( const DOMString & );
/**
* Optional base URI for applet. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-codebase-APPLET">
* codebase attribute definition </a> in HTML 4.0. This attribute
* is deprecated in HTML 4.0.
*
*/
DOMString codeBase() const;
/**
* see @ref codeBase
*/
void setCodeBase( const DOMString & );
/**
* Override height. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-height-APPLET">
* height attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString height() const;
/**
* see @ref height
*/
void setHeight( const DOMString & );
/**
* Horizontal space to the left and right of this image, applet,
* or object. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-hspace">
* hspace attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString hspace() const;
/**
* see @ref hspace
*/
void setHspace( const DOMString & );
/**
* The name of the applet. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-APPLET">
* name attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString name() const;
/**
* see @ref name
*/
void setName( const DOMString & );
/**
* Serialized applet file. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-object">
* object attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString object() const;
/**
* see @ref object
*/
void setObject( const DOMString & );
/**
* Vertical space above and below this image, applet, or object.
* See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-vspace">
* vspace attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString vspace() const;
/**
* see @ref vspace
*/
void setVspace( const DOMString & );
/**
* Override width. See the <a
* href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-width-APPLET">
* width attribute definition </a> in HTML 4.0. This attribute is
* deprecated in HTML 4.0.
*
*/
DOMString width() const;
/**
* see @ref width
*/
void setWidth( const DOMString & );
};
// --------------------------------------------------------------------------
kdelibs'HTMLAppletElement::HTMLAppletElement() (./kdelibs/khtml/dom/html_object.cpp:34)
HTMLAppletElement::HTMLAppletElement() : HTMLElement()
{
}
kdelibs'HTMLAppletElement::HTMLAppletElement() (./kdelibs/khtml/dom/html_object.cpp:38)
HTMLAppletElement::HTMLAppletElement(const HTMLAppletElement &other)
: HTMLElement(other)
{
}
kdelibs'HTMLAppletElement::HTMLAppletElement() (./kdelibs/khtml/dom/html_object.cpp:43)
HTMLAppletElement::HTMLAppletElement(HTMLAppletElementImpl *impl)
: HTMLElement(impl)
{
}
kdelibs'HTMLAppletElement::~HTMLAppletElement() (./kdelibs/khtml/dom/html_object.cpp:65)
HTMLAppletElement::~HTMLAppletElement()
{
}
kdelibs'HTMLAppletElement::align() (./kdelibs/khtml/dom/html_object.cpp:69)
DOMString HTMLAppletElement::align() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_ALIGN);
}
kdelibs'HTMLAppletElement::setAlign() (./kdelibs/khtml/dom/html_object.cpp:75)
void HTMLAppletElement::setAlign( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALIGN, value);
}
kdelibs'HTMLAppletElement::alt() (./kdelibs/khtml/dom/html_object.cpp:80)
DOMString HTMLAppletElement::alt() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_ALT);
}
kdelibs'HTMLAppletElement::setAlt() (./kdelibs/khtml/dom/html_object.cpp:86)
void HTMLAppletElement::setAlt( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ALT, value);
}
kdelibs'HTMLAppletElement::archive() (./kdelibs/khtml/dom/html_object.cpp:91)
DOMString HTMLAppletElement::archive() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_ARCHIVE);
}
kdelibs'HTMLAppletElement::setArchive() (./kdelibs/khtml/dom/html_object.cpp:97)
void HTMLAppletElement::setArchive( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_ARCHIVE, value);
}
kdelibs'HTMLAppletElement::code() (./kdelibs/khtml/dom/html_object.cpp:102)
DOMString HTMLAppletElement::code() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_CODE);
}
kdelibs'HTMLAppletElement::setCode() (./kdelibs/khtml/dom/html_object.cpp:108)
void HTMLAppletElement::setCode( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODE, value);
}
kdelibs'HTMLAppletElement::codeBase() (./kdelibs/khtml/dom/html_object.cpp:113)
DOMString HTMLAppletElement::codeBase() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_CODEBASE);
}
kdelibs'HTMLAppletElement::setCodeBase() (./kdelibs/khtml/dom/html_object.cpp:119)
void HTMLAppletElement::setCodeBase( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_CODEBASE, value);
}
kdelibs'HTMLAppletElement::height() (./kdelibs/khtml/dom/html_object.cpp:124)
DOMString HTMLAppletElement::height() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_HEIGHT);
}
kdelibs'HTMLAppletElement::setHeight() (./kdelibs/khtml/dom/html_object.cpp:130)
void HTMLAppletElement::setHeight( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HEIGHT, value);
}
kdelibs'HTMLAppletElement::hspace() (./kdelibs/khtml/dom/html_object.cpp:135)
DOMString HTMLAppletElement::hspace() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_HSPACE);
}
kdelibs'HTMLAppletElement::setHspace() (./kdelibs/khtml/dom/html_object.cpp:141)
void HTMLAppletElement::setHspace( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_HSPACE, value);
}
kdelibs'HTMLAppletElement::name() (./kdelibs/khtml/dom/html_object.cpp:146)
DOMString HTMLAppletElement::name() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_NAME);
}
kdelibs'HTMLAppletElement::setName() (./kdelibs/khtml/dom/html_object.cpp:152)
void HTMLAppletElement::setName( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_NAME, value);
}
kdelibs'HTMLAppletElement::object() (./kdelibs/khtml/dom/html_object.cpp:157)
DOMString HTMLAppletElement::object() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_OBJECT);
}
kdelibs'HTMLAppletElement::setObject() (./kdelibs/khtml/dom/html_object.cpp:163)
void HTMLAppletElement::setObject( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_OBJECT, value);
}
kdelibs'HTMLAppletElement::vspace() (./kdelibs/khtml/dom/html_object.cpp:168)
DOMString HTMLAppletElement::vspace() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_VSPACE);
}
kdelibs'HTMLAppletElement::setVspace() (./kdelibs/khtml/dom/html_object.cpp:174)
void HTMLAppletElement::setVspace( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_VSPACE, value);
}
kdelibs'HTMLAppletElement::width() (./kdelibs/khtml/dom/html_object.cpp:179)
DOMString HTMLAppletElement::width() const
{
if(!impl) return 0;
return ((ElementImpl *)impl)->getAttribute(ATTR_WIDTH);
}
kdelibs'HTMLAppletElement::setWidth() (./kdelibs/khtml/dom/html_object.cpp:185)
void HTMLAppletElement::setWidth( const DOMString &value )
{
if(impl) ((ElementImpl *)impl)->setAttribute(ATTR_WIDTH, value);
}
// --------------------------------------------------------------------------