Added custom properties to style definitions and style sheets
[wxWidgets.git] / include / wx / richtext / richtextxml.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextxml.h
3 // Purpose: XML and HTML I/O for wxRichTextCtrl
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-09-30
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RICHTEXTXML_H_
13 #define _WX_RICHTEXTXML_H_
14
15 /*!
16 * Includes
17 */
18
19 #include "wx/richtext/richtextbuffer.h"
20 #include "wx/richtext/richtextstyles.h"
21
22 #if wxUSE_RICHTEXT && wxUSE_XML
23
24 /*!
25 * wxRichTextXMLHandler
26 */
27
28 class WXDLLIMPEXP_FWD_XML wxXmlNode;
29 class WXDLLIMPEXP_FWD_XML wxXmlDocument;
30
31 class WXDLLIMPEXP_RICHTEXT wxRichTextXMLHandler: public wxRichTextFileHandler
32 {
33 DECLARE_DYNAMIC_CLASS(wxRichTextXMLHandler)
34 public:
35 wxRichTextXMLHandler(const wxString& name = wxT("XML"), const wxString& ext = wxT("xml"), int type = wxRICHTEXT_TYPE_XML)
36 : wxRichTextFileHandler(name, ext, type)
37 { Init(); }
38
39 void Init();
40
41 #if wxUSE_STREAMS
42
43 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
44 /// Recursively export an object
45 bool ExportXML(wxOutputStream& stream, wxRichTextObject& obj, int level);
46 bool ExportStyleDefinition(wxOutputStream& stream, wxRichTextStyleDefinition* def, int level);
47 wxString AddAttributes(const wxRichTextAttr& attr, bool isPara = false);
48 bool WriteProperties(wxOutputStream& stream, const wxRichTextProperties& properties, int level);
49 void OutputString(wxOutputStream& stream, const wxString& str);
50 void OutputStringEnt(wxOutputStream& stream, const wxString& str);
51 void OutputIndentation(wxOutputStream& stream, int indent);
52 static wxString AttributeToXML(const wxString& str);
53 #endif
54
55 #if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
56 bool ExportXML(wxXmlNode* parent, wxRichTextObject& obj);
57 bool ExportStyleDefinition(wxXmlNode* parent, wxRichTextStyleDefinition* def);
58 bool AddAttributes(wxXmlNode* node, wxRichTextAttr& attr, bool isPara = false);
59 bool WriteProperties(wxXmlNode* node, const wxRichTextProperties& properties);
60 #endif
61
62 /// Make a string from the given property. This can be overridden for custom variants.
63 virtual wxString MakeStringFromProperty(const wxVariant& var);
64
65 /// Create a proprty from the string read from the XML file.
66 virtual wxVariant MakePropertyFromString(const wxString& name, const wxString& value, const wxString& type);
67
68 /// Recursively import an object
69 bool ImportXML(wxRichTextBuffer* buffer, wxRichTextObject* obj, wxXmlNode* node);
70 bool ImportStyleDefinition(wxRichTextStyleSheet* sheet, wxXmlNode* node);
71 bool ImportProperties(wxRichTextObject* obj, wxXmlNode* node);
72 bool ImportProperties(wxRichTextProperties& properties, wxXmlNode* node);
73
74 /// Import style parameters
75 bool ImportStyle(wxRichTextAttr& attr, wxXmlNode* node, bool isPara = false);
76 #endif
77
78 /// Creates an object given an XML element name
79 virtual wxRichTextObject* CreateObjectForXMLName(wxRichTextObject* parent, const wxString& name) const;
80
81 /// Can we save using this handler?
82 virtual bool CanSave() const { return true; }
83
84 /// Can we load using this handler?
85 virtual bool CanLoad() const { return true; }
86
87 // Used during saving
88 wxMBConv* GetConvMem() const { return m_convMem; }
89 wxMBConv* GetConvFile() const { return m_convFile; }
90
91 // Implementation
92
93 bool HasParam(wxXmlNode* node, const wxString& param);
94 wxXmlNode *GetParamNode(wxXmlNode* node, const wxString& param);
95 wxString GetNodeContent(wxXmlNode *node);
96 wxString GetParamValue(wxXmlNode *node, const wxString& param);
97 wxString GetText(wxXmlNode *node, const wxString& param = wxEmptyString, bool translate = false);
98 static wxXmlNode* FindNode(wxXmlNode* node, const wxString& name);
99
100 protected:
101 #if wxUSE_STREAMS
102 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream);
103 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream);
104 #endif
105
106 #if wxRICHTEXT_HAVE_DIRECT_OUTPUT
107 // Used during saving
108 wxMBConv* m_convMem;
109 wxMBConv* m_convFile;
110 #endif
111 };
112
113 #endif
114 // wxUSE_RICHTEXT && wxUSE_XML
115
116 #endif
117 // _WX_RICHTEXTXML_H_