⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 domrange.hpp

📁 经典开源游戏glest的源代码
💻 HPP
📖 第 1 页 / 共 2 页
字号:
#ifndef DOMRange_HEADER_GUARD_#define DOMRange_HEADER_GUARD_/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements.  See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License.  You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *//* * $Id: DOMRange.hpp 568078 2007-08-21 11:43:25Z amassari $ */#include <xercesc/util/XercesDefs.hpp>XERCES_CPP_NAMESPACE_BEGINclass DOMNode;class DOMDocumentFragment;/** * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>. * @since DOM Level 2 */class CDOM_EXPORT DOMRange {protected:    // -----------------------------------------------------------------------    //  Hidden constructors    // -----------------------------------------------------------------------    /** @name Hidden constructors */    //@{        DOMRange() {}    DOMRange(const DOMRange &) {}    //@}private:    // -----------------------------------------------------------------------    // Unimplemented constructors and operators    // -----------------------------------------------------------------------    /** @name Unimplemented operators */    //@{    DOMRange & operator = (const DOMRange &);    //@}public:    // -----------------------------------------------------------------------    //  All constructors are hidden, just the destructor is available    // -----------------------------------------------------------------------    /** @name Destructor */    //@{    /**     * Destructor     *     */    virtual ~DOMRange() {};    //@}    // -----------------------------------------------------------------------    //  Class Types    // -----------------------------------------------------------------------    /** @name Public Contants */    //@{    /**     * Constants CompareHow.     *     * <p><code>START_TO_START:</code>     * Compare start boundary-point of <code>sourceRange</code> to start     * boundary-point of Range on which <code>compareBoundaryPoints</code>     * is invoked.</p>     *     * <p><code>START_TO_END:</code>     * Compare start boundary-point of <code>sourceRange</code> to end     * boundary-point of Range on which <code>compareBoundaryPoints</code>     * is invoked.</p>     *     * <p><code>END_TO_END:</code>     * Compare end boundary-point of <code>sourceRange</code> to end     * boundary-point of Range on which <code>compareBoundaryPoints</code>     * is invoked.</p>     *     * <p><code>END_TO_START:</code>     * Compare end boundary-point of <code>sourceRange</code> to start     * boundary-point of Range on which <code>compareBoundaryPoints</code>     * is invoked.</p>     *     * @since DOM Level 2     */    enum CompareHow {        START_TO_START  = 0,        START_TO_END    = 1,        END_TO_END      = 2,        END_TO_START    = 3    };    //@}    // -----------------------------------------------------------------------    //  Virtual DOMRange interface    // -----------------------------------------------------------------------    /** @name Functions introduced in DOM Level 2 */    //@{    // -----------------------------------------------------------------------    //  Getter methods    // -----------------------------------------------------------------------    /**     * DOMNode within which the Range begins     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual DOMNode* getStartContainer() const = 0;    /**     * Offset within the starting node of the Range.     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual XMLSize_t getStartOffset() const = 0;    /**     * DOMNode within which the Range ends     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual DOMNode* getEndContainer() const = 0;    /**     * Offset within the ending node of the Range.     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual XMLSize_t getEndOffset() const = 0;    /**     * TRUE if the Range is collapsed     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual bool getCollapsed() const = 0;    /**     * The deepest common ancestor container of the Range's two     * boundary-points.     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *     * @since DOM Level 2     */    virtual const DOMNode* getCommonAncestorContainer() const = 0;    // -----------------------------------------------------------------------    //  Setter methods    // -----------------------------------------------------------------------    /**     * Sets the attributes describing the start of the Range.     * @param refNode The <code>refNode</code> value. This parameter must be     *   different from <code>null</code>.     * @param offset The <code>startOffset</code> value.     * @exception DOMRangeException     *   INVALID_NODE_TYPE_ERR: Raised if <code>refNode</code> or an ancestor     *   of <code>refNode</code> is an DOMEntity, DOMNotation, or DOMDocumentType     *   node.     * @exception DOMException     *   INDEX_SIZE_ERR: Raised if <code>offset</code> is negative or greater     *   than the number of child units in <code>refNode</code>. Child units     *   are 16-bit units if <code>refNode</code> is a type of DOMCharacterData     *   node (e.g., a DOMText or DOMComment node) or a DOMProcessingInstruction     *   node. Child units are Nodes in all other cases.     *   <br>INVALID_STATE_ERR: Raised if <code>detach()</code> has already     *   been invoked on this object.     *   <br>WRONG_DOCUMENT_ERR: Raised if <code>refNode</code> was created     *   from a different document than the one that created this range.     *     * @since DOM Level 2     */    virtual void setStart(const DOMNode *refNode, XMLSize_t offset) = 0;    /**     * Sets the attributes describing the end of a Range.     * @param refNode The <code>refNode</code> value. This parameter must be     *   different from <code>null</code>.     * @param offset The <code>endOffset</code> value.     * @exception DOMRangeException     *   INVALID_NODE_TYPE_ERR: Raised if <code>refNode</code> or an ancestor     *   of <code>refNode</code> is an DOMEntity, DOMNotation, or DOMDocumentType     *   node.     * @exception DOMException     *   INDEX_SIZE_ERR: Raised if <code>offset</code> is negative or greater     *   than the number of child units in <code>refNode</code>. Child units     *   are 16-bit units if <code>refNode</code> is a type of DOMCharacterData     *   node (e.g., a DOMText or DOMComment node) or a DOMProcessingInstruction     *   node. Child units are Nodes in all other cases.     *   <br>INVALID_STATE_ERR: Raised if <code>detach()</code> has already     *   been invoked on this object.     *   <br>WRONG_DOCUMENT_ERR: Raised if <code>refNode</code> was created     *   from a different document than the one that created this range.     *     * @since DOM Level 2     */    virtual void setEnd(const DOMNode *refNode, XMLSize_t offset) = 0;    /**     * Sets the start position to be before a node     * @param refNode Range starts before <code>refNode</code>     * @exception DOMRangeException     *   INVALID_NODE_TYPE_ERR: Raised if the root container of     *   <code>refNode</code> is not an DOMAttr, DOMDocument, or DOMDocumentFragment     *   node or if <code>refNode</code> is a DOMDocument, DOMDocumentFragment,     *   DOMAttr, DOMEntity, or DOMNotation node.     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *   <br>WRONG_DOCUMENT_ERR: Raised if <code>refNode</code> was created     *   from a different document than the one that created this range.     *     * @since DOM Level 2     */    virtual void setStartBefore(const DOMNode *refNode) = 0;    /**     * Sets the start position to be after a node     * @param refNode Range starts after <code>refNode</code>     * @exception DOMRangeException     *   INVALID_NODE_TYPE_ERR: Raised if the root container of     *   <code>refNode</code> is not an DOMAttr, DOMDocument, or DOMDocumentFragment     *   node or if <code>refNode</code> is a DOMDocument, DOMDocumentFragment,     *   DOMAttr, DOMEntity, or DOMNotation node.     * @exception DOMException     *   INVALID_STATE_ERR: Raised if <code>detach()</code> has already been     *   invoked on this object.     *   <br>WRONG_DOCUMENT_ERR: Raised if <code>refNode</code> was created     *   from a different document than the one that created this range.     *     * @since DOM Level 2     */    virtual void setStartAfter(const DOMNode *refNode) = 0;    /**     * Sets the end position to be before a node.     * @param refNode Range ends before <code>refNode</code>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -