Code

534ad412d1eeb566bc19788ddeecfda3cf6db495
[inkscape.git] / src / document.cpp
1 #define __SP_DOCUMENT_C__
3 /** \file
4  * SPDocument manipulation
5  *
6  * Authors:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   MenTaLguY <mental@rydia.net>
9  *   bulia byak <buliabyak@users.sf.net>
10  *
11  * Copyright (C) 2004-2005 MenTaLguY
12  * Copyright (C) 1999-2002 Lauris Kaplinski
13  * Copyright (C) 2000-2001 Ximian, Inc.
14  *
15  * Released under GNU GPL, read the file 'COPYING' for more information
16  */
18 /** \class SPDocument
19  * SPDocument serves as the container of both model trees (agnostic XML
20  * and typed object tree), and implements all of the document-level
21  * functionality used by the program. Many document level operations, like
22  * load, save, print, export and so on, use SPDocument as their basic datatype.
23  *
24  * SPDocument implements undo and redo stacks and an id-based object
25  * dictionary.  Thanks to unique id attributes, the latter can be used to
26  * map from the XML tree back to the object tree.
27  *
28  * SPDocument performs the basic operations needed for asynchronous
29  * update notification (SPObject ::modified virtual method), and implements
30  * the 'modified' signal, as well.
31  */
34 #define noSP_DOCUMENT_DEBUG_IDLE
35 #define noSP_DOCUMENT_DEBUG_UNDO
37 #ifdef HAVE_CONFIG_H
38 # include "config.h"
39 #endif
40 #include <gtk/gtkmain.h>
41 #include "application/application.h"
42 #include "application/editor.h"
43 #include "libnr/nr-matrix-fns.h"
44 #include "xml/repr.h"
45 #include "helper/units.h"
46 #include "inkscape-private.h"
47 #include "inkscape_version.h"
48 #include "sp-object-repr.h"
49 #include "document-private.h"
50 #include "dir-util.h"
51 #include "unit-constants.h"
52 #include "prefs-utils.h"
53 #include "libavoid/router.h"
54 #include "libnr/nr-rect.h"
55 #include "sp-item-group.h"
57 #include "display/nr-arena-item.h"
59 #include "dialogs/rdf.h"
61 #define A4_WIDTH_STR "210mm"
62 #define A4_HEIGHT_STR "297mm"
64 #define SP_DOCUMENT_UPDATE_PRIORITY (G_PRIORITY_HIGH_IDLE - 1)
67 static gint sp_document_idle_handler(gpointer data);
69 gboolean sp_document_resource_list_free(gpointer key, gpointer value, gpointer data);
71 static gint doc_count = 0;
73 SPDocument::SPDocument() {
74     SPDocumentPrivate *p;
76     keepalive = FALSE;
77     virgin    = TRUE;
79     modified_id = 0;
81     rdoc = NULL;
82     rroot = NULL;
83     root = NULL;
84     style_cascade = cr_cascade_new(NULL, NULL, NULL);
86     uri = NULL;
87     base = NULL;
88     name = NULL;
90     _collection_queue = NULL;
92     // Initialise instance of connector router.
93     router = new Avoid::Router();
94     // Don't use the Consolidate moves optimisation.
95     router->ConsolidateMoves = false;
97     p = new SPDocumentPrivate();
99     p->iddef = g_hash_table_new(g_direct_hash, g_direct_equal);
100     p->reprdef = g_hash_table_new(g_direct_hash, g_direct_equal);
102     p->resources = g_hash_table_new(g_str_hash, g_str_equal);
104     p->sensitive = FALSE;
105     p->partial = NULL;
106     p->history_size = 0;
107     p->undo = NULL;
108     p->redo = NULL;
110     p->undoStackObservers.add(p->event_log);
111     p->event_log.setDocument(this);
113     priv = p;
115     // XXX only for testing!
116     priv->undoStackObservers.add(p->console_output_undo_observer);
119 SPDocument::~SPDocument() {
120     collectOrphans();
122     if (priv) {
123         inkscape_remove_document(this);
125         if (priv->partial) {
126             sp_repr_free_log(priv->partial);
127             priv->partial = NULL;
128         }
130         sp_document_clear_redo(this);
131         sp_document_clear_undo(this);
133         if (root) {
134             sp_object_invoke_release(root);
135             sp_object_unref(root);
136             root = NULL;
137         }
139         if (priv->iddef) g_hash_table_destroy(priv->iddef);
140         if (priv->reprdef) g_hash_table_destroy(priv->reprdef);
142         if (rdoc) Inkscape::GC::release(rdoc);
144         /* Free resources */
145         g_hash_table_foreach_remove(priv->resources, sp_document_resource_list_free, this);
146         g_hash_table_destroy(priv->resources);
148         delete priv;
149         priv = NULL;
150     }
152     cr_cascade_unref(style_cascade);
153     style_cascade = NULL;
155     if (name) {
156         g_free(name);
157         name = NULL;
158     }
159     if (base) {
160         g_free(base);
161         base = NULL;
162     }
163     if (uri) {
164         g_free(uri);
165         uri = NULL;
166     }
168     if (modified_id) {
169         gtk_idle_remove(modified_id);
170         modified_id = 0;
171     }
173     _selection_changed_connection.disconnect();
174     _desktop_activated_connection.disconnect();
176     if (keepalive) {
177         inkscape_unref();
178         keepalive = FALSE;
179     }
181     if (router) {
182         delete router;
183         router = NULL;
184     }
186     //delete this->_whiteboard_session_manager;
189 void SPDocument::queueForOrphanCollection(SPObject *object) {
190     g_return_if_fail(object != NULL);
191     g_return_if_fail(SP_OBJECT_DOCUMENT(object) == this);
193     sp_object_ref(object, NULL);
194     _collection_queue = g_slist_prepend(_collection_queue, object);
197 void SPDocument::collectOrphans() {
198     while (_collection_queue) {
199         GSList *objects=_collection_queue;
200         _collection_queue = NULL;
201         for ( GSList *iter=objects ; iter ; iter = iter->next ) {
202             SPObject *object=reinterpret_cast<SPObject *>(iter->data);
203             object->collectOrphan();
204             sp_object_unref(object, NULL);
205         }
206         g_slist_free(objects);
207     }
210 void SPDocument::reset_key (void *dummy)
212     actionkey = NULL;
215 SPDocument *
216 sp_document_create(Inkscape::XML::Document *rdoc,
217                    gchar const *uri,
218                    gchar const *base,
219                    gchar const *name,
220                    unsigned int keepalive)
222     SPDocument *document;
223     Inkscape::XML::Node *rroot;
224     Inkscape::Version sodipodi_version;
226     rroot = sp_repr_document_root(rdoc);
228     document = new SPDocument();
230     document->keepalive = keepalive;
232     document->rdoc = rdoc;
233     document->rroot = rroot;
235 #ifndef WIN32
236     prepend_current_dir_if_relative(&(document->uri), uri);
237 #else
238     // FIXME: it may be that prepend_current_dir_if_relative works OK on windows too, test!
239     document->uri = uri? g_strdup(uri) : NULL;
240 #endif
242     // base is simply the part of the path before filename; e.g. when running "inkscape ../file.svg" the base is "../"
243     // which is why we use g_get_current_dir() in calculating the abs path above
244     //This is NULL for a new document
245     if (base)
246         document->base = g_strdup(base);
247     else
248         document->base = NULL;
249     document->name = g_strdup(name);
251     document->root = sp_object_repr_build_tree(document, rroot);
253     sodipodi_version = SP_ROOT(document->root)->version.sodipodi;
255     /* fixme: Not sure about this, but lets assume ::build updates */
256     rroot->setAttribute("sodipodi:version", SODIPODI_VERSION);
257     rroot->setAttribute("inkscape:version", INKSCAPE_VERSION);
258     /* fixme: Again, I moved these here to allow version determining in ::build (Lauris) */
260     /* Quick hack 2 - get default image size into document */
261     if (!rroot->attribute("width")) rroot->setAttribute("width", A4_WIDTH_STR);
262     if (!rroot->attribute("height")) rroot->setAttribute("height", A4_HEIGHT_STR);
263     /* End of quick hack 2 */
265     /* Quick hack 3 - Set uri attributes */
266     if (uri) {
267         /* fixme: Think, what this means for images (Lauris) */
268         rroot->setAttribute("sodipodi:docname", uri);
269         if (document->base)
270             rroot->setAttribute("sodipodi:docbase", document->base);
271     }
272     /* End of quick hack 3 */
274     // creating namedview
275     if (!sp_item_group_get_child_by_name((SPGroup *) document->root, NULL, "sodipodi:namedview")) {
276         // if there's none in the document already,
277         Inkscape::XML::Node *r = NULL;
278         Inkscape::XML::Node *rnew = NULL;
279         r = inkscape_get_repr(INKSCAPE, "template.base");
280         // see if there's a template with id="base" in the preferences
281         if (!r) {
282             // if there's none, create an empty element
283             rnew = sp_repr_new("sodipodi:namedview");
284             rnew->setAttribute("id", "base");
285         } else {
286             // otherwise, take from preferences
287             rnew = r->duplicate();
288         }
289         // insert into the document
290         rroot->addChild(rnew, NULL);
291         // clean up
292         Inkscape::GC::release(rnew);
293     }
295     /* Defs */
296     if (!SP_ROOT(document->root)->defs) {
297         Inkscape::XML::Node *r;
298         r = sp_repr_new("svg:defs");
299         rroot->addChild(r, NULL);
300         Inkscape::GC::release(r);
301         g_assert(SP_ROOT(document->root)->defs);
302     }
304     /* Default RDF */
305     rdf_set_defaults( document );
307     if (keepalive) {
308         inkscape_ref();
309     }
311     sp_document_set_undo_sensitive(document, TRUE);
313     // reset undo key when selection changes, so that same-key actions on different objects are not coalesced
314     if (!Inkscape::NSApplication::Application::getNewGui()) {
315         g_signal_connect(G_OBJECT(INKSCAPE), "change_selection",
316                          G_CALLBACK(sp_document_reset_key), document);
317         g_signal_connect(G_OBJECT(INKSCAPE), "activate_desktop",
318                          G_CALLBACK(sp_document_reset_key), document);
319     } else {
320         document->_selection_changed_connection = Inkscape::NSApplication::Editor::connectSelectionChanged (sigc::mem_fun (*document, &SPDocument::reset_key));
321         document->_desktop_activated_connection = Inkscape::NSApplication::Editor::connectDesktopActivated (sigc::mem_fun (*document, &SPDocument::reset_key));
322     }
323     inkscape_add_document(document);
325     return document;
328 /**
329  * Fetches document from URI, or creates new, if NULL; public document
330  * appears in document list.
331  */
332 SPDocument *
333 sp_document_new(gchar const *uri, unsigned int keepalive, bool make_new)
335     SPDocument *doc;
336     Inkscape::XML::Document *rdoc;
337     gchar *base = NULL;
338     gchar *name = NULL;
340     if (uri) {
341         Inkscape::XML::Node *rroot;
342         gchar *s, *p;
343         /* Try to fetch repr from file */
344         rdoc = sp_repr_read_file(uri, SP_SVG_NS_URI);
345         /* If file cannot be loaded, return NULL without warning */
346         if (rdoc == NULL) return NULL;
347         rroot = sp_repr_document_root(rdoc);
348         /* If xml file is not svg, return NULL without warning */
349         /* fixme: destroy document */
350         if (strcmp(rroot->name(), "svg:svg") != 0) return NULL;
351         s = g_strdup(uri);
352         p = strrchr(s, '/');
353         if (p) {
354             name = g_strdup(p + 1);
355             p[1] = '\0';
356             base = g_strdup(s);
357         } else {
358             base = NULL;
359             name = g_strdup(uri);
360         }
361         g_free(s);
362     } else {
363         rdoc = sp_repr_document_new("svg:svg");
364     }
366     if (make_new) {
367         base = NULL;
368         uri = NULL;
369         name = g_strdup_printf(_("New document %d"), ++doc_count);
370     }
372     //# These should be set by now
373     g_assert(name);
375     doc = sp_document_create(rdoc, uri, base, name, keepalive);
377     g_free(base);
378     g_free(name);
380     return doc;
383 SPDocument *
384 sp_document_new_from_mem(gchar const *buffer, gint length, unsigned int keepalive)
386     SPDocument *doc;
387     Inkscape::XML::Document *rdoc;
388     Inkscape::XML::Node *rroot;
389     gchar *name;
391     rdoc = sp_repr_read_mem(buffer, length, SP_SVG_NS_URI);
393     /* If it cannot be loaded, return NULL without warning */
394     if (rdoc == NULL) return NULL;
396     rroot = sp_repr_document_root(rdoc);
397     /* If xml file is not svg, return NULL without warning */
398     /* fixme: destroy document */
399     if (strcmp(rroot->name(), "svg:svg") != 0) return NULL;
401     name = g_strdup_printf(_("Memory document %d"), ++doc_count);
403     doc = sp_document_create(rdoc, NULL, NULL, name, keepalive);
405     return doc;
408 SPDocument *sp_document_new_dummy() {
409     SPDocument *document = new SPDocument();
410     inkscape_add_document(document);
411     return document;
414 SPDocument *
415 sp_document_ref(SPDocument *doc)
417     g_return_val_if_fail(doc != NULL, NULL);
418     Inkscape::GC::anchor(doc);
419     return doc;
422 SPDocument *
423 sp_document_unref(SPDocument *doc)
425     g_return_val_if_fail(doc != NULL, NULL);
426     Inkscape::GC::release(doc);
427     return NULL;
430 gdouble sp_document_width(SPDocument *document)
432     g_return_val_if_fail(document != NULL, 0.0);
433     g_return_val_if_fail(document->priv != NULL, 0.0);
434     g_return_val_if_fail(document->root != NULL, 0.0);
436     return SP_ROOT(document->root)->width.computed;
439 void
440 sp_document_set_width (SPDocument *document, gdouble width, const SPUnit *unit)
442     SPRoot *root = SP_ROOT(document->root);
444     if (root->width.unit == SVGLength::PERCENT && root->viewBox_set) { // set to viewBox=
445         root->viewBox.x1 = root->viewBox.x0 + sp_units_get_pixels (width, *unit);
446     } else { // set to width=
447         root->width.computed = sp_units_get_pixels (width, *unit);
448         /* SVG does not support meters as a unit, so we must translate meters to
449          * cm when writing */
450         if (!strcmp(unit->abbr, "m")) {
451             root->width.value = 100*width;
452             root->width.unit = SVGLength::CM;
453         } else {
454             root->width.value = width;
455             root->width.unit = (SVGLength::Unit) sp_unit_get_svg_unit(unit);
456         }
457     }
459     SP_OBJECT (root)->updateRepr();
462 void sp_document_set_height (SPDocument * document, gdouble height, const SPUnit *unit)
464     SPRoot *root = SP_ROOT(document->root);
466     if (root->height.unit == SVGLength::PERCENT && root->viewBox_set) { // set to viewBox=
467         root->viewBox.y1 = root->viewBox.y0 + sp_units_get_pixels (height, *unit);
468     } else { // set to height=
469         root->height.computed = sp_units_get_pixels (height, *unit);
470         /* SVG does not support meters as a unit, so we must translate meters to
471          * cm when writing */
472         if (!strcmp(unit->abbr, "m")) {
473             root->height.value = 100*height;
474             root->height.unit = SVGLength::CM;
475         } else {
476             root->height.value = height;
477             root->height.unit = (SVGLength::Unit) sp_unit_get_svg_unit(unit);
478         }
479     }
481     SP_OBJECT (root)->updateRepr();
484 gdouble sp_document_height(SPDocument *document)
486     g_return_val_if_fail(document != NULL, 0.0);
487     g_return_val_if_fail(document->priv != NULL, 0.0);
488     g_return_val_if_fail(document->root != NULL, 0.0);
490     return SP_ROOT(document->root)->height.computed;
493 /**
494  * Given an NRRect that may, for example, correspond to the bbox of an object
495  * this function fits the canvas to that rect by resizing the canvas
496  * and translating the document root into position.
497  */
498 void SPDocument::fitToRect(NRRect const & rect)
500     g_return_if_fail(!empty(rect));
501     
502     gdouble w = rect.x1 - rect.x0;
503     gdouble h = rect.y1 - rect.y0;
504     gdouble old_height = sp_document_height(this);
505     SPUnit unit = sp_unit_get_by_id(SP_UNIT_PX);
506     sp_document_set_width(this, w, &unit);
507     sp_document_set_height(this, h, &unit);
509     NR::translate tr = NR::translate::translate(-rect.x0,-(rect.y0 + (h - old_height)));
510     static_cast<SPGroup *>(root)->translateChildItems(tr);
513 void sp_document_set_uri(SPDocument *document, gchar const *uri)
515     g_return_if_fail(document != NULL);
517     if (document->name) {
518         g_free(document->name);
519         document->name = NULL;
520     }
521     if (document->base) {
522         g_free(document->base);
523         document->base = NULL;
524     }
525     if (document->uri) {
526         g_free(document->uri);
527         document->uri = NULL;
528     }
530     if (uri) {
532 #ifndef WIN32
533         prepend_current_dir_if_relative(&(document->uri), uri);
534 #else
535         // FIXME: it may be that prepend_current_dir_if_relative works OK on windows too, test!
536         document->uri = g_strdup(uri);
537 #endif
539         /* fixme: Think, what this means for images (Lauris) */
540         document->base = g_path_get_dirname(document->uri);
541         document->name = g_path_get_basename(document->uri);
543     } else {
544         document->uri = g_strdup_printf(_("Unnamed document %d"), ++doc_count);
545         document->base = NULL;
546         document->name = g_strdup(document->uri);
547     }
549     // Update saveable repr attributes.
550     Inkscape::XML::Node *repr = sp_document_repr_root(document);
551     // changing uri in the document repr must not be not undoable
552     gboolean saved = sp_document_get_undo_sensitive(document);
553     sp_document_set_undo_sensitive(document, FALSE);
554     if (document->base)
555         repr->setAttribute("sodipodi:docbase", document->base);
557     repr->setAttribute("sodipodi:docname", document->name);
558     sp_document_set_undo_sensitive(document, saved);
560     document->priv->uri_set_signal.emit(document->uri);
563 void
564 sp_document_resized_signal_emit(SPDocument *doc, gdouble width, gdouble height)
566     g_return_if_fail(doc != NULL);
568     doc->priv->resized_signal.emit(width, height);
571 sigc::connection SPDocument::connectModified(SPDocument::ModifiedSignal::slot_type slot)
573     return priv->modified_signal.connect(slot);
576 sigc::connection SPDocument::connectURISet(SPDocument::URISetSignal::slot_type slot)
578     return priv->uri_set_signal.connect(slot);
581 sigc::connection SPDocument::connectResized(SPDocument::ResizedSignal::slot_type slot)
583     return priv->resized_signal.connect(slot);
586 sigc::connection
587 SPDocument::connectReconstructionStart(SPDocument::ReconstructionStart::slot_type slot)
589     return priv->_reconstruction_start_signal.connect(slot);
592 void
593 SPDocument::emitReconstructionStart(void)
595     // printf("Starting Reconstruction\n");
596     priv->_reconstruction_start_signal.emit();
597     return;
600 sigc::connection
601 SPDocument::connectReconstructionFinish(SPDocument::ReconstructionFinish::slot_type  slot)
603     return priv->_reconstruction_finish_signal.connect(slot);
606 void
607 SPDocument::emitReconstructionFinish(void)
609     // printf("Finishing Reconstruction\n");
610     priv->_reconstruction_finish_signal.emit();
611     return;
615 void SPDocument::_emitModified() {
616     static guint const flags = SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG | SP_OBJECT_PARENT_MODIFIED_FLAG;
617     root->emitModified(0);
618     priv->modified_signal.emit(flags);
621 void SPDocument::bindObjectToId(gchar const *id, SPObject *object) {
622     GQuark idq = g_quark_from_string(id);
624     if (object) {
625         g_assert(g_hash_table_lookup(priv->iddef, GINT_TO_POINTER(idq)) == NULL);
626         g_hash_table_insert(priv->iddef, GINT_TO_POINTER(idq), object);
627     } else {
628         g_assert(g_hash_table_lookup(priv->iddef, GINT_TO_POINTER(idq)) != NULL);
629         g_hash_table_remove(priv->iddef, GINT_TO_POINTER(idq));
630     }
632     SPDocumentPrivate::IDChangedSignalMap::iterator pos;
634     pos = priv->id_changed_signals.find(idq);
635     if ( pos != priv->id_changed_signals.end() ) {
636         if (!(*pos).second.empty()) {
637             (*pos).second.emit(object);
638         } else { // discard unused signal
639             priv->id_changed_signals.erase(pos);
640         }
641     }
644 void
645 SPDocument::addUndoObserver(Inkscape::UndoStackObserver& observer)
647         this->priv->undoStackObservers.add(observer);
650 void
651 SPDocument::removeUndoObserver(Inkscape::UndoStackObserver& observer)
653         this->priv->undoStackObservers.remove(observer);
656 Inkscape::EventLog&
657 SPDocument::getEventLog() const
659   return priv->event_log;
662 SPObject *SPDocument::getObjectById(gchar const *id) {
663     g_return_val_if_fail(id != NULL, NULL);
665     GQuark idq = g_quark_from_string(id);
666     return (SPObject*)g_hash_table_lookup(priv->iddef, GINT_TO_POINTER(idq));
669 sigc::connection SPDocument::connectIdChanged(gchar const *id,
670                                               SPDocument::IDChangedSignal::slot_type slot)
672     return priv->id_changed_signals[g_quark_from_string(id)].connect(slot);
675 void SPDocument::bindObjectToRepr(Inkscape::XML::Node *repr, SPObject *object) {
676     if (object) {
677         g_assert(g_hash_table_lookup(priv->reprdef, repr) == NULL);
678         g_hash_table_insert(priv->reprdef, repr, object);
679     } else {
680         g_assert(g_hash_table_lookup(priv->reprdef, repr) != NULL);
681         g_hash_table_remove(priv->reprdef, repr);
682     }
685 SPObject *SPDocument::getObjectByRepr(Inkscape::XML::Node *repr) {
686     g_return_val_if_fail(repr != NULL, NULL);
687     return (SPObject*)g_hash_table_lookup(priv->reprdef, repr);
690 Glib::ustring SPDocument::getLanguage() {
691     gchar const *document_language = rdf_get_work_entity(this, rdf_find_entity("language"));
692     if (document_language) {
693         while (isspace(*document_language))
694             document_language++;
695     }
696     if ( !document_language || 0 == *document_language) {
697         // retrieve system language
698         document_language = getenv("LC_ALL");
699         if ( NULL == document_language || *document_language == 0 ) {
700             document_language = getenv ("LC_MESSAGES");
701         }
702         if ( NULL == document_language || *document_language == 0 ) {
703             document_language = getenv ("LANG");
704         }
705         
706         if ( NULL != document_language ) {
707             gchar *pos = strchr(document_language, '_');
708             if ( NULL != pos ) {
709                 return Glib::ustring(document_language, pos - document_language);
710             }
711         }
712     }
714     if ( NULL == document_language )
715         return Glib::ustring();
716     return document_language;
719 /* Object modification root handler */
721 void
722 sp_document_request_modified(SPDocument *doc)
724     if (!doc->modified_id) {
725         doc->modified_id = gtk_idle_add_priority(SP_DOCUMENT_UPDATE_PRIORITY, sp_document_idle_handler, doc);
726     }
729 void
730 sp_document_setup_viewport (SPDocument *doc, SPItemCtx *ctx)
732     ctx->ctx.flags = 0;
733     ctx->i2doc = NR::identity();
734     /* Set up viewport in case svg has it defined as percentages */
735     if (SP_ROOT(doc->root)->viewBox_set) { // if set, take from viewBox
736         ctx->vp.x0 = SP_ROOT(doc->root)->viewBox.x0;
737         ctx->vp.y0 = SP_ROOT(doc->root)->viewBox.y0;
738         ctx->vp.x1 = SP_ROOT(doc->root)->viewBox.x1;
739         ctx->vp.y1 = SP_ROOT(doc->root)->viewBox.y1;
740     } else { // as a last resort, set size to A4
741         ctx->vp.x0 = 0.0;
742         ctx->vp.y0 = 0.0;
743         ctx->vp.x1 = 210 * PX_PER_MM;
744         ctx->vp.y1 = 297 * PX_PER_MM;
745     }
746     ctx->i2vp = NR::identity();
749 gint
750 sp_document_ensure_up_to_date(SPDocument *doc)
752     int lc;
753     lc = 32;
754     while (doc->root->uflags || doc->root->mflags) {
755         lc -= 1;
756         if (lc < 0) {
757             g_warning("More than 32 iterations while updating document '%s'", doc->uri);
758             if (doc->modified_id) {
759                 /* Remove handler */
760                 gtk_idle_remove(doc->modified_id);
761                 doc->modified_id = 0;
762             }
763             return FALSE;
764         }
765         /* Process updates */
766         if (doc->root->uflags) {
767             SPItemCtx ctx;
768             sp_document_setup_viewport (doc, &ctx);
769             doc->root->updateDisplay((SPCtx *)&ctx, 0);
770         }
771         doc->_emitModified();
772     }
773     if (doc->modified_id) {
774         /* Remove handler */
775         gtk_idle_remove(doc->modified_id);
776         doc->modified_id = 0;
777     }
778     return TRUE;
781 static gint
782 sp_document_idle_handler(gpointer data)
784     SPDocument *doc;
785     int repeat;
787     doc = static_cast<SPDocument *>(data);
789 #ifdef SP_DOCUMENT_DEBUG_IDLE
790     g_print("->\n");
791 #endif
793     /* Process updates */
794     if (doc->root->uflags) {
795         SPItemCtx ctx;
796         sp_document_setup_viewport (doc, &ctx);
798         gboolean saved = sp_document_get_undo_sensitive(doc);
799         sp_document_set_undo_sensitive(doc, FALSE);
801         doc->root->updateDisplay((SPCtx *)&ctx, 0);
803         sp_document_set_undo_sensitive(doc, saved);
804         /* if (doc->root->uflags & SP_OBJECT_MODIFIED_FLAG) return TRUE; */
805     }
807     doc->_emitModified();
809     repeat = (doc->root->uflags || doc->root->mflags);
810     if (!repeat) doc->modified_id = 0;
811     return repeat;
814 static bool is_within(NR::Rect const &area, NR::Rect const &box)
816     return area.contains(box);
819 static bool overlaps(NR::Rect const &area, NR::Rect const &box)
821     return area.intersects(box);
824 static GSList *find_items_in_area(GSList *s, SPGroup *group, unsigned int dkey, NR::Rect const &area,
825                                   bool (*test)(NR::Rect const &, NR::Rect const &), bool take_insensitive = false)
827     g_return_val_if_fail(SP_IS_GROUP(group), s);
829     for (SPObject *o = sp_object_first_child(SP_OBJECT(group)) ; o != NULL ; o = SP_OBJECT_NEXT(o) ) {
830         if (!SP_IS_ITEM(o)) {
831             continue;
832         }
833         if (SP_IS_GROUP(o) && SP_GROUP(o)->effectiveLayerMode(dkey) == SPGroup::LAYER ) {
834             s = find_items_in_area(s, SP_GROUP(o), dkey, area, test);
835         } else {
836             SPItem *child = SP_ITEM(o);
837             NR::Rect box = sp_item_bbox_desktop(child);
838             if (test(area, box) && (take_insensitive || child->isVisibleAndUnlocked(dkey))) {
839                 s = g_slist_append(s, child);
840             }
841         }
842     }
844     return s;
847 /**
848 Returns true if an item is among the descendants of group (recursively).
849  */
850 bool item_is_in_group(SPItem *item, SPGroup *group)
852     for (SPObject *o = sp_object_first_child(SP_OBJECT(group)) ; o != NULL ; o = SP_OBJECT_NEXT(o) ) {
853         if (!SP_IS_ITEM(o)) continue;
854         if (SP_ITEM(o) == item)
855             return true;
856         if (SP_IS_GROUP(o))
857             if (item_is_in_group(item, SP_GROUP(o)))
858                 return true;
859     }
860     return false;
863 /**
864 Returns the bottommost item from the list which is at the point, or NULL if none.
865 */
866 SPItem*
867 sp_document_item_from_list_at_point_bottom(unsigned int dkey, SPGroup *group, GSList const *list,
868                                            NR::Point const p, bool take_insensitive)
870     g_return_val_if_fail(group, NULL);
872     gdouble delta = prefs_get_double_attribute ("options.cursortolerance", "value", 1.0);
874     for (SPObject *o = sp_object_first_child(SP_OBJECT(group)) ; o != NULL ; o = SP_OBJECT_NEXT(o) ) {
876         if (!SP_IS_ITEM(o)) continue;
878         SPItem *item = SP_ITEM(o);
879         NRArenaItem *arenaitem = sp_item_get_arenaitem(item, dkey);
880         if (arenaitem && nr_arena_item_invoke_pick(arenaitem, p, delta, 1) != NULL
881             && (take_insensitive || item->isVisibleAndUnlocked(dkey))) {
882             if (g_slist_find((GSList *) list, item) != NULL)
883                 return item;
884         }
886         if (SP_IS_GROUP(o)) {
887             SPItem *found = sp_document_item_from_list_at_point_bottom(dkey, SP_GROUP(o), list, p, take_insensitive);
888             if (found)
889                 return found;
890         }
892     }
893     return NULL;
896 /**
897 Returns the topmost (in z-order) item from the descendants of group (recursively) which
898 is at the point p, or NULL if none. Honors into_groups on whether to recurse into
899 non-layer groups or not. Honors take_insensitive on whether to return insensitive
900 items. If upto != NULL, then if item upto is encountered (at any level), stops searching
901 upwards in z-order and returns what it has found so far (i.e. the found item is
902 guaranteed to be lower than upto).
903  */
904 SPItem*
905 find_item_at_point(unsigned int dkey, SPGroup *group, NR::Point const p, gboolean into_groups, bool take_insensitive = false, SPItem *upto = NULL)
907     SPItem *seen = NULL, *newseen = NULL;
909     gdouble delta = prefs_get_double_attribute ("options.cursortolerance", "value", 1.0);
911     for (SPObject *o = sp_object_first_child(SP_OBJECT(group)) ; o != NULL ; o = SP_OBJECT_NEXT(o) ) {
912         if (!SP_IS_ITEM(o)) continue;
914         if (upto && SP_ITEM(o) == upto)
915             break;
917         if (SP_IS_GROUP(o) && (SP_GROUP(o)->effectiveLayerMode(dkey) == SPGroup::LAYER || into_groups)) {
918             // if nothing found yet, recurse into the group
919             newseen = find_item_at_point(dkey, SP_GROUP(o), p, into_groups, take_insensitive, upto);
920             if (newseen) {
921                 seen = newseen;
922                 newseen = NULL;
923             }
925             if (item_is_in_group(upto, SP_GROUP(o)))
926                 break;
928         } else {
929             SPItem *child = SP_ITEM(o);
930             NRArenaItem *arenaitem = sp_item_get_arenaitem(child, dkey);
932             // seen remembers the last (topmost) of items pickable at this point
933             if (arenaitem && nr_arena_item_invoke_pick(arenaitem, p, delta, 1) != NULL
934                 && (take_insensitive || child->isVisibleAndUnlocked(dkey))) {
935                 seen = child;
936             }
937         }
938     }
939     return seen;
942 /**
943 Returns the topmost non-layer group from the descendants of group which is at point
944 p, or NULL if none. Recurses into layers but not into groups.
945  */
946 SPItem*
947 find_group_at_point(unsigned int dkey, SPGroup *group, NR::Point const p)
949     SPItem *seen = NULL;
951     gdouble delta = prefs_get_double_attribute ("options.cursortolerance", "value", 1.0);
953     for (SPObject *o = sp_object_first_child(SP_OBJECT(group)) ; o != NULL ; o = SP_OBJECT_NEXT(o) ) {
954         if (!SP_IS_ITEM(o)) continue;
955         if (SP_IS_GROUP(o) && SP_GROUP(o)->effectiveLayerMode(dkey) == SPGroup::LAYER) {
956             SPItem *newseen = find_group_at_point(dkey, SP_GROUP(o), p);
957             if (newseen) {
958                 seen = newseen;
959             }
960         }
961         if (SP_IS_GROUP(o) && SP_GROUP(o)->effectiveLayerMode(dkey) != SPGroup::LAYER ) {
962             SPItem *child = SP_ITEM(o);
963             NRArenaItem *arenaitem = sp_item_get_arenaitem(child, dkey);
965             // seen remembers the last (topmost) of groups pickable at this point
966             if (arenaitem && nr_arena_item_invoke_pick(arenaitem, p, delta, 1) != NULL) {
967                 seen = child;
968             }
969         }
970     }
971     return seen;
974 /*
975  * Return list of items, contained in box
976  *
977  * Assumes box is normalized (and g_asserts it!)
978  *
979  */
981 GSList *sp_document_items_in_box(SPDocument *document, unsigned int dkey, NR::Rect const &box)
983     g_return_val_if_fail(document != NULL, NULL);
984     g_return_val_if_fail(document->priv != NULL, NULL);
986     return find_items_in_area(NULL, SP_GROUP(document->root), dkey, box, is_within);
989 /*
990  * Return list of items, that the parts of the item contained in box
991  *
992  * Assumes box is normalized (and g_asserts it!)
993  *
994  */
996 GSList *sp_document_partial_items_in_box(SPDocument *document, unsigned int dkey, NR::Rect const &box)
998     g_return_val_if_fail(document != NULL, NULL);
999     g_return_val_if_fail(document->priv != NULL, NULL);
1001     return find_items_in_area(NULL, SP_GROUP(document->root), dkey, box, overlaps);
1004 SPItem *
1005 sp_document_item_at_point(SPDocument *document, unsigned const key, NR::Point const p,
1006                           gboolean const into_groups, SPItem *upto)
1008     g_return_val_if_fail(document != NULL, NULL);
1009     g_return_val_if_fail(document->priv != NULL, NULL);
1011     return find_item_at_point(key, SP_GROUP(document->root), p, into_groups, false, upto);
1014 SPItem*
1015 sp_document_group_at_point(SPDocument *document, unsigned int key, NR::Point const p)
1017     g_return_val_if_fail(document != NULL, NULL);
1018     g_return_val_if_fail(document->priv != NULL, NULL);
1020     return find_group_at_point(key, SP_GROUP(document->root), p);
1024 /* Resource management */
1026 gboolean
1027 sp_document_add_resource(SPDocument *document, gchar const *key, SPObject *object)
1029     GSList *rlist;
1030     GQuark q = g_quark_from_string(key);
1032     g_return_val_if_fail(document != NULL, FALSE);
1033     g_return_val_if_fail(key != NULL, FALSE);
1034     g_return_val_if_fail(*key != '\0', FALSE);
1035     g_return_val_if_fail(object != NULL, FALSE);
1036     g_return_val_if_fail(SP_IS_OBJECT(object), FALSE);
1038     if (SP_OBJECT_IS_CLONED(object))
1039         return FALSE;
1041     rlist = (GSList*)g_hash_table_lookup(document->priv->resources, key);
1042     g_return_val_if_fail(!g_slist_find(rlist, object), FALSE);
1043     rlist = g_slist_prepend(rlist, object);
1044     g_hash_table_insert(document->priv->resources, (gpointer) key, rlist);
1046     document->priv->resources_changed_signals[q].emit();
1048     return TRUE;
1051 gboolean
1052 sp_document_remove_resource(SPDocument *document, gchar const *key, SPObject *object)
1054     GSList *rlist;
1055     GQuark q = g_quark_from_string(key);
1057     g_return_val_if_fail(document != NULL, FALSE);
1058     g_return_val_if_fail(key != NULL, FALSE);
1059     g_return_val_if_fail(*key != '\0', FALSE);
1060     g_return_val_if_fail(object != NULL, FALSE);
1061     g_return_val_if_fail(SP_IS_OBJECT(object), FALSE);
1063     if (SP_OBJECT_IS_CLONED(object))
1064         return FALSE;
1066     rlist = (GSList*)g_hash_table_lookup(document->priv->resources, key);
1067     g_return_val_if_fail(rlist != NULL, FALSE);
1068     g_return_val_if_fail(g_slist_find(rlist, object), FALSE);
1069     rlist = g_slist_remove(rlist, object);
1070     g_hash_table_insert(document->priv->resources, (gpointer) key, rlist);
1072     document->priv->resources_changed_signals[q].emit();
1074     return TRUE;
1077 GSList const *
1078 sp_document_get_resource_list(SPDocument *document, gchar const *key)
1080     g_return_val_if_fail(document != NULL, NULL);
1081     g_return_val_if_fail(key != NULL, NULL);
1082     g_return_val_if_fail(*key != '\0', NULL);
1084     return (GSList*)g_hash_table_lookup(document->priv->resources, key);
1087 sigc::connection sp_document_resources_changed_connect(SPDocument *document,
1088                                                        gchar const *key,
1089                                                        SPDocument::ResourcesChangedSignal::slot_type slot)
1091     GQuark q = g_quark_from_string(key);
1092     return document->priv->resources_changed_signals[q].connect(slot);
1095 /* Helpers */
1097 gboolean
1098 sp_document_resource_list_free(gpointer key, gpointer value, gpointer data)
1100     g_slist_free((GSList *) value);
1101     return TRUE;
1104 unsigned int
1105 count_objects_recursive(SPObject *obj, unsigned int count)
1107     count++; // obj itself
1109     for (SPObject *i = sp_object_first_child(obj); i != NULL; i = SP_OBJECT_NEXT(i)) {
1110         count = count_objects_recursive(i, count);
1111     }
1113     return count;
1116 unsigned int
1117 objects_in_document(SPDocument *document)
1119     return count_objects_recursive(SP_DOCUMENT_ROOT(document), 0);
1122 void
1123 vacuum_document_recursive(SPObject *obj)
1125     if (SP_IS_DEFS(obj)) {
1126         for (SPObject *def = obj->firstChild(); def; def = SP_OBJECT_NEXT(def)) {
1127             /* fixme: some inkscape-internal nodes in the future might not be collectable */
1128             def->requestOrphanCollection();
1129         }
1130     } else {
1131         for (SPObject *i = sp_object_first_child(obj); i != NULL; i = SP_OBJECT_NEXT(i)) {
1132             vacuum_document_recursive(i);
1133         }
1134     }
1137 unsigned int
1138 vacuum_document(SPDocument *document)
1140     unsigned int start = objects_in_document(document);
1141     unsigned int end;
1142     unsigned int newend = start;
1144     unsigned int iterations = 0;
1146     do {
1147         end = newend;
1149         vacuum_document_recursive(SP_DOCUMENT_ROOT(document));
1150         document->collectOrphans();
1151         iterations++;
1153         newend = objects_in_document(document);
1155     } while (iterations < 100 && newend < end);
1157     return start - newend;
1161 /*
1162   Local Variables:
1163   mode:c++
1164   c-file-style:"stroustrup"
1165   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
1166   indent-tabs-mode:nil
1167   fill-column:99
1168   End:
1169 */
1170 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :