| /* |
| * This file is part of the DOM implementation for KDE. |
| * |
| * (C) 1999 Lars Knoll (knoll@kde.org) |
| * (C) 2000 Frederik Holljen (frederik.holljen@hig.no) |
| * (C) 2001 Peter Kelly (pmk@post.com) |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Library General Public |
| * License as published by the Free Software Foundation; either |
| * version 2 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Library General Public License for more details. |
| * |
| * You should have received a copy of the GNU Library General Public License |
| * along with this library; see the file COPYING.LIB. If not, write to |
| * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| * Boston, MA 02111-1307, USA. |
| * |
| */ |
| |
| #ifndef _DOM2_TraversalImpl_h_ |
| #define _DOM2_TraversalImpl_h_ |
| |
| #include "dom/dom_node.h" |
| #include "dom/dom_misc.h" |
| #include "dom/dom2_traversal.h" |
| |
| namespace DOM { |
| |
| class NodeImpl; |
| class DocumentImpl; |
| |
| class NodeIteratorImpl : public DomShared |
| { |
| public: |
| NodeIteratorImpl(NodeImpl *_root, unsigned long _whatToShow, NodeFilter _filter, bool _entityReferenceExpansion); |
| ~NodeIteratorImpl(); |
| |
| |
| NodeImpl *root(); |
| unsigned long whatToShow(); |
| NodeFilter filter(); |
| bool expandEntityReferences(); |
| |
| NodeImpl *nextNode(int &exceptioncode); |
| NodeImpl *previousNode(int &exceptioncode); |
| void detach(int &exceptioncode); |
| |
| |
| |
| |
| /** |
| * This function has to be called if you delete a node from the |
| * document tree and you want the Iterator to react if there |
| * are any changes concerning it. |
| */ |
| void notifyBeforeNodeRemoval(NodeImpl *removed); |
| |
| short isAccepted(NodeImpl *n); |
| NodeImpl *getNextNode(NodeImpl *n); |
| NodeImpl *getPreviousNode(NodeImpl *n); |
| protected: |
| NodeImpl *m_root; |
| long m_whatToShow; |
| NodeFilter m_filter; |
| bool m_expandEntityReferences; |
| |
| bool m_inFront; |
| NodeImpl *m_referenceNode; |
| bool m_detached; |
| DocumentImpl *m_doc; |
| }; |
| |
| class NodeFilterImpl : public DomShared |
| { |
| public: |
| NodeFilterImpl(); |
| ~NodeFilterImpl(); |
| |
| virtual short acceptNode(const Node &n); |
| |
| void setCustomNodeFilter(CustomNodeFilter *custom); |
| CustomNodeFilter *customNodeFilter(); |
| protected: |
| CustomNodeFilter *m_customNodeFilter; |
| |
| }; |
| |
| class TreeWalkerImpl : public DomShared |
| { |
| public: |
| TreeWalkerImpl(); |
| TreeWalkerImpl(const TreeWalkerImpl &other); |
| TreeWalkerImpl(Node n, NodeFilter *f=0); |
| TreeWalkerImpl(Node n, long _whatToShow, NodeFilter *f=0); |
| TreeWalkerImpl & operator = (const TreeWalkerImpl &other); |
| |
| |
| ~TreeWalkerImpl(); |
| |
| Node getRoot(); |
| |
| unsigned long getWhatToShow(); |
| |
| NodeFilter getFilter(); |
| |
| bool getExpandEntityReferences(); |
| |
| Node getCurrentNode(); |
| |
| void setCurrentNode(const Node _currentNode); |
| |
| Node parentNode(); |
| |
| Node firstChild(); |
| |
| Node lastChild (); |
| |
| Node previousSibling (); |
| |
| Node nextSibling(); |
| |
| Node previousNode(); |
| |
| Node nextNode(); |
| |
| |
| /** |
| * Sets which node types are to be presented via the TreeWalker |
| */ |
| void setWhatToShow(long _whatToShow); |
| void setFilter(NodeFilter *_filter); |
| void setExpandEntityReferences(bool value); |
| |
| Node getParentNode(Node n); |
| Node getFirstChild(Node n); |
| Node getLastChild(Node n); |
| Node getPreviousSibling(Node n); |
| Node getNextSibling(Node n); |
| |
| short isAccepted(Node n); |
| |
| protected: |
| /** |
| * This attribute determines which node types are presented via |
| * the TreeWalker. |
| * |
| */ |
| long m_whatToShow; |
| |
| /** |
| * The filter used to screen nodes. |
| * |
| */ |
| NodeFilter *m_filter; |
| |
| /** |
| * The value of this flag determines whether entity reference |
| * nodes are expanded. To produce a view of the document that has |
| * entity references expanded and does not expose the entity |
| * reference node itself, use the whatToShow flags to hide the |
| * entity reference node and set expandEntityReferences to true |
| * when creating the iterator. To produce a view of the document |
| * that has entity reference nodes but no entity expansion, use |
| * the whatToShow flags to show the entity reference node and set |
| * expandEntityReferences to true. |
| * |
| * This is not implemented (allways true) |
| */ |
| bool m_expandEntityReferences; |
| |
| /** |
| * The current node. |
| * |
| * The value must not be null. Attempting to set it to null will |
| * raise a NOT_SUPPORTED_ERR exception. When setting a node, the |
| * whatToShow flags and any Filter associated with the TreeWalker |
| * are not checked. The currentNode may be set to any Node of any |
| * type. |
| * |
| */ |
| Node m_currentNode; |
| |
| Node m_rootNode; |
| }; |
| |
| |
| }; // namespace |
| |
| #endif |
| |