edelib
2.1.0
|
XML text. More...
#include <edelib/TiXml.h>
Public Member Functions | |
TiXmlText (const char *initValue) | |
TiXmlText (const TiXmlText ©) | |
void | operator= (const TiXmlText &base) |
virtual void | Print (FILE *cfile, int depth) const |
bool | CDATA () const |
void | SetCDATA (bool _cdata) |
virtual const TiXmlText * | ToText () const |
virtual TiXmlText * | ToText () |
virtual bool | Accept (TiXmlVisitor *content) const |
Public Member Functions inherited from TiXmlNode | |
const char * | Value () const |
void | SetValue (const char *_value) |
void | Clear () |
TiXmlNode * | Parent () |
const TiXmlNode * | Parent () const |
const TiXmlNode * | FirstChild () const |
TiXmlNode * | FirstChild () |
const TiXmlNode * | FirstChild (const char *value) const |
TiXmlNode * | FirstChild (const char *_value) |
const TiXmlNode * | LastChild () const |
TiXmlNode * | LastChild () |
const TiXmlNode * | LastChild (const char *value) const |
TiXmlNode * | LastChild (const char *_value) |
const TiXmlNode * | IterateChildren (const TiXmlNode *previous) const |
TiXmlNode * | IterateChildren (const TiXmlNode *previous) |
const TiXmlNode * | IterateChildren (const char *value, const TiXmlNode *previous) const |
TiXmlNode * | IterateChildren (const char *_value, const TiXmlNode *previous) |
TiXmlNode * | InsertEndChild (const TiXmlNode &addThis) |
TiXmlNode * | LinkEndChild (TiXmlNode *addThis) |
TiXmlNode * | InsertBeforeChild (TiXmlNode *beforeThis, const TiXmlNode &addThis) |
TiXmlNode * | InsertAfterChild (TiXmlNode *afterThis, const TiXmlNode &addThis) |
TiXmlNode * | ReplaceChild (TiXmlNode *replaceThis, const TiXmlNode &withThis) |
bool | RemoveChild (TiXmlNode *removeThis) |
const TiXmlNode * | PreviousSibling () const |
TiXmlNode * | PreviousSibling () |
const TiXmlNode * | PreviousSibling (const char *) const |
TiXmlNode * | PreviousSibling (const char *_prev) |
const TiXmlNode * | NextSibling () const |
TiXmlNode * | NextSibling () |
const TiXmlNode * | NextSibling (const char *) const |
TiXmlNode * | NextSibling (const char *_next) |
const TiXmlElement * | NextSiblingElement () const |
TiXmlElement * | NextSiblingElement () |
const TiXmlElement * | NextSiblingElement (const char *) const |
TiXmlElement * | NextSiblingElement (const char *_next) |
const TiXmlElement * | FirstChildElement () const |
TiXmlElement * | FirstChildElement () |
const TiXmlElement * | FirstChildElement (const char *_value) const |
TiXmlElement * | FirstChildElement (const char *_value) |
int | Type () const |
const TiXmlDocument * | GetDocument () const |
TiXmlDocument * | GetDocument () |
bool | NoChildren () const |
virtual const TiXmlDocument * | ToDocument () const |
virtual const TiXmlElement * | ToElement () const |
virtual const TiXmlComment * | ToComment () const |
virtual const TiXmlUnknown * | ToUnknown () const |
virtual const TiXmlDeclaration * | ToDeclaration () const |
virtual TiXmlDocument * | ToDocument () |
virtual TiXmlElement * | ToElement () |
virtual TiXmlComment * | ToComment () |
virtual TiXmlUnknown * | ToUnknown () |
virtual TiXmlDeclaration * | ToDeclaration () |
virtual TiXmlNode * | Clone () const =0 |
Public Member Functions inherited from TiXmlBase | |
int | Row () const |
int | Column () const |
void | SetUserData (void *user) |
void * | GetUserData () |
const void * | GetUserData () const |
Friends | |
class | TiXmlElement |
Additional Inherited Members | |
Public Types inherited from TiXmlNode | |
enum | NodeType { DOCUMENT, ELEMENT, COMMENT, UNKNOWN, TEXT, DECLARATION, TYPECOUNT } |
Public Types inherited from TiXmlBase | |
enum | { TIXML_NO_ERROR = 0, TIXML_ERROR, TIXML_ERROR_OPENING_FILE, TIXML_ERROR_OUT_OF_MEMORY, TIXML_ERROR_PARSING_ELEMENT, TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME, TIXML_ERROR_READING_ELEMENT_VALUE, TIXML_ERROR_READING_ATTRIBUTES, TIXML_ERROR_PARSING_EMPTY, TIXML_ERROR_READING_END_TAG, TIXML_ERROR_PARSING_UNKNOWN, TIXML_ERROR_PARSING_COMMENT, TIXML_ERROR_PARSING_DECLARATION, TIXML_ERROR_DOCUMENT_EMPTY, TIXML_ERROR_EMBEDDED_NULL, TIXML_ERROR_PARSING_CDATA, TIXML_ERROR_DOCUMENT_TOP_ONLY, TIXML_ERROR_STRING_COUNT } |
Static Public Member Functions inherited from TiXmlBase | |
static void | SetCondenseWhiteSpace (bool condense) |
static bool | IsWhiteSpaceCondensed () |
Protected Member Functions inherited from TiXmlNode | |
TiXmlNode (NodeType _type) | |
void | CopyTo (TiXmlNode *target) const |
TiXmlNode * | Identify (const char *start, TiXmlEncoding encoding) |
Static Protected Member Functions inherited from TiXmlBase | |
static const char * | ReadName (const char *p, edelib::String *name, TiXmlEncoding encoding) |
static const char * | ReadText (const char *in, edelib::String *text, bool ignoreWhiteSpace, const char *endTag, bool ignoreCase, TiXmlEncoding encoding) |
static const char * | GetEntity (const char *in, char *value, int *length, TiXmlEncoding encoding) |
static const char * | GetChar (const char *p, char *_value, int *length, TiXmlEncoding encoding) |
static void | PutString (const edelib::String &str, edelib::String *out) |
static bool | StringEqual (const char *p, const char *endTag, bool ignoreCase, TiXmlEncoding encoding) |
static int | IsAlpha (unsigned char anyByte, TiXmlEncoding encoding) |
static int | IsAlphaNum (unsigned char anyByte, TiXmlEncoding encoding) |
static int | ToLower (int v, TiXmlEncoding encoding) |
static void | ConvertUTF32ToUTF8 (unsigned long input, char *output, int *length) |
Protected Attributes inherited from TiXmlBase | |
TiXmlCursor | location |
void * | userData |
Static Protected Attributes inherited from TiXmlBase | |
static const char * | errorString [TIXML_ERROR_STRING_COUNT] |
XML text.
A text node can have 2 ways to output the next. "normal" output and CDATA. It will default to the mode it was parsed from the XML file and you generally want to leave it alone, but you can change the output mode with SetCDATA() and query it with CDATA().
|
inline |
Constructor for text element. By default, it is treated as normal, encoded text. If you want it be output as a CDATA text element, set the parameter _cdata to 'true'
References TiXmlNode::SetValue().
Constructor accepting another TiXmlText
References TiXmlNode::CopyTo().
|
virtual |
Walk the XML tree visiting this node and all of its children.
Implements TiXmlNode.
|
inline |
Queries whether this represents text using a CDATA section
|
inline |
Accept another TiXmlText
References TiXmlNode::CopyTo().
|
virtual |
Write this text object to a FILE stream
Implements TiXmlBase.
|
inline |
Turns on or off a CDATA representation of text
|
inlinevirtual |
Cast to a more defined type. Will return null not of the requested type.
Reimplemented from TiXmlNode.
|
inlinevirtual |
Cast to a more defined type. Will return null not of the requested type.
Reimplemented from TiXmlNode.