1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richeditxml.h
3 // Purpose: XML and HTML I/O for wxRichTextCtrl
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RICHTEXTXML_H_
13 #define _WX_RICHTEXTXML_H_
19 #include "wx/richtext/richtextbuffer.h"
21 #if wxUSE_RICHTEXT && wxUSE_XML
24 * wxRichTextXMLHandler
27 class WXDLLIMPEXP_XML wxXmlNode
;
29 class WXDLLIMPEXP_ADV wxRichTextXMLHandler
: public wxRichTextFileHandler
31 DECLARE_CLASS(wxRichTextXMLHandler
)
33 wxRichTextXMLHandler(const wxString
& name
= wxT("XML"), const wxString
& ext
= wxT("xml"), int type
= wxRICHTEXT_TYPE_XML
)
34 : wxRichTextFileHandler(name
, ext
, type
)
38 /// Recursively export an object
39 bool ExportXML(wxOutputStream
& stream
, wxMBConv
* convMem
, wxMBConv
* convFile
, wxRichTextObject
& obj
, int level
);
41 /// Recursively import an object
42 bool ImportXML(wxRichTextBuffer
* buffer
, wxXmlNode
* node
);
44 /// Create style parameters
45 wxString
CreateStyle(const wxTextAttrEx
& attr
, bool isPara
= false);
47 /// Get style parameters
48 bool GetStyle(wxTextAttrEx
& attr
, wxXmlNode
* node
, bool isPara
= false);
51 /// Can we save using this handler?
52 virtual bool CanSave() const { return true; }
54 /// Can we load using this handler?
55 virtual bool CanLoad() const { return true; }
59 bool HasParam(wxXmlNode
* node
, const wxString
& param
);
60 wxXmlNode
*GetParamNode(wxXmlNode
* node
, const wxString
& param
);
61 wxString
GetNodeContent(wxXmlNode
*node
);
62 wxString
GetParamValue(wxXmlNode
*node
, const wxString
& param
);
63 wxString
GetText(wxXmlNode
*node
, const wxString
& param
= wxEmptyString
, bool translate
= false);
67 virtual bool DoLoadFile(wxRichTextBuffer
*buffer
, wxInputStream
& stream
);
68 virtual bool DoSaveFile(wxRichTextBuffer
*buffer
, wxOutputStream
& stream
);
73 // wxUSE_RICHTEXT && wxUSE_XML