32#include <dom/html_element.h>
33#include <tdelibs_export.h>
37class HTMLBaseFontElementImpl;
39class HTMLCollectionImpl;
48class TDEHTML_EXPORT HTMLBaseFontElement :
public HTMLElement
51 HTMLBaseFontElement();
52 HTMLBaseFontElement(
const HTMLBaseFontElement &other);
53 HTMLBaseFontElement(
const Node &other) : HTMLElement()
56 HTMLBaseFontElement(HTMLBaseFontElementImpl *impl);
59 HTMLBaseFontElement & operator = (
const HTMLBaseFontElement &other);
60 HTMLBaseFontElement & operator = (
const Node &other);
62 ~HTMLBaseFontElement();
126class TDEHTML_EXPORT HTMLCollection
128 friend class HTMLDocument;
129 friend class HTMLSelectElement;
130 friend class HTMLImageElement;
131 friend class HTMLMapElement;
132 friend class HTMLTableElement;
133 friend class HTMLTableRowElement;
134 friend class HTMLTableSectionElement;
135 friend class HTMLLayerElement;
136 friend class HTMLElement;
140 HTMLCollection(
const HTMLCollection &other);
142 HTMLCollection(NodeImpl *base,
int type);
145 HTMLCollection & operator = (
const HTMLCollection &other);
153 unsigned long length()
const;
167 Node item (
unsigned long index )
const;
192 HTMLCollectionImpl *handle()
const;
195 Node firstItem()
const;
196 Node nextItem()
const;
201 HTMLCollectionImpl *impl;
208 HTMLFormCollection(NodeImpl *base);
214class TDEHTML_EXPORT HTMLMappedNameCollection :
public HTMLCollection
217 HTMLMappedNameCollection(NodeImpl *base,
int type,
const DOMString &name );
This class implements the basic string we use in the DOM.
long getSize() const
Computed Font size.
void setFace(const DOMString &)
see face
DOMString size() const TDE_DEPRECATED
DOMString face() const
Font face identifier.
DOMString color() const
Font color.
void setColor(const DOMString &)
see color
void setSize(long)
see size
An HTMLCollection is a list of nodes.
Node item(unsigned long index) const
This method retrieves a node specified by ordinal index.
unsigned long length() const
This attribute specifies the length or size of the list.
Node namedItem(const DOMString &name) const
This method retrieves a Node using a 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...