32#include <dom/dom_element.h>
33#include <tdelibs_export.h>
69class TDEHTML_EXPORT HTMLElement :
public Element
71 friend class HTMLDocument;
72 friend class ::TDEHTMLView;
73 friend class HTMLTableElement;
74 friend class HTMLTableRowElement;
75 friend class HTMLTableSectionElement;
79 HTMLElement(
const HTMLElement &other);
80 HTMLElement(
const Node &other) : Element()
84 HTMLElement(HTMLElementImpl *impl);
87 HTMLElement & operator = (
const HTMLElement &other);
88 HTMLElement & operator = (
const Node &other);
205 void removeCSSProperty(
const DOMString& property );
216 void assignOther(
const Node &other,
int elementId );
This class implements the basic string we use in the DOM.
By far the vast majority of objects (apart from text) that authors encounter when traversing a docume...
An HTMLCollection is a list of nodes.
void setLang(const DOMString &)
see lang
DOMString id() const
The element's identifier.
DOMString innerText() const
The text contained in this element.
void setId(const DOMString &)
see id
void setInnerHTML(const DOMString &html)
Set the HTML content of this node.
DOMString className() const
The class attribute of the element.
void setClassName(const DOMString &)
see className
DOMString dir() const
Specifies the base direction of directionally neutral text and the directionality of tables.
DOMString lang() const
Language code defined in RFC 1766.
HTMLCollection all() const
Retrieves a collection of all nodes that descend from this node.
void setInnerText(const DOMString &text)
Set the text content of this node.
DOMString title() const
The element's advisory title.
void setTitle(const DOMString &)
see title
void setDir(const DOMString &)
see dir
HTMLCollection children() const
Retrieves a collection of nodes that are direct descendants of this node.
DOMString innerHTML() const
The HTML code contained in this element.
The Node interface is the primary datatype for the entire Document Object Model.
Renders and displays HTML in a TQScrollView.
The Document Object Model (DOM) is divided into two parts, the COREDOM core DOM, specifying some core...