Code

merge inline patch from Jimmy
[inkscape.git] / src / xml / repr.h
1 #ifndef __SP_REPR_H__
2 #define __SP_REPR_H__
4 /** \file
5  * C facade to Inkscape::XML::Node.
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *
10  * Copyright (C) 1999-2002 authors
11  * Copyright (C) 2000-2002 Ximian, Inc.
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #include <stdio.h>
17 #include <glib/gtypes.h>
18 #include "gc-anchored.h"
20 #include "xml/node.h"
21 #include "xml/document.h"
22 #include "xml/sp-css-attr.h"
23 #include "io/inkscapestream.h"
25 #include <2geom/point.h>
27 #define SP_SODIPODI_NS_URI "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
28 #define SP_BROKEN_SODIPODI_NS_URI "http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
29 #define SP_INKSCAPE_NS_URI "http://www.inkscape.org/namespaces/inkscape"
30 #define SP_XLINK_NS_URI "http://www.w3.org/1999/xlink"
31 #define SP_SVG_NS_URI "http://www.w3.org/2000/svg"
32 #define SP_RDF_NS_URI "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
33 #define SP_CC_NS_URI "http://creativecommons.org/ns#"
34 #define SP_OLD_CC_NS_URI "http://web.resource.org/cc/"
35 #define SP_DC_NS_URI "http://purl.org/dc/elements/1.1/"
37 /**
38  * \note NB! Unless explicitly stated all methods are noref/nostrcpy
39  */
41 /** \todo
42  * Though Inkscape::XML::Node provides "signals" for notification when 
43  * individual nodes change, there is no mechanism to receive notification 
44  * for overall document changes.
45  * However, with the addition of the transactions code, it would not be
46  * very hard to implement if you wanted it.
47  * 
48  * \class Inkscape::XML::Node
49  * \note
50  * Inkscape::XML::Node itself doesn't use GObject signals at present -- 
51  * Inkscape::XML::Nodes maintain lists of Inkscape::XML::NodeEventVectors 
52  * (added via sp_repr_add_listener), which are used to specify callbacks 
53  * when something changes.
54  *
55  * Here are the current callbacks in an event vector (they may be NULL):
56  *
57  * void (* child_added)(Inkscape::XML::Node *repr, Inkscape::XML::Node *child, 
58  * Inkscape::XML::Node *ref, void *data); Called once a child has been added.
59  *
60  * void (* child_removed)(Inkscape::XML::Node *repr, 
61  * Inkscape::XML::Node *child, Inkscape::XML::Node *ref, void *data);
62  * Called after a child is removed; ref is the child that used to precede
63  * the removed child.
64  *
65  * void (* attr_changed)(Inkscape::XML::Node *repr, gchar const *key, 
66  * gchar const *oldval, gchar const *newval, void *data);
67  * Called after an attribute has been changed.
68  *
69  * void (* content_changed)(Inkscape::XML::Node *repr, gchar const *oldcontent,
70  * gchar const *newcontent, void *data);
71  * Called after an element's content has been changed.
72  *
73  * void (* order_changed)(Inkscape::XML::Node *repr, Inkscape::XML::Node *child,
74  * Inkscape::XML::Node *oldref, Inkscape::XML::Node *newref, void *data);
75  * Called once the child has been moved to its new position in the child order.
76  *
77  * <b> Inkscape::XML::Node mini-FAQ </b>
78  *
79  * Since I'm not very familiar with this section of code but I need to use
80  * it heavily for the RDF work, I'm going to answer various questions I run
81  * into with my best-guess answers so others can follow along too.
82  *
83  * \arg
84  * Q: How do I find the root Inkscape::XML::Node? <br>
85  * A: If you have an SPDocument, use doc->rroot.  For example: 
86  * 
87  * \code    SP_ACTIVE_DOCUMENT->rroot       \endcode <br>
88  * 
89  * (but it's better to arrange for your caller to pass in the relevent
90  * document rather than assuming it's necessarily the active one and
91  * using SP_ACTIVE_DOCUMENT)
92  *
93  * \arg
94  * Q: How do I find an Inkscape::XML::Node by unique key/value? <br>
95  * A: Use sp_repr_lookup_child
96  *
97  * \arg
98  * Q: How do I find an Inkscape::XML::Node by unique namespace name? <br>
99  * A: Use sp_repr_lookup_name
100  *
101  * \arg
102  * Q: How do I make an Inkscape::XML::Node namespace prefix constant in 
103  * the application? <br>
104  * A: Add the XML namespace URL as a #define to repr.h at the top with the
105  * other SP_<NAMESPACE>_NS_URI #define's, and then in repr-util.cpp,
106  * in sp_xml_ns_register_defaults, bump "defaults" up in size one, and
107  * add another section.  Don't forget to increment the array offset and
108  * keep ".next" pointed to the next (if any) array entry.
109  *
110  * \arg
111  * Q: How do I create a new Inkscape::XML::Node? <br>
112  * A: Use the appropriate create* method on Inkscape::XML::Document,
113  * parent->appendChild(child), and then use Inkscape::GC::release(child) to
114  * let go of it (the parent will hold it in memory).
115  *
116  * \arg
117  * Q: How do I destroy an Inkscape::XML::Node?
118  * A: Just call "sp_repr_unparent" on it and release any references
119  * you may be retaining to it.  Any attached SPObjects will
120  * clean themselves up automatically, as will any children.
121  *
122  * \arg
123  * Q: What about listeners? <br>
124  * A: I have no idea yet...
125  *
126  * \arg
127  * Q: How do I add a namespace to a newly created document?  <br>
128  * A: The current hack is in document.cpp:sp_document_create
129  *
130  * Kees Cook  2004-07-01, updated MenTaLguY 2005-01-25
131  */
133 namespace Geom {
134 class Point;
137 /* SPXMLNs */
138 char const *sp_xml_ns_uri_prefix(gchar const *uri, gchar const *suggested);
139 char const *sp_xml_ns_prefix_uri(gchar const *prefix);
141 Inkscape::XML::Document *sp_repr_document_new(gchar const *rootname);
143 /* Tree */
144 /// Returns the node's parent.
145 inline Inkscape::XML::Node *sp_repr_parent(Inkscape::XML::Node const *repr) {
146     return const_cast<Inkscape::XML::Node *>(repr->parent());
149 /// Returns first child of node, resets iterator.
150 inline Inkscape::XML::Node const *sp_repr_children(Inkscape::XML::Node const *repr) {
151     return ( repr ? repr->firstChild() : NULL );
154 /// Returns first child of node, resets iterator.
155 inline Inkscape::XML::Node *sp_repr_children(Inkscape::XML::Node *repr) {
156     return ( repr ? repr->firstChild() : NULL );
159 /// Returns next child of node or NULL.
160 inline Inkscape::XML::Node const *sp_repr_next(Inkscape::XML::Node const *repr) {
161     return ( repr ? repr->next() : NULL );
164 /// Returns next child of node or NULL.
165 inline Inkscape::XML::Node *sp_repr_next(Inkscape::XML::Node *repr) {
166     return ( repr ? repr->next() : NULL );
169 /* IO */
171 Inkscape::XML::Document *sp_repr_read_file(gchar const *filename, gchar const *default_ns);
172 Inkscape::XML::Document *sp_repr_read_mem(gchar const *buffer, int length, gchar const *default_ns);
173 void sp_repr_write_stream (Inkscape::XML::Node *repr, Inkscape::IO::Writer &out,
174                  gint indent_level,  bool add_whitespace, Glib::QueryQuark elide_prefix,
175                                  int inlineattrs, int indent);
176 Inkscape::XML::Document *sp_repr_read_buf (const Glib::ustring &buf, const gchar *default_ns);
177 Glib::ustring sp_repr_save_buf(Inkscape::XML::Document *doc);
178 void sp_repr_save_stream(Inkscape::XML::Document *doc, FILE *to_file, gchar const *default_ns=NULL, bool compress = false);
179 bool sp_repr_save_file(Inkscape::XML::Document *doc, gchar const *filename, gchar const *default_ns=NULL);
181 void sp_repr_print(Inkscape::XML::Node *repr);
183 /* CSS stuff */
185 SPCSSAttr *sp_repr_css_attr_new(void);
186 void sp_repr_css_attr_unref(SPCSSAttr *css);
187 SPCSSAttr *sp_repr_css_attr(Inkscape::XML::Node *repr, gchar const *attr);
188 SPCSSAttr *sp_repr_css_attr_inherited(Inkscape::XML::Node *repr, gchar const *attr);
190 gchar const *sp_repr_css_property(SPCSSAttr *css, gchar const *name, gchar const *defval);
191 void sp_repr_css_set_property(SPCSSAttr *css, gchar const *name, gchar const *value);
192 void sp_repr_css_unset_property(SPCSSAttr *css, gchar const *name);
193 bool sp_repr_css_property_is_unset(SPCSSAttr *css, gchar const *name);
194 double sp_repr_css_double_property(SPCSSAttr *css, gchar const *name, double defval);
196 gchar *sp_repr_css_write_string(SPCSSAttr *css);
197 void sp_repr_css_set(Inkscape::XML::Node *repr, SPCSSAttr *css, gchar const *key);
198 void sp_repr_css_merge(SPCSSAttr *dst, SPCSSAttr *src);
199 void sp_repr_css_attr_add_from_string(SPCSSAttr *css, const gchar *data);
200 void sp_repr_css_change(Inkscape::XML::Node *repr, SPCSSAttr *css, gchar const *key);
201 void sp_repr_css_change_recursive(Inkscape::XML::Node *repr, SPCSSAttr *css, gchar const *key);
203 void sp_repr_css_print(SPCSSAttr *css);
205 /* Utility finctions */
206 /// Remove \a repr from children of its parent node.
207 inline void sp_repr_unparent(Inkscape::XML::Node *repr) {
208     Inkscape::XML::Node *parent=repr->parent();
209     if (parent) {
210         parent->removeChild(repr);
211     }
214 /* Convenience */
215 unsigned sp_repr_get_boolean(Inkscape::XML::Node *repr, gchar const *key, unsigned *val);
216 unsigned sp_repr_get_int(Inkscape::XML::Node *repr, gchar const *key, int *val);
217 unsigned sp_repr_get_double(Inkscape::XML::Node *repr, gchar const *key, double *val);
218 unsigned sp_repr_set_boolean(Inkscape::XML::Node *repr, gchar const *key, unsigned val);
219 unsigned sp_repr_set_int(Inkscape::XML::Node *repr, gchar const *key, int val);
220 unsigned sp_repr_set_css_double(Inkscape::XML::Node *repr, gchar const *key, double val);
221 unsigned sp_repr_set_svg_double(Inkscape::XML::Node *repr, gchar const *key, double val);
222 unsigned sp_repr_set_point(Inkscape::XML::Node *repr, gchar const *key, Geom::Point val);
223 unsigned sp_repr_get_point(Inkscape::XML::Node *repr, gchar const *key, Geom::Point *val);
225 /// \deprecated !
226 double sp_repr_get_double_attribute(Inkscape::XML::Node *repr, gchar const *key, double def);
227 /// \deprecated !
228 long long int sp_repr_get_int_attribute(Inkscape::XML::Node *repr, gchar const *key, long long int def);
229 /* End Deprecated? */
231 int sp_repr_compare_position(Inkscape::XML::Node *first, Inkscape::XML::Node *second);
233 /* Searching */
234 Inkscape::XML::Node *sp_repr_lookup_name(Inkscape::XML::Node *repr,
235                                          gchar const *name,
236                                          gint maxdepth = -1);
237 Inkscape::XML::Node *sp_repr_lookup_child(Inkscape::XML::Node *repr,
238                                           gchar const *key,
239                                           gchar const *value);
242 inline Inkscape::XML::Node *sp_repr_document_first_child(Inkscape::XML::Document const *doc) {
243     return const_cast<Inkscape::XML::Node *>(doc->firstChild());
246 #endif
249 /*
250   Local Variables:
251   mode:c++
252   c-file-style:"stroustrup"
253   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
254   indent-tabs-mode:nil
255   fill-column:99
256   End:
257 */
258 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :