]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/richtext/richtextxml.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtextxml.h
3 // Purpose: interface of wxRichTextXMLHandler
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxRichTextXMLHandler
12 A handler for loading and saving content in an XML format specific
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.
20 @section richtextxmlhandler_flags Handler flags
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:
25 - wxRICHTEXT_HANDLER_INCLUDE_STYLESHEET
26 Include the style sheet in loading and saving operations.
32 class wxRichTextXMLHandler
: public wxRichTextFileHandler
38 wxRichTextXMLHandler(const wxString
& name
= "XML",
39 const wxString
& ext
= "xml",
40 int type
= wxRICHTEXT_TYPE_XML
);
45 virtual bool CanLoad() const;
50 virtual bool CanSave() const;
53 Recursively exports an object to the stream.
55 bool ExportXML(wxOutputStream
& stream
, wxRichTextObject
& obj
, int level
);
58 Helper function: gets node context.
60 wxString
GetNodeContent(wxXmlNode
* node
);
63 Helper function: gets a named parameter from the XML node.
65 wxXmlNode
* GetParamNode(wxXmlNode
* node
, const wxString
& param
);
68 Helper function: gets a named parameter from the XML node.
70 wxString
GetParamValue(wxXmlNode
* node
, const wxString
& param
);
73 Helper function: gets text from the node.
75 wxString
GetText(wxXmlNode
* node
,
76 const wxString
& param
= wxEmptyString
,
77 bool translate
= false);
80 Helper function: returns @true if the node has the given parameter.
82 bool HasParam(wxXmlNode
* node
, const wxString
& param
);
85 Recursively imports an object.
87 bool ImportXML(wxRichTextBuffer
* buffer
, wxRichTextObject
* obj
, wxXmlNode
* node
);
90 Call with XML node name, C++ class name so that wxRTC can read in the node.
91 If you add a custom object, call this.
93 static void RegisterNodeName(const wxString
& nodeName
, const wxString
& className
) { sm_nodeNameToClassMap
[nodeName
] = className
; }
96 Cleans up the mapping between node name and C++ class.
98 static void ClearNodeToClassMap() { sm_nodeNameToClassMap
.clear(); }
103 Loads buffer context from the given stream.
105 virtual bool DoLoadFile(wxRichTextBuffer
* buffer
, wxInputStream
& stream
);
108 Saves buffer context to the given stream.
110 virtual bool DoSaveFile(wxRichTextBuffer
* buffer
, wxOutputStream
& stream
);