]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: richtext/richtextxml.h | |
21b447dc | 3 | // Purpose: interface of wxRichTextXMLHandler |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
9 | /** | |
10 | @class wxRichTextXMLHandler | |
7c913512 | 11 | |
23324ae1 | 12 | A handler for loading and saving content in an XML format specific |
9e7ad1ca FM |
13 | to wxRichTextBuffer. |
14 | ||
15 | You can either add the handler to the buffer and load and save through | |
16 | the buffer or control API, or you can create an instance of the handler | |
17 | on the stack and call its functions directly. | |
18 | ||
19 | ||
20 | @section richtextxmlhandler_flags Handler flags | |
21 | ||
22 | The following flags can be used with this handler, via the handler's SetFlags() | |
23 | function or the buffer or control's SetHandlerFlags() function: | |
24 | ||
25 | - wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET | |
26 | Include the style sheet in loading and saving operations. | |
27 | ||
7c913512 | 28 | |
23324ae1 | 29 | @library{wxrichtext} |
21b447dc | 30 | @category{richtext} |
23324ae1 FM |
31 | */ |
32 | class wxRichTextXMLHandler : public wxRichTextFileHandler | |
33 | { | |
34 | public: | |
35 | /** | |
23324ae1 FM |
36 | Constructor. |
37 | */ | |
f8ebb70d FM |
38 | wxRichTextXMLHandler(const wxString& name = "XML", |
39 | const wxString& ext = "xml", | |
0004982c | 40 | int type = wxRICHTEXT_TYPE_XML); |
23324ae1 FM |
41 | |
42 | /** | |
43 | Returns @true. | |
44 | */ | |
adaaa686 | 45 | virtual bool CanLoad() const; |
23324ae1 FM |
46 | |
47 | /** | |
48 | Returns @true. | |
49 | */ | |
adaaa686 | 50 | virtual bool CanSave() const; |
23324ae1 | 51 | |
23324ae1 FM |
52 | /** |
53 | Recursively exports an object to the stream. | |
54 | */ | |
d2ae3af8 JS |
55 | bool ExportXML(wxOutputStream& stream, wxRichTextObject& obj, int level); |
56 | ||
23324ae1 FM |
57 | /** |
58 | Helper function: gets node context. | |
59 | */ | |
60 | wxString GetNodeContent(wxXmlNode* node); | |
61 | ||
62 | /** | |
63 | Helper function: gets a named parameter from the XML node. | |
64 | */ | |
65 | wxXmlNode* GetParamNode(wxXmlNode* node, const wxString& param); | |
66 | ||
67 | /** | |
68 | Helper function: gets a named parameter from the XML node. | |
69 | */ | |
70 | wxString GetParamValue(wxXmlNode* node, const wxString& param); | |
71 | ||
23324ae1 FM |
72 | /** |
73 | Helper function: gets text from the node. | |
74 | */ | |
75 | wxString GetText(wxXmlNode* node, | |
76 | const wxString& param = wxEmptyString, | |
4cc4bfaf | 77 | bool translate = false); |
23324ae1 FM |
78 | |
79 | /** | |
80 | Helper function: returns @true if the node has the given parameter. | |
81 | */ | |
82 | bool HasParam(wxXmlNode* node, const wxString& param); | |
83 | ||
84 | /** | |
85 | Recursively imports an object. | |
86 | */ | |
d2ae3af8 | 87 | bool ImportXML(wxRichTextBuffer* buffer, wxRichTextObject* obj, wxXmlNode* node); |
5e6e278d FM |
88 | |
89 | protected: | |
90 | ||
91 | /** | |
92 | Loads buffer context from the given stream. | |
93 | */ | |
94 | virtual bool DoLoadFile(wxRichTextBuffer* buffer, wxInputStream& stream); | |
95 | ||
96 | /** | |
97 | Saves buffer context to the given stream. | |
98 | */ | |
99 | virtual bool DoSaveFile(wxRichTextBuffer* buffer, wxOutputStream& stream); | |
23324ae1 | 100 | }; |
e54c96f1 | 101 |