KHtml
dom2_traversal.cpp
CustomNodeFilter can be used to define your own NodeFilter for use with NodeIterators and TreeWalkers...
Definition: dom2_traversal.h:294
Node root()
The root node of the TreeWalker, as specified when it was created.
Definition: dom2_traversal.cpp:313
The Node interface is the primary datatype for the entire Document Object Model.
Definition: dom_node.h:278
Node previousSibling()
Moves the TreeWalker to the previous sibling of the current node, and returns the new node...
Definition: dom2_traversal.cpp:391
Node nextSibling()
Moves the TreeWalker to the next sibling of the current node, and returns the new node...
Definition: dom2_traversal.cpp:400
unsigned long whatToShow()
This attribute determines which node types are presented via the TreeWalker.
Definition: dom2_traversal.cpp:321
virtual DOMString customNodeFilterType()
Definition: dom2_traversal.cpp:263
Node previousNode()
Moves the TreeWalker to the previous node in document order relative to the current node...
Definition: dom2_traversal.cpp:409
DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impos...
Definition: dom_exception.h:58
unsigned long whatToShow()
This attribute determines which node types are presented via the iterator.
Definition: dom2_traversal.cpp:80
Node nextNode()
Returns the next node in the set and advances the position of the Iterator in the set...
Definition: dom2_traversal.cpp:104
TreeWalker objects are used to navigate a document tree or subtree using the view of the document def...
Definition: dom2_traversal.h:339
virtual short acceptNode(const Node &n)
Test whether a specified node is visible in the logical view of a TreeWalker or NodeIterator.
Definition: dom2_traversal.cpp:202
Node currentNode()
The node at which the TreeWalker is currently positioned.
Definition: dom2_traversal.cpp:345
Node firstChild()
Moves the TreeWalker to the first child of the current node, and returns the new node.
Definition: dom2_traversal.cpp:373
Node root()
The root node of the NodeIterator, as specified when it was created.
Definition: dom2_traversal.cpp:72
Node previousNode()
Returns the previous node in the set and moves the position of the Iterator backwards in the set...
Definition: dom2_traversal.cpp:119
Filters are objects that know how to "filter out" nodes.
Definition: dom2_traversal.h:183
This library provides a full-featured HTML parser and widget.
bool expandEntityReferences()
The value of this flag determines whether the children of entity reference nodes are visible to the T...
Definition: dom2_traversal.cpp:337
NodeIterators are used to step through a set of nodes, e.g.
Definition: dom2_traversal.h:60
Node lastChild()
Moves the TreeWalker to the last child of the current node, and returns the new node.
Definition: dom2_traversal.cpp:382
void detach()
Detaches the NodeIterator from the set which it iterated over, releasing any computational resources ...
Definition: dom2_traversal.cpp:135
bool expandEntityReferences()
The value of this flag determines whether the children of entity reference nodes are visible to the i...
Definition: dom2_traversal.cpp:96
Node nextNode()
Moves the TreeWalker to the next node in document order relative to the current node, and returns the new node.
Definition: dom2_traversal.cpp:418
Node parentNode()
Moves to and returns the parent node of the current node.
Definition: dom2_traversal.cpp:364
This file is part of the KDE documentation.
Documentation copyright © 1996-2021 The KDE developers.
Generated on Thu Jan 21 2021 22:48:21 by doxygen 1.8.11 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2021 The KDE developers.
Generated on Thu Jan 21 2021 22:48:21 by doxygen 1.8.11 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.