X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e066e2566a4e5db3510fe6a204d66850eaeceade..447002a13109caa3cba1c9b51e591cdb1b77d269:/contrib/utils/wxrcedit/xmlhelpr.cpp?ds=sidebyside diff --git a/contrib/utils/wxrcedit/xmlhelpr.cpp b/contrib/utils/wxrcedit/xmlhelpr.cpp index c920dad77c..73a69129c6 100644 --- a/contrib/utils/wxrcedit/xmlhelpr.cpp +++ b/contrib/utils/wxrcedit/xmlhelpr.cpp @@ -19,12 +19,15 @@ #include "wx/xml/xml.h" #include "wx/wx.h" +#include "wx/tokenzr.h" #include "xmlhelpr.h" -wxXmlNode *XmlFindNode(wxXmlNode *parent, const wxString& param) +wxXmlNode *XmlFindNodeSimple(wxXmlNode *parent, const wxString& param) { + if (param.IsEmpty()) return parent; + wxXmlNode *n = parent->GetChildren(); while (n) @@ -37,15 +40,51 @@ wxXmlNode *XmlFindNode(wxXmlNode *parent, const wxString& param) } -void XmlWriteValue(wxXmlNode *parent, const wxString& name, const wxString& value) + +wxXmlNode *XmlFindNode(wxXmlNode *parent, const wxString& path) { - wxXmlNode *n = XmlFindNode(parent, name); - if (n == NULL) + wxXmlNode *n = parent; + wxStringTokenizer tkn(path, _T("/")); + while (tkn.HasMoreTokens()) + { + n = XmlFindNodeSimple(n, tkn.GetNextToken()); + if (n == NULL) break; + } + return n; +} + + + +wxXmlNode *XmlCreateNode(wxXmlNode *parent, const wxString& name) +{ + wxXmlNode *n; + wxString nm; + + wxStringTokenizer tkn(name, _T("/")); + n = parent; + while (tkn.HasMoreTokens()) { - n = new wxXmlNode(wxXML_ELEMENT_NODE, name); - parent->AddChild(n); - n->AddChild(new wxXmlNode(wxXML_TEXT_NODE, "")); + parent = n; + nm = tkn.GetNextToken(); + n = XmlFindNodeSimple(parent, nm); + if (n) continue; + + // n == NULL: + n = new wxXmlNode(wxXML_ELEMENT_NODE, nm); + parent->AddChild(n); } + n->AddChild(new wxXmlNode(wxXML_TEXT_NODE, wxEmptyString)); + + return n; +} + + + +void XmlWriteValue(wxXmlNode *parent, const wxString& name, const wxString& value) +{ + wxXmlNode *n = XmlFindNode(parent, name); + if (n == NULL) + n = XmlCreateNode(parent, name); n = n->GetChildren();