]> git.saurik.com Git - wxWidgets.git/blame - include/wx/richtext/richtextxml.h
Fix wxPropertyGrid::GetPropertyRect when the last item is collapsed.
[wxWidgets.git] / include / wx / richtext / richtextxml.h
CommitLineData
5d7836c4 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/richtext/richtextxml.h
5d7836c4
JS
3// Purpose: XML and HTML I/O for wxRichTextCtrl
4// Author: Julian Smart
7fe8059f 5// Modified by:
5d7836c4 6// Created: 2005-09-30
5d7836c4
JS
7// Copyright: (c) Julian Smart
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_RICHTEXTXML_H_
12#define _WX_RICHTEXTXML_H_
13
14/*!
15 * Includes
16 */
17
1aca9fcd 18#include "wx/hashmap.h"
b01ca8b6 19#include "wx/richtext/richtextbuffer.h"
d2d0adc7 20#include "wx/richtext/richtextstyles.h"
5d7836c4 21
fcdbeefa 22#if wxUSE_RICHTEXT && wxUSE_XML
5d7836c4 23
5d7836c4
JS
24/*!
25 * wxRichTextXMLHandler
26 */
27
b5dbe15d 28class WXDLLIMPEXP_FWD_XML wxXmlNode;
bec80f4f 29class WXDLLIMPEXP_FWD_XML wxXmlDocument;
5d7836c4 30
3b2cb431 31class WXDLLIMPEXP_RICHTEXT wxRichTextXMLHandler: public wxRichTextFileHandler
5d7836c4 32{
48dd0055 33 DECLARE_DYNAMIC_CLASS(wxRichTextXMLHandler)
5d7836c4
JS
34public:
35 wxRichTextXMLHandler(const wxString& name = wxT("XML"), const wxString& ext = wxT("xml"), int type = wxRICHTEXT_TYPE_XML)
36 : wxRichTextFileHandler(name, ext, type)
bec80f4f 37 { Init(); }
c6182d48 38
bec80f4f 39 void Init();
5d7836c4
JS
40
41#if wxUSE_STREAMS
bec80f4f
JS
42
43#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
5d7836c4 44 /// Recursively export an object
bec80f4f
JS
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);
5d7836c4
JS
67
68 /// Recursively import an object
bec80f4f 69 bool ImportXML(wxRichTextBuffer* buffer, wxRichTextObject* obj, wxXmlNode* node);
d2d0adc7 70 bool ImportStyleDefinition(wxRichTextStyleSheet* sheet, wxXmlNode* node);
bec80f4f 71 bool ImportProperties(wxRichTextObject* obj, wxXmlNode* node);
c6182d48 72 bool ImportProperties(wxRichTextProperties& properties, wxXmlNode* node);
5d7836c4 73
bec80f4f
JS
74 /// Import style parameters
75 bool ImportStyle(wxRichTextAttr& attr, wxXmlNode* node, bool isPara = false);
5d7836c4
JS
76#endif
77
bec80f4f
JS
78 /// Creates an object given an XML element name
79 virtual wxRichTextObject* CreateObjectForXMLName(wxRichTextObject* parent, const wxString& name) const;
c6182d48 80
5d7836c4
JS
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
bec80f4f
JS
87 // Used during saving
88 wxMBConv* GetConvMem() const { return m_convMem; }
89 wxMBConv* GetConvFile() const { return m_convFile; }
90
5d7836c4
JS
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);
603f702b 98 static wxXmlNode* FindNode(wxXmlNode* node, const wxString& name);
5d7836c4 99
1aca9fcd
JS
100 /**
101 Call with XML node name, C++ class name so that wxRTC can read in the node.
102 If you add a custom object, call this.
103 */
104 static void RegisterNodeName(const wxString& nodeName, const wxString& className) { sm_nodeNameToClassMap[nodeName] = className; }
105
106 /**
107 Cleans up the mapping between node name and C++ class.
108 */
109 static void ClearNodeToClassMap() { sm_nodeNameToClassMap.clear(); }
110
5d7836c4 111protected:
6f02a879
VZ
112#if wxUSE_STREAMS
113 virtual bool DoLoadFile(wxRichTextBuffer *buffer, wxInputStream& stream);
114 virtual bool DoSaveFile(wxRichTextBuffer *buffer, wxOutputStream& stream);
115#endif
bec80f4f
JS
116
117#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
118 // Used during saving
119 wxMBConv* m_convMem;
120 wxMBConv* m_convFile;
121#endif
1aca9fcd
JS
122
123 static wxStringToStringHashMap sm_nodeNameToClassMap;
5d7836c4
JS
124};
125
5d7836c4 126#endif
fcdbeefa 127 // wxUSE_RICHTEXT && wxUSE_XML
5d7836c4
JS
128
129#endif
130 // _WX_RICHTEXTXML_H_