32#include <dom/html_element.h>
34#include <tdelibs_export.h>
37class HTMLGenericElementImpl;
38class HTMLAnchorElementImpl;
47class TDEHTML_EXPORT HTMLAnchorElement :
public HTMLElement
51 HTMLAnchorElement(
const HTMLAnchorElement &other);
52 HTMLAnchorElement(
const Node &other) : HTMLElement()
55 HTMLAnchorElement(HTMLAnchorElementImpl *impl);
58 HTMLAnchorElement & operator = (
const HTMLAnchorElement &other);
59 HTMLAnchorElement & operator = (
const Node &other);
251class HTMLBRElementImpl;
259class TDEHTML_EXPORT HTMLBRElement :
public HTMLElement
263 HTMLBRElement(
const HTMLBRElement &other);
264 HTMLBRElement(
const Node &other) : HTMLElement()
267 HTMLBRElement(HTMLBRElementImpl *impl);
270 HTMLBRElement & operator = (
const HTMLBRElement &other);
271 HTMLBRElement & operator = (
const Node &other);
292class HTMLFontElementImpl;
302class TDEHTML_EXPORT HTMLFontElement :
public HTMLElement
306 HTMLFontElement(
const HTMLFontElement &other);
307 HTMLFontElement(
const Node &other) : HTMLElement()
310 HTMLFontElement(HTMLFontElementImpl *impl);
313 HTMLFontElement & operator = (
const HTMLFontElement &other);
314 HTMLFontElement & operator = (
const Node &other);
361class HTMLModElementImpl;
372class TDEHTML_EXPORT HTMLModElement :
public HTMLElement
376 HTMLModElement(
const HTMLModElement &other);
377 HTMLModElement(
const Node &other) : HTMLElement()
380 HTMLModElement(HTMLElementImpl *impl);
383 HTMLModElement & operator = (
const HTMLModElement &other);
384 HTMLModElement & operator = (
const Node &other);
417class HTMLQuoteElementImpl;
430class TDEHTML_EXPORT HTMLQuoteElement :
public HTMLElement
434 HTMLQuoteElement(
const HTMLQuoteElement &other);
435 HTMLQuoteElement(
const Node &other) : HTMLElement()
438 HTMLQuoteElement(HTMLGenericElementImpl *impl);
441 HTMLQuoteElement & operator = (
const HTMLQuoteElement &other);
442 HTMLQuoteElement & operator = (
const Node &other);
This class implements the basic string we use in the DOM.
void setAccessKey(const DOMString &)
see accessKey
DOMString rev() const
Reverse link type.
void focus()
Gives keyboard focus to this element.
void click()
Simulate a mouse-click.
void setHref(const DOMString &)
see href
DOMString hreflang() const
Language code of the linked resource.
DOMString coords() const
Comma-separated list of lengths, defining an active region geometry.
DOMString type() const
Advisory content type.
long tabIndex() const
Index that represents the element's position in the tabbing order.
void setCharset(const DOMString &)
see charset
void setName(const DOMString &)
see name
void setRev(const DOMString &)
see rev
void setShape(const DOMString &)
see shape
DOMString shape() const
The shape of the active area.
void setRel(const DOMString &)
see rel
void setHreflang(const DOMString &)
see hreflang
void setTarget(const DOMString &)
see target
DOMString href() const
The URI of the linked resource.
void blur()
Removes keyboard focus from this element.
DOMString accessKey() const
A single character access key to give access to the form control.
DOMString name() const
Anchor name.
void setType(const DOMString &)
see type
void setCoords(const DOMString &)
see coords
void setTabIndex(long)
see tabIndex
DOMString target() const
Frame to render the resource in.
DOMString charset() const
The character encoding of the linked resource.
DOMString rel() const
Forward link type.
void setClear(const DOMString &)
see clear
DOMString clear() const
Control flow of text around floats.
DOMString face() const
Font face identifier.
DOMString size() const
Font size.
void setFace(const DOMString &)
see face
void setColor(const DOMString &)
see color
DOMString color() const
Font color.
void setSize(const DOMString &)
see size
void setDateTime(const DOMString &)
see dateTime
void setCite(const DOMString &)
see cite
DOMString cite() const
A URI designating a document that describes the reason for the change.
DOMString dateTime() const
The date and time of the change.
void setCite(const DOMString &)
see cite
DOMString cite() const
A URI designating a document that designates a source document or message.
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...