32#include <dom/html_element.h>
38class HTMLAreaElementImpl;
47class TDEHTML_EXPORT HTMLAreaElement :
public HTMLElement
51 HTMLAreaElement(
const HTMLAreaElement &other);
52 HTMLAreaElement(
const Node &other) : HTMLElement()
55 HTMLAreaElement(HTMLAreaElementImpl *impl);
58 HTMLAreaElement & operator = (
const HTMLAreaElement &other);
59 HTMLAreaElement & operator = (
const Node &other);
177class HTMLImageElementImpl;
185class TDEHTML_EXPORT HTMLImageElement :
public HTMLElement
189 HTMLImageElement(
const HTMLImageElement &other);
190 HTMLImageElement(
const Node &other) : HTMLElement()
193 HTMLImageElement(HTMLImageElementImpl *impl);
196 HTMLImageElement & operator = (
const HTMLImageElement &other);
197 HTMLImageElement & operator = (
const Node &other);
259 long border()
const TDE_DEPRECATED;
383class HTMLMapElementImpl;
393class TDEHTML_EXPORT HTMLMapElement :
public HTMLElement
397 HTMLMapElement(
const HTMLMapElement &other);
398 HTMLMapElement(
const Node &other) : HTMLElement()
401 HTMLMapElement(HTMLMapElementImpl *impl);
404 HTMLMapElement & operator = (
const HTMLMapElement &other);
405 HTMLMapElement & operator = (
const Node &other);
This class implements the basic string we use in the DOM.
void setHref(const DOMString &)
see href
long tabIndex() const
Index that represents the element's position in the tabbing order.
DOMString coords() const
Comma-separated list of lengths, defining an active region geometry.
DOMString alt() const
Alternate text for user agents not rendering the normal content of this element.
bool noHref() const
Specifies that this area is inactive, i.e., has no associated action.
DOMString href() const
The URI of the linked resource.
void setAlt(const DOMString &)
see alt
DOMString shape() const
The shape of the active area.
void setNoHref(bool)
see noHref
DOMString target() const
Frame to render the resource in.
void setAccessKey(const DOMString &)
see accessKey
void setShape(const DOMString &)
see shape
void setTabIndex(long)
see tabIndex
void setTarget(const DOMString &)
see target
DOMString accessKey() const
A single character access key to give access to the form control.
void setCoords(const DOMString &)
see coords
An HTMLCollection is a list of nodes.
void setName(const DOMString &)
see name
long vspace() const
Vertical space above and below this image.
DOMString getBorder() const
Width of border around image.
void setWidth(long)
see width
DOMString useMap() const
Use client-side image map.
void setHeight(long)
see height
long width() const
Override width.
void setAlign(const DOMString &)
see align
DOMString align() const
Aligns this object (vertically or horizontally) with respect to its surrounding text.
void setLongDesc(const DOMString &)
see longDesc
void setHspace(long)
see hspace
void setSrc(const DOMString &)
see src
void setBorder(const DOMString &)
see border
long hspace() const
Horizontal space to the left and right of this image.
DOMString alt() const
Alternate text for user agents not rendering the normal content of this element.
DOMString longDesc() const
URI designating a long description of this image or frame.
void setIsMap(bool)
see isMap
void setVspace(long)
see vspace
void setAlt(const DOMString &)
see alt
bool isMap() const
Use server-side image map.
DOMString name() const
The name of the element (for backwards compatibility).
void setUseMap(const DOMString &)
see useMap
DOMString src() const
URI designating the source of this image.
long height() const
Override height.
long border() const TDE_DEPRECATED
long x() const
Nonstandard extension to DOM::ImgElement.
DOMString name() const
Names the map (for use with usemap ).
HTMLCollection areas() const
The list of areas defined for the image map.
void setName(const DOMString &)
see name
The Node interface is the primary datatype for the entire Document Object Model.
The Document Object Model (DOM) is divided into two parts, the COREDOM core DOM, specifying some core...