summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorjohnce <johnce@users.sourceforge.net>2009-08-05 18:32:38 +0000
committerjohnce <johnce@users.sourceforge.net>2009-08-05 18:32:38 +0000
commite8b5612f8dbe3cefaf56469320fa12bea9713a1b (patch)
tree74775a17063750fef065108a67621107c9f56122 /src/xml
parentSPDocument->Document (diff)
downloadinkscape-e8b5612f8dbe3cefaf56469320fa12bea9713a1b.tar.gz
inkscape-e8b5612f8dbe3cefaf56469320fa12bea9713a1b.zip
xml/Document -> DocumentTree
(bzr r8417)
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/document.h6
-rw-r--r--src/xml/rebase-hrefs.cpp8
-rw-r--r--src/xml/rebase-hrefs.h5
-rw-r--r--src/xml/repr-css.cpp8
-rw-r--r--src/xml/repr.h2
5 files changed, 15 insertions, 14 deletions
diff --git a/src/xml/document.h b/src/xml/document.h
index 2b9ea5cc3..a5f457fe8 100644
--- a/src/xml/document.h
+++ b/src/xml/document.h
@@ -12,8 +12,8 @@
*
*/
-#ifndef SEEN_INKSCAPE_XML_SP_REPR_DOC_H
-#define SEEN_INKSCAPE_XML_SP_REPR_DOC_H
+#ifndef SEEN_INKSCAPE_XML_SP_REPR_DOCTREE_H
+#define SEEN_INKSCAPE_XML_SP_REPR_DOCTREE_H
#include "xml/xml-forward.h"
#include "xml/node.h"
@@ -41,7 +41,7 @@ namespace XML {
* "restore point" by calling beginTransaction() again. There can be only one active
* transaction at a time for a given document.
*/
-struct Document : virtual public Node {
+class DocumentTree : virtual public Node {
public:
/**
* @name Document transactions
diff --git a/src/xml/rebase-hrefs.cpp b/src/xml/rebase-hrefs.cpp
index 8d771fef2..0fa5c0337 100644
--- a/src/xml/rebase-hrefs.cpp
+++ b/src/xml/rebase-hrefs.cpp
@@ -1,6 +1,6 @@
#include "xml/rebase-hrefs.h"
#include "dir-util.h"
-#include "../document.h" /* Unfortunately there's a separate xml/document.h. */
+#include "document.h" /* Unfortunately there's a separate xml/document.h. */
#include "io/sys.h"
#include "sp-object.h"
#include "streq.h"
@@ -199,9 +199,9 @@ Inkscape::XML::calc_abs_doc_base(gchar const *const doc_base)
*
* \param spns True iff doc should contain sodipodi:absref attributes.
*/
-void Inkscape::XML::rebase_hrefs(Document *const doc, gchar const *const new_base, bool const spns)
+void Inkscape::XML::rebase_hrefs(Inkscape::XML::Document *doc, gchar const *const new_base, bool const spns)
{
- gchar *const old_abs_base = calc_abs_doc_base(doc->base);
+ gchar *const old_abs_base = calc_abs_doc_base((Inkscape::XML::Document *)(doc)->base);
gchar *const new_abs_base = calc_abs_doc_base(new_base);
/* TODO: Should handle not just image but also:
@@ -224,7 +224,7 @@ void Inkscape::XML::rebase_hrefs(Document *const doc, gchar const *const new_bas
*
* Note also that Inkscape only supports fragment hrefs (href="#pattern257") for many of these
* cases. */
- GSList const *images = sp_document_get_resource_list(doc, "image");
+ GSList const *images = sp_document_get_resource_list((Inkscape::XML::Document *)doc, "image");
for (GSList const *l = images; l != NULL; l = l->next) {
Inkscape::XML::Node *ir = SP_OBJECT_REPR(l->data);
diff --git a/src/xml/rebase-hrefs.h b/src/xml/rebase-hrefs.h
index 2f82a5587..36de6ba6e 100644
--- a/src/xml/rebase-hrefs.h
+++ b/src/xml/rebase-hrefs.h
@@ -4,14 +4,15 @@
#include <glib/gtypes.h>
#include "util/list.h"
#include "xml/attribute-record.h"
-struct Document;
+#include "document.h"
namespace Inkscape {
namespace XML {
+//struct Document;
gchar *calc_abs_doc_base(gchar const *doc_base);
-void rebase_hrefs(Document *doc, gchar const *new_base, bool spns);
+void rebase_hrefs(Inkscape::XML::Document *doc, gchar const *new_base, bool spns);
Inkscape::Util::List<AttributeRecord const> rebase_href_attrs(
gchar const *old_abs_base,
diff --git a/src/xml/repr-css.cpp b/src/xml/repr-css.cpp
index 172cfa6f3..a7e913853 100644
--- a/src/xml/repr-css.cpp
+++ b/src/xml/repr-css.cpp
@@ -22,15 +22,15 @@ using Inkscape::XML::NodeType;
struct SPCSSAttrImpl : public SimpleNode, public SPCSSAttr {
public:
- SPCSSAttrImpl(Document *doc)
+ SPCSSAttrImpl(Inkscape::XML::Document *doc)
: SimpleNode(g_quark_from_static_string("css"), doc) {}
- SPCSSAttrImpl(SPCSSAttrImpl const &other, Document *doc)
- : SimpleNode(other, doc) {}
+ SPCSSAttrImpl(SPCSSAttrImpl const &other, Inkscape::XML::Document *doc)
+ : SimpleNode(other, (Inkscape::XML::Document *)doc) {}
NodeType type() const { return Inkscape::XML::ELEMENT_NODE; }
protected:
- SimpleNode *_duplicate(Inkscape::XML::Document* doc) const { return new SPCSSAttrImpl(*this, doc); }
+ SimpleNode *_duplicate(Inkscape::XML::Document* doc) const { return new SPCSSAttrImpl(*this, (Inkscape::XML::Document *)doc); }
};
static void sp_repr_css_add_components(SPCSSAttr *css, Node *repr, gchar const *attr);
diff --git a/src/xml/repr.h b/src/xml/repr.h
index 549822e4e..b40fe63a9 100644
--- a/src/xml/repr.h
+++ b/src/xml/repr.h
@@ -148,7 +148,7 @@ Inkscape::XML::Node *sp_repr_lookup_child(Inkscape::XML::Node *repr,
gchar const *value);
-inline Inkscape::XML::Node *sp_repr_document_first_child(Inkscape::XML::Document const *doc) {
+inline Inkscape::XML::Node *sp_repr_document_first_child(Inkscape::XML::DocumentTree const *doc) {
return const_cast<Inkscape::XML::Node *>(doc->firstChild());
}