/* ** ClanLib SDK ** Copyright (c) 1997-2005 The ClanLib Team ** ** This software is provided 'as-is', without any express or implied ** warranty. In no event will the authors be held liable for any damages ** arising from the use of this software. ** ** Permission is granted to anyone to use this software for any purpose, ** including commercial applications, and to alter it and redistribute it ** freely, subject to the following restrictions: ** ** 1. The origin of this software must not be misrepresented; you must not ** claim that you wrote the original software. If you use this software ** in a product, an acknowledgment in the product documentation would be ** appreciated but is not required. ** 2. Altered source versions must be plainly marked as such, and must not be ** misrepresented as being the original software. ** 3. This notice may not be removed or altered from any source distribution. ** ** Note: Some of the libraries ClanLib may link to may have additional ** requirements or restrictions. ** ** File Author(s): ** ** Magnus Norddahl ** (if your name is missing here, please add it) */ //! clanCore="XML" //! header=core.h #ifndef header_dom_document #define header_dom_document #ifdef CL_API_DLL #ifdef CL_CORE_EXPORT #define CL_API_CORE __declspec(dllexport) #else #define CL_API_CORE __declspec(dllimport) #endif #else #define CL_API_CORE #endif #if _MSC_VER > 1000 #pragma once #endif #include "dom_node.h" class CL_InputSource; class CL_OutputSource; class CL_DomDocumentType; class CL_DomImplementation; class CL_DomCDATASection; class CL_DomProcessingInstruction; class CL_DomElement; class CL_DomDocumentFragment; class CL_DomComment; class CL_DomText; class CL_DomAttr; class CL_DomEntityReference; class CL_DomNodeList; class CL_DomDocument_Generic; //: DOM Document class. //- !group=Core/XML! //- !header=core.h! //-
The Document interface represents the entire HTML or XML document. //- Conceptually, it is the root of the document tree, and provides the //- primary access to the document's data.
//-Since elements, text nodes, comments, processing instructions, etc. //- cannot exist outside the context of a Document, the Document interface //- also contains the factory methods needed to create these objects. The //- Node objects created have a ownerDocument attribute which associates //- them with the Document within whose context they were created.
class CL_API_CORE CL_DomDocument : public CL_DomNode { //! Construction: public: //: Constructs a DOM Document. CL_DomDocument(); CL_DomDocument(CL_InputSource *input, bool delete_input = false, bool eat_whitespace = true); CL_DomDocument(const CL_SharedPtrFor HTML documents as well as XML documents without a document type declaration this //- returns null. The DOM Level 1 does not support editing the Document Type Declaration, //- therefore docType cannot be altered in any way.
CL_DomDocumentType get_doctype(); //: Returns the CL_DomImplementation object that handles this document. CL_DomImplementation get_implementation(); //: Returns the root document element node. //-This is a convenience attribute that allows direct access to the child node that is //- the root element of the document. For HTML documents, this is the element with the tag name "HTML".
CL_DomElement get_document_element(); //! Operations: public: //: Creates an element of the type specified. //-Note that the instance returned implements the Element interface, so attributes can be //- specified directly on the returned object.
//param tag_name: The name of the element type to instantiate. For XML, this is case-sensitive. CL_DomElement create_element(const std::string &tag_name); //: Creates an empty DocumentFragment object. CL_DomDocumentFragment create_document_fragment(); //: Creates a Text node given the specified string. //param data: The data for the node. CL_DomText create_text_node(const std::string &data); //: Creates a Comment node given the specified string. //param data: The data for the node. CL_DomComment create_comment(const std::string &data); //: Creates a CDATASection node whose value is the specified string. //param data: The data for the CDATASection contents. CL_DomCDATASection create_cdata_section(const std::string &data); //: Creates a ProcessingInstruction node given the specified name and data strings. //param target: The target part of the processing instruction. //param data: The data for the node. CL_DomProcessingInstruction create_processing_instruction( const std::string &target, const std::string &data); //: Creates an Attr of the given name. //-Note that the Attr instance can then be set on an Element using the setAttribute method.
//param name: The name of the attribute. CL_DomAttr create_attribute(const std::string &name); //: Creates an EntityReference object. //param name: The name of the entity to reference. CL_DomEntityReference create_entity_reference(const std::string &name); //: Returns a NodeList of all the Elements with a given tag name in the order in which they would be encountered in a preorder traversal of the Document tree. //param tagname: The name of the tag to match on. The special value "*" matches all tags. CL_DomNodeList get_elements_by_tag_name(const std::string &tag_name); //: Loads the DOM document as XML from an input source. //param input: Input source to read from. //param delete_input: If true, will delete input source after usage. //param eat_whitespace: Passed on to CL_XMLTokenizer::set_eat_whitespace. //param insert_point: Place in the DOM to insert the loaded XML code. //retval: List of all top level nodes created. std::vector