]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/xml/xml.h
Documentation tweaks for wxFontInfo
[wxWidgets.git] / interface / wx / xml / xml.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: xml/xml.h
f41d6c8c 3// Purpose: interface of wxXmlNode, wxXmlAttribute, wxXmlDocument
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
f41d6c8c
FM
9
10/// Represents XML node type.
11enum wxXmlNodeType
12{
13 // note: values are synchronized with xmlElementType from libxml
14 wxXML_ELEMENT_NODE = 1,
15 wxXML_ATTRIBUTE_NODE = 2,
16 wxXML_TEXT_NODE = 3,
17 wxXML_CDATA_SECTION_NODE = 4,
18 wxXML_ENTITY_REF_NODE = 5,
19 wxXML_ENTITY_NODE = 6,
20 wxXML_PI_NODE = 7,
21 wxXML_COMMENT_NODE = 8,
22 wxXML_DOCUMENT_NODE = 9,
23 wxXML_DOCUMENT_TYPE_NODE = 10,
24 wxXML_DOCUMENT_FRAG_NODE = 11,
25 wxXML_NOTATION_NODE = 12,
26 wxXML_HTML_DOCUMENT_NODE = 13
27};
28
23324ae1
FM
29/**
30 @class wxXmlNode
7c913512 31
23324ae1 32 Represents a node in an XML document. See wxXmlDocument.
7c913512 33
f41d6c8c
FM
34 Node has a name and may have content and attributes.
35
36 Most common node types are @c wxXML_TEXT_NODE (name and attributes are irrelevant)
4ce846b1
FM
37 and @c wxXML_ELEMENT_NODE.
38
39 Example: in <tt>\<title\>hi\</title\></tt> there is an element with the name
40 @c title and irrelevant content and one child of type @c wxXML_TEXT_NODE
41 with @c hi as content.
7c913512 42
cee8636e
VZ
43 The @c wxXML_PI_NODE type sets the name to the PI target and the contents to
44 the instructions. Note that whilst the PI instructions are often in the form
45 of pseudo-attributes these do not use the nodes attribute system. It is the users
46 responsibility to code and decode the instruction text.
47
23324ae1
FM
48 If @c wxUSE_UNICODE is 0, all strings are encoded in the encoding given to
49 wxXmlDocument::Load (default is UTF-8).
7c913512 50
23324ae1
FM
51 @library{wxxml}
52 @category{xml}
7c913512 53
e54c96f1 54 @see wxXmlDocument, wxXmlAttribute
23324ae1 55*/
7c913512 56class wxXmlNode
23324ae1
FM
57{
58public:
23324ae1 59 /**
f41d6c8c
FM
60 Creates this XML node and eventually insert it into an existing XML tree.
61
62 @param parent
63 The parent node to which append this node instance.
64 If this argument is @NULL this new node will be floating and it can
65 be appended later to another one using the AddChild() or InsertChild()
66 functions. Otherwise the child is already added to the XML tree by
67 this constructor and it shouldn't be done again.
68 @param type
69 One of the ::wxXmlNodeType enumeration value.
70 @param name
71 The name of the node. This is the string which appears between angular brackets.
72 @param content
73 The content of the node.
74 Only meaningful when type is @c wxXML_TEXT_NODE or @c wxXML_CDATA_SECTION_NODE.
75 @param attrs
76 If not @NULL, this wxXmlAttribute object and its eventual siblings are attached to the node.
77 @param next
78 If not @NULL, this node and its eventual siblings are attached to the node.
79 @param lineNo
80 Number of line this node was present at in input file or -1.
23324ae1
FM
81 */
82 wxXmlNode(wxXmlNode* parent, wxXmlNodeType type,
83 const wxString& name,
84 const wxString& content = wxEmptyString,
4cc4bfaf
FM
85 wxXmlAttribute* attrs = NULL,
86 wxXmlNode* next = NULL, int lineNo = -1);
f41d6c8c
FM
87
88 /**
89 A simplified version of the first constructor form, assuming a @NULL parent.
90
91 @param type
92 One of the ::wxXmlNodeType enumeration value.
93 @param name
94 The name of the node. This is the string which appears between angular brackets.
95 @param content
96 The content of the node.
97 Only meaningful when type is @c wxXML_TEXT_NODE or @c wxXML_CDATA_SECTION_NODE.
98 @param lineNo
99 Number of line this node was present at in input file or -1.
100 */
7c913512
FM
101 wxXmlNode(wxXmlNodeType type, const wxString& name,
102 const wxString& content = wxEmptyString,
103 int lineNo = -1);
f41d6c8c
FM
104
105 /**
106 Copy constructor.
107
57ab6f23 108 Note that this does NOT copy siblings and parent pointer, i.e. GetParent()
f41d6c8c
FM
109 and GetNext() will return @NULL after using copy ctor and are never unmodified by operator=().
110 On the other hand, it DOES copy children and attributes.
111 */
112 wxXmlNode(const wxXmlNode& node);
23324ae1
FM
113
114 /**
115 The virtual destructor. Deletes attached children and attributes.
116 */
adaaa686 117 virtual ~wxXmlNode();
23324ae1 118
23324ae1 119 /**
f41d6c8c
FM
120 Appends a attribute with given @a name and @a value to the list of
121 attributes for this node.
23324ae1 122 */
adaaa686 123 virtual void AddAttribute(const wxString& name, const wxString& value);
f41d6c8c
FM
124
125 /**
126 Appends given attribute to the list of attributes for this node.
127 */
adaaa686 128 virtual void AddAttribute(wxXmlAttribute* attr);
23324ae1
FM
129
130 /**
43a302f2
VS
131 Adds node @a child as the last child of this node.
132
133 @note
134 Note that this function works in O(n) time where @e n is the number
135 of existing children. Consequently, adding large number of child
136 nodes using this method can be expensive, because it has O(n^2) time
137 complexity in number of nodes to be added. Use InsertChildAfter() to
138 populate XML tree in linear time.
139
140 @see InsertChild(), InsertChildAfter()
23324ae1 141 */
adaaa686 142 virtual void AddChild(wxXmlNode* child);
23324ae1
FM
143
144 /**
4cc4bfaf 145 Removes the first attributes which has the given @a name from the list of
23324ae1
FM
146 attributes for this node.
147 */
adaaa686 148 virtual bool DeleteAttribute(const wxString& name);
23324ae1 149
f41d6c8c
FM
150 /**
151 Returns true if a attribute named attrName could be found.
152 The value of that attribute is saved in value (which must not be @NULL).
153 */
154 bool GetAttribute(const wxString& attrName, wxString* value) const;
155
23324ae1 156 /**
4cc4bfaf
FM
157 Returns the value of the attribute named @a attrName if it does exist.
158 If it does not exist, the @a defaultVal is returned.
23324ae1 159 */
f41d6c8c
FM
160 wxString GetAttribute(const wxString& attrName,
161 const wxString& defaultVal = wxEmptyString) const;
23324ae1
FM
162
163 /**
164 Return a pointer to the first attribute of this node.
165 */
328f5751 166 wxXmlAttribute* GetAttributes() const;
23324ae1
FM
167
168 /**
169 Returns the first child of this node.
170 To get a pointer to the second child of this node (if it does exist), use the
171 GetNext() function on the returned value.
172 */
328f5751 173 wxXmlNode* GetChildren() const;
23324ae1
FM
174
175 /**
176 Returns the content of this node. Can be an empty string.
177 Be aware that for nodes of type @c wxXML_ELEMENT_NODE (the most used node type)
f41d6c8c 178 the content is an empty string. See GetNodeContent() for more details.
23324ae1 179 */
95b4a59e 180 const wxString& GetContent() const;
23324ae1
FM
181
182 /**
57ab6f23 183 Returns the number of nodes which separate this node from @c grandparent.
f41d6c8c
FM
184
185 This function searches only the parents of this node until it finds
186 @a grandparent or the @NULL node (which is the parent of non-linked
cee8636e 187 nodes or the parent of a wxXmlDocument's root element node).
23324ae1 188 */
328f5751 189 int GetDepth(wxXmlNode* grandparent = NULL) const;
23324ae1 190
30f6914b
JS
191 /**
192 Returns a flag indicating whether encoding conversion is necessary when saving. The default is @false.
193
194 You can improve saving efficiency considerably by setting this value.
195 */
196 bool GetNoConversion() const;
197
23324ae1 198 /**
f41d6c8c 199 Returns line number of the node in the input XML file or @c -1 if it is unknown.
23324ae1 200 */
328f5751 201 int GetLineNumber() const;
23324ae1
FM
202
203 /**
f41d6c8c
FM
204 Returns the name of this node.
205 Can be an empty string (e.g. for nodes of type @c wxXML_TEXT_NODE or
206 @c wxXML_CDATA_SECTION_NODE).
23324ae1 207 */
95b4a59e 208 const wxString& GetName() const;
23324ae1
FM
209
210 /**
211 Returns a pointer to the sibling of this node or @NULL if there are no
212 siblings.
213 */
328f5751 214 wxXmlNode* GetNext() const;
23324ae1
FM
215
216 /**
f41d6c8c
FM
217 Returns the content of the first child node of type @c wxXML_TEXT_NODE
218 or @c wxXML_CDATA_SECTION_NODE.
219 This function is very useful since the XML snippet @c "tagnametagcontent/tagname"
220 is represented by expat with the following tag tree:
221
222 @code
cee8636e 223 wxXML_ELEMENT_NODE name="tagname", content=""
f41d6c8c
FM
224 |-- wxXML_TEXT_NODE name="", content="tagcontent"
225 @endcode
b5cc5cbd 226
23324ae1 227 or eventually:
b5cc5cbd 228
f41d6c8c 229 @code
cee8636e 230 wxXML_ELEMENT_NODE name="tagname", content=""
f41d6c8c
FM
231 |-- wxXML_CDATA_SECTION_NODE name="", content="tagcontent"
232 @endcode
233
234 An empty string is returned if the node has no children of type
235 @c wxXML_TEXT_NODE or @c wxXML_CDATA_SECTION_NODE, or if the content
236 of the first child of such types is empty.
23324ae1 237 */
328f5751 238 wxString GetNodeContent() const;
23324ae1
FM
239
240 /**
241 Returns a pointer to the parent of this node or @NULL if this node has no
242 parent.
243 */
328f5751 244 wxXmlNode* GetParent() const;
23324ae1
FM
245
246 /**
247 Returns the type of this node.
248 */
328f5751 249 wxXmlNodeType GetType() const;
23324ae1
FM
250
251 /**
f41d6c8c 252 Returns @true if this node has a attribute named @a attrName.
23324ae1 253 */
328f5751 254 bool HasAttribute(const wxString& attrName) const;
23324ae1
FM
255
256 /**
5e05df3c
VS
257 Inserts the @a child node immediately before @a followingNode in the
258 children list.
259
260 @return @true if @a followingNode has been found and the @a child
261 node has been inserted.
262
263 @note
264 For historical reasons, @a followingNode may be @NULL. In that case,
265 then @a child is prepended to the list of children and becomes the
266 first child of this node, i.e. it behaves identically to using the
267 first children (as returned by GetChildren()) for @a followingNode).
43a302f2
VS
268
269 @see AddChild(), InsertChildAfter()
5e05df3c 270 */
adaaa686 271 virtual bool InsertChild(wxXmlNode* child, wxXmlNode* followingNode);
23324ae1 272
43a302f2
VS
273 /**
274 Inserts the @a child node immediately after @a precedingNode in the
275 children list.
276
277 @return @true if @a precedingNode has been found and the @a child
278 node has been inserted.
279
77bfb902
FM
280 @param child
281 The child to insert.
43a302f2
VS
282 @param precedingNode
283 The node to insert @a child after. As a special case, this can be
284 @NULL if this node has no children yet -- in that case, @a child
285 will become this node's only child node.
286
287 @since 2.8.8
288
289 @see InsertChild(), AddChild()
290 */
adaaa686 291 virtual bool InsertChildAfter(wxXmlNode* child, wxXmlNode* precedingNode);
43a302f2 292
23324ae1
FM
293 /**
294 Returns @true if the content of this node is a string containing only
f41d6c8c
FM
295 whitespaces (spaces, tabs, new lines, etc).
296
297 Note that this function is locale-independent since the parsing of XML
298 documents must always produce the exact same tree regardless of the
299 locale it runs under.
23324ae1 300 */
328f5751 301 bool IsWhitespaceOnly() const;
23324ae1
FM
302
303 /**
f41d6c8c
FM
304 Removes the given node from the children list.
305
306 Returns @true if the node was found and removed or @false if the node
307 could not be found.
57ab6f23 308 Note that the caller is responsible for deleting the removed node in order
f41d6c8c 309 to avoid memory leaks.
23324ae1 310 */
adaaa686 311 virtual bool RemoveChild(wxXmlNode* child);
23324ae1
FM
312
313 /**
314 Sets as first attribute the given wxXmlAttribute object.
f41d6c8c 315
30f6914b 316 The caller is responsible for deleting any previously present attributes
f41d6c8c 317 attached to this node.
23324ae1
FM
318 */
319 void SetAttributes(wxXmlAttribute* attr);
320
321 /**
f41d6c8c
FM
322 Sets as first child the given node.
323
30f6914b 324 The caller is responsible for deleting any previously present children node.
23324ae1
FM
325 */
326 void SetChildren(wxXmlNode* child);
327
328 /**
329 Sets the content of this node.
330 */
331 void SetContent(const wxString& con);
332
333 /**
334 Sets the name of this node.
335 */
336 void SetName(const wxString& name);
337
338 /**
f41d6c8c
FM
339 Sets as sibling the given node.
340
30f6914b 341 The caller is responsible for deleting any previously present sibling node.
23324ae1
FM
342 */
343 void SetNext(wxXmlNode* next);
344
30f6914b
JS
345 /**
346 Sets a flag to indicate whether encoding conversion is necessary when saving. The default is @false.
347
348 You can improve saving efficiency considerably by setting this value.
349 */
350 void SetNoConversion(bool noconversion);
351
23324ae1 352 /**
f41d6c8c
FM
353 Sets as parent the given node.
354
30f6914b 355 The caller is responsible for deleting any previously present parent node.
23324ae1
FM
356 */
357 void SetParent(wxXmlNode* parent);
358
359 /**
360 Sets the type of this node.
361 */
362 void SetType(wxXmlNodeType type);
363
364 /**
365 See the copy constructor for more info.
366 */
f41d6c8c 367 wxXmlNode& operator=(const wxXmlNode& node);
23324ae1
FM
368};
369
370
e54c96f1 371
23324ae1
FM
372/**
373 @class wxXmlAttribute
7c913512 374
23324ae1 375 Represents a node attribute.
7c913512 376
4ce846b1
FM
377 Example: in <tt>\<img src="hello.gif" id="3"/\></tt>, @c src is an attribute
378 with value @c hello.gif and @c id is an attribute with value @c 3.
7c913512 379
23324ae1
FM
380 @library{wxxml}
381 @category{xml}
7c913512 382
e54c96f1 383 @see wxXmlDocument, wxXmlNode
23324ae1 384*/
7c913512 385class wxXmlAttribute
23324ae1
FM
386{
387public:
23324ae1 388 /**
f41d6c8c 389 Default constructor.
23324ae1
FM
390 */
391 wxXmlAttribute();
f41d6c8c
FM
392
393 /**
394 Creates the attribute with given @a name and @a value.
395 If @a next is not @NULL, then sets it as sibling of this attribute.
396 */
7c913512 397 wxXmlAttribute(const wxString& name, const wxString& value,
4cc4bfaf 398 wxXmlAttribute* next = NULL);
23324ae1
FM
399
400 /**
401 The virtual destructor.
402 */
adaaa686 403 virtual ~wxXmlAttribute();
23324ae1
FM
404
405 /**
406 Returns the name of this attribute.
407 */
328f5751 408 wxString GetName() const;
23324ae1
FM
409
410 /**
411 Returns the sibling of this attribute or @NULL if there are no siblings.
412 */
328f5751 413 wxXmlAttribute* GetNext() const;
23324ae1
FM
414
415 /**
416 Returns the value of this attribute.
417 */
328f5751 418 wxString GetValue() const;
23324ae1
FM
419
420 /**
421 Sets the name of this attribute.
422 */
423 void SetName(const wxString& name);
424
425 /**
426 Sets the sibling of this attribute.
427 */
428 void SetNext(wxXmlAttribute* next);
429
430 /**
431 Sets the value of this attribute.
432 */
433 void SetValue(const wxString& value);
434};
435
436
c1bd5a6d
RD
437//* special indentation value for wxXmlDocument::Save
438#define wxXML_NO_INDENTATION (-1)
439
440//* flags for wxXmlDocument::Load
441enum wxXmlDocumentLoadFlag
442{
443 wxXMLDOC_NONE,
444 wxXMLDOC_KEEP_WHITESPACE_NODES
445};
446
447
e54c96f1 448
23324ae1
FM
449/**
450 @class wxXmlDocument
7c913512 451
23324ae1 452 This class holds XML data/document as parsed by XML parser in the root node.
7c913512 453
23324ae1
FM
454 wxXmlDocument internally uses the expat library which comes with wxWidgets to
455 parse the given stream.
7c913512 456
23324ae1 457 A simple example of using XML classes is:
7c913512 458
23324ae1
FM
459 @code
460 wxXmlDocument doc;
1707da0c 461 if (!doc.Load("myfile.xml"))
4ce846b1 462 return false;
7c913512 463
23324ae1 464 // start processing the XML file
1707da0c 465 if (doc.GetRoot()->GetName() != "myroot-node")
4ce846b1 466 return false;
7c913512 467
cee8636e
VZ
468 // examine prologue
469 wxXmlNode *prolog = doc.GetDocumentNode()->GetChildren();
470 while (prolog) {
471
472 if (prolog->GetType() == wxXML_PI_NODE && prolog->GetName() == "target") {
473
474 // process Process Instruction contents
475 wxString pi = prolog->GetContent();
476
477 ...
478
479 }
480 }
481
1707da0c 482 wxXmlNode *child = doc.GetRoot()->GetChildren();
23324ae1 483 while (child) {
7c913512 484
4ce846b1 485 if (child->GetName() == "tag1") {
7c913512 486
23324ae1 487 // process text enclosed by tag1/tag1
1707da0c 488 wxString content = child->GetNodeContent();
7c913512 489
23324ae1 490 ...
7c913512 491
23324ae1 492 // process attributes of tag1
7c913512 493 wxString attrvalue1 =
1707da0c 494 child->GetAttribute("attr1", "default-value");
7c913512 495 wxString attrvalue2 =
1707da0c 496 child->GetAttribute("attr2", "default-value");
7c913512 497
23324ae1 498 ...
7c913512 499
1707da0c 500 } else if (child->GetName() == "tag2") {
7c913512 501
23324ae1
FM
502 // process tag2 ...
503 }
7c913512 504
1707da0c 505 child = child->GetNext();
23324ae1
FM
506 }
507 @endcode
7c913512 508
f41d6c8c
FM
509 Note that if you want to preserve the original formatting of the loaded file
510 including whitespaces and indentation, you need to turn off whitespace-only
511 textnode removal and automatic indentation:
7c913512 512
23324ae1
FM
513 @code
514 wxXmlDocument doc;
1707da0c 515 doc.Load("myfile.xml", "UTF-8", wxXMLDOC_KEEP_WHITESPACE_NODES);
7c913512 516
57ab6f23 517 // myfile2.xml will be identical to myfile.xml saving it this way:
1707da0c 518 doc.Save("myfile2.xml", wxXML_NO_INDENTATION);
23324ae1 519 @endcode
7c913512 520
23324ae1 521 Using default parameters, you will get a reformatted document which in general
f41d6c8c 522 is different from the original loaded content:
7c913512 523
23324ae1
FM
524 @code
525 wxXmlDocument doc;
1707da0c
FM
526 doc.Load("myfile.xml");
527 doc.Save("myfile2.xml"); // myfile2.xml != myfile.xml
23324ae1 528 @endcode
7c913512 529
23324ae1
FM
530 @library{wxxml}
531 @category{xml}
7c913512 532
e54c96f1 533 @see wxXmlNode, wxXmlAttribute
23324ae1
FM
534*/
535class wxXmlDocument : public wxObject
536{
537public:
23324ae1 538 /**
f41d6c8c 539 Default constructor.
23324ae1
FM
540 */
541 wxXmlDocument();
f41d6c8c
FM
542
543 /**
544 Copy constructor. Deep copies all the XML tree of the given document.
545 */
7c913512 546 wxXmlDocument(const wxXmlDocument& doc);
f41d6c8c
FM
547
548 /**
549 Loads the given filename using the given encoding. See Load().
550 */
551 wxXmlDocument(const wxString& filename,
1707da0c 552 const wxString& encoding = "UTF-8"));
f41d6c8c
FM
553
554 /**
555 Loads the XML document from given stream using the given encoding. See Load().
556 */
557 wxXmlDocument(wxInputStream& stream,
f8ebb70d 558 const wxString& encoding = "UTF-8");
23324ae1
FM
559
560 /**
561 Virtual destructor. Frees the document root node.
562 */
adaaa686 563 virtual ~wxXmlDocument();
23324ae1
FM
564
565 /**
cee8636e
VZ
566 Appends a Process Instruction or Comment node to the document prologue.
567
568 Calling this function will create a prologue or attach the node to the
569 end of an existing prologue.
570
571 @since 2.9.2
572 */
573 void AppendToProlog(wxXmlNode* node);
574
575 /**
576 Detaches the document node and returns it.
f41d6c8c 577
cee8636e 578 The document node will be set to @NULL and thus IsOk() will
f41d6c8c
FM
579 return @false after calling this function.
580
57ab6f23 581 Note that the caller is responsible for deleting the returned node in order
f41d6c8c 582 to avoid memory leaks.
cee8636e
VZ
583
584 @since 2.9.2
585 */
586 wxXmlNode* DetachDocumentNode();
587
588 /**
589 Detaches the root entity node and returns it.
590
591 After calling this function, the document node will remain together with
592 any prologue nodes, but IsOk() will return @false since the root entity
593 will be missing.
594
f090e4ef 595 Note that the caller is responsible for deleting the returned node in order
cee8636e 596 to avoid memory leaks.
23324ae1
FM
597 */
598 wxXmlNode* DetachRoot();
599
600 /**
601 Returns encoding of in-memory representation of the document
602 (same as passed to Load() or constructor, defaults to UTF-8).
f41d6c8c 603
1add55ae 604 @note this is meaningless in Unicode build where data are stored as @c wchar_t*.
23324ae1 605 */
328f5751 606 wxString GetEncoding() const;
23324ae1
FM
607
608 /**
609 Returns encoding of document (may be empty).
f41d6c8c
FM
610
611 @note This is the encoding original file was saved in, @b not the
612 encoding of in-memory representation!
23324ae1 613 */
95b4a59e 614 const wxString& GetFileEncoding() const;
23324ae1
FM
615
616 /**
cee8636e
VZ
617 Returns the document node of the document.
618
619 @since 2.9.2
620 */
621 wxXmlNode* GetDocumentNode() const;
622
623 /**
624 Returns the root element node of the document.
23324ae1 625 */
328f5751 626 wxXmlNode* GetRoot() const;
23324ae1
FM
627
628 /**
629 Returns the version of document.
f41d6c8c
FM
630
631 This is the value in the @c \<?xml version="1.0"?\> header of the XML document.
57ab6f23 632 If the version attribute was not explicitly given in the header, this function
23324ae1
FM
633 returns an empty string.
634 */
95b4a59e 635 const wxString& GetVersion() const;
23324ae1
FM
636
637 /**
638 Returns @true if the document has been loaded successfully.
639 */
328f5751 640 bool IsOk() const;
23324ae1 641
f41d6c8c 642
23324ae1 643 /**
f41d6c8c
FM
644 Parses @a filename as an xml document and loads its data.
645
646 If @a flags does not contain wxXMLDOC_KEEP_WHITESPACE_NODES, then, while loading,
647 all nodes of type @c wxXML_TEXT_NODE (see wxXmlNode) are automatically skipped
648 if they contain whitespaces only.
649
650 The removal of these nodes makes the load process slightly faster and requires
651 less memory however makes impossible to recreate exactly the loaded text with a
652 Save() call later. Read the initial description of this class for more info.
653
654 Returns true on success, false otherwise.
655 */
656 virtual bool Load(const wxString& filename,
f8ebb70d 657 const wxString& encoding = "UTF-8", int flags = wxXMLDOC_NONE);
f41d6c8c
FM
658
659 /**
660 Like Load(const wxString&, const wxString&, int) but takes the data from
661 given input stream.
662 */
663 virtual bool Load(wxInputStream& stream,
f8ebb70d 664 const wxString& encoding = "UTF-8", int flags = wxXMLDOC_NONE);
f41d6c8c
FM
665
666 /**
667 Saves XML tree creating a file named with given string.
668
669 If @a indentstep is greater than or equal to zero, then, while saving,
670 an automatic indentation is added with steps composed by indentstep spaces.
671
672 If @a indentstep is @c wxXML_NO_INDENTATION, then, automatic indentation
673 is turned off.
23324ae1 674 */
57cc93eb 675 virtual bool Save(const wxString& filename, int indentstep = 2) const;
23324ae1 676
23324ae1 677 /**
f41d6c8c
FM
678 Saves XML tree in the given output stream.
679 See Save(const wxString&, int) for a description of @a indentstep.
23324ae1 680 */
57cc93eb 681 virtual bool Save(wxOutputStream& stream, int indentstep = 2) const;
23324ae1
FM
682
683 /**
cee8636e
VZ
684 Sets the document node of this document.
685
686 Deletes any previous document node.
687 Use DetachDocumentNode() and then SetDocumentNode() if you want to
688 replace the document node without deleting the old document tree.
689
690 @since 2.9.2
691 */
692 void SetDocumentNode(wxXmlNode* node);
693
694 /**
695 Sets the encoding of the document.
23324ae1
FM
696 */
697 void SetEncoding(const wxString& enc);
698
699 /**
700 Sets the enconding of the file which will be used to save the document.
701 */
702 void SetFileEncoding(const wxString& encoding);
703
704 /**
cee8636e
VZ
705 Sets the root element node of this document.
706
707 Will create the document node if necessary. Any previous
708 root element node is deleted.
23324ae1
FM
709 */
710 void SetRoot(wxXmlNode* node);
711
712 /**
713 Sets the version of the XML file which will be used to save the document.
714 */
715 void SetVersion(const wxString& version);
716
717 /**
718 Deep copies the given document.
719 */
f41d6c8c 720 wxXmlDocument& operator=(const wxXmlDocument& doc);
ccec9093
VZ
721
722 /**
723 Get expat library version information.
724
725 @since 2.9.2
726 @see wxVersionInfo
727 */
728 static wxVersionInfo GetLibraryVersionInfo();
23324ae1 729};
e54c96f1 730