Code

When selecting 'none', the marker wasn't getting removed from the line.
[inkscape.git] / src / selection-chemistry.cpp
1 #define __SP_SELECTION_CHEMISTRY_C__
3 /*
4  * Miscellanous operations on selected items
5  *
6  * Authors:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   Frank Felfe <innerspace@iname.com>
9  *   MenTaLguY <mental@rydia.net>
10  *   bulia byak <buliabyak@users.sf.net>
11  *   Andrius R. <knutux@gmail.com>
12  *
13  * Copyright (C) 1999-2006 authors
14  * Copyright (C) 2001-2002 Ximian, Inc.
15  *
16  * Released under GNU GPL, read the file 'COPYING' for more information
17  */
19 #ifdef HAVE_CONFIG_H
20 # include "config.h"
21 #endif
23 #include <gtkmm/clipboard.h>
25 #include "svg/svg.h"
26 #include "inkscape.h"
27 #include "desktop.h"
28 #include "desktop-style.h"
29 #include "selection.h"
30 #include "tools-switch.h"
31 #include "desktop-handles.h"
32 #include "message-stack.h"
33 #include "sp-item-transform.h"
34 #include "marker.h"
35 #include "sp-use.h"
36 #include "sp-textpath.h"
37 #include "sp-tspan.h"
38 #include "sp-flowtext.h"
39 #include "sp-flowregion.h"
40 #include "text-editing.h"
41 #include "text-context.h"
42 #include "connector-context.h"
43 #include "sp-path.h"
44 #include "sp-conn-end.h"
45 #include "dropper-context.h"
46 #include <glibmm/i18n.h>
47 #include "libnr/nr-matrix-rotate-ops.h"
48 #include "libnr/nr-matrix-translate-ops.h"
49 #include "libnr/nr-rotate-fns.h"
50 #include "libnr/nr-scale-ops.h"
51 #include "libnr/nr-scale-translate-ops.h"
52 #include "libnr/nr-translate-matrix-ops.h"
53 #include "libnr/nr-translate-scale-ops.h"
54 #include "xml/repr.h"
55 #include "style.h"
56 #include "document-private.h"
57 #include "sp-gradient.h"
58 #include "sp-gradient-reference.h"
59 #include "sp-linear-gradient-fns.h"
60 #include "sp-pattern.h"
61 #include "sp-radial-gradient-fns.h"
62 #include "sp-namedview.h"
63 #include "prefs-utils.h"
64 #include "sp-offset.h"
65 #include "sp-clippath.h"
66 #include "sp-mask.h"
67 #include "file.h"
68 #include "helper/png-write.h"
69 #include "layer-fns.h"
70 #include "context-fns.h"
71 #include <map>
72 #include "helper/units.h"
73 #include "sp-item.h"
74 #include "unit-constants.h"
75 using NR::X;
76 using NR::Y;
78 #include "selection-chemistry.h"
80 /* fixme: find a better place */
81 GSList *clipboard = NULL;
82 GSList *defs_clipboard = NULL;
83 SPCSSAttr *style_clipboard = NULL;
84 NR::Rect size_clipboard(NR::Point(0,0), NR::Point(0,0));
86 static void sp_copy_stuff_used_by_item(GSList **defs_clip, SPItem *item, const GSList *items);
88 /**
89  * Copies repr and its inherited css style elements, along with the accumulated transform 'full_t',
90  * then prepends the copy to 'clip'.
91  */
92 void sp_selection_copy_one (Inkscape::XML::Node *repr, NR::Matrix full_t, GSList **clip)
93 {
94     Inkscape::XML::Node *copy = repr->duplicate();
96     // copy complete inherited style
97     SPCSSAttr *css = sp_repr_css_attr_inherited(repr, "style");
98     sp_repr_css_set(copy, css, "style");
99     sp_repr_css_attr_unref(css);
101     // write the complete accumulated transform passed to us
102     // (we're dealing with unattached repr, so we write to its attr 
103     // instead of using sp_item_set_transform)
104     gchar affinestr[80];
105     if (sp_svg_transform_write(affinestr, 79, full_t)) {
106         copy->setAttribute("transform", affinestr);
107     } else {
108         copy->setAttribute("transform", NULL);
109     }
111     *clip = g_slist_prepend(*clip, copy);
114 void sp_selection_copy_impl (const GSList *items, GSList **clip, GSList **defs_clip, SPCSSAttr **style_clip)
117     // Copy stuff referenced by all items to defs_clip:
118     if (defs_clip) {
119         for (GSList *i = (GSList *) items; i != NULL; i = i->next) {
120             sp_copy_stuff_used_by_item (defs_clip, SP_ITEM (i->data), items);
121         }
122         *defs_clip = g_slist_reverse(*defs_clip);
123     }
125     // Store style:
126     if (style_clip) {
127         SPItem *item = SP_ITEM (items->data); // take from the first selected item
128         *style_clip = take_style_from_item (item);
129     }
131     if (clip) {
132         // Sort items:
133         GSList *sorted_items = g_slist_copy ((GSList *) items);
134         sorted_items = g_slist_sort((GSList *) sorted_items, (GCompareFunc) sp_object_compare_position);
136         // Copy item reprs:
137         for (GSList *i = (GSList *) sorted_items; i != NULL; i = i->next) {
138             sp_selection_copy_one (SP_OBJECT_REPR (i->data), sp_item_i2doc_affine(SP_ITEM (i->data)), clip);
139         }
141         *clip = g_slist_reverse(*clip);
142         g_slist_free ((GSList *) sorted_items);
143     }
146 /**
147  * Add gradients/patterns/markers referenced by copied objects to defs.
148  * Iterates through 'defs_clip', and for each item it adds the data
149  * repr into the global defs.
150  */
151 void
152 paste_defs (GSList **defs_clip, SPDocument *doc)
154     if (!defs_clip)
155         return;
157     for (GSList *gl = *defs_clip; gl != NULL; gl = gl->next) {
158         SPDefs *defs= (SPDefs *) SP_DOCUMENT_DEFS(doc);
159         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) gl->data;
160         gchar const *id = repr->attribute("id");
161         if (!id || !doc->getObjectById(id)) {
162             Inkscape::XML::Node *copy = repr->duplicate();
163             SP_OBJECT_REPR(defs)->addChild(copy, NULL);
164             Inkscape::GC::release(copy);
165         }
166     }
169 GSList *sp_selection_paste_impl (SPDocument *document, SPObject *parent, GSList **clip, GSList **defs_clip)
171     paste_defs (defs_clip, document);
173     GSList *copied = NULL;
174     // add objects to document
175     for (GSList *l = *clip; l != NULL; l = l->next) {
176         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
177         Inkscape::XML::Node *copy = repr->duplicate();
179         // premultiply the item transform by the accumulated parent transform in the paste layer
180         NR::Matrix local = sp_item_i2doc_affine(SP_ITEM(parent));
181         if (!local.test_identity()) {
182             gchar const *t_str = copy->attribute("transform");
183             NR::Matrix item_t (NR::identity());
184             if (t_str)
185                 sp_svg_transform_read(t_str, &item_t);
186             item_t *= local.inverse();
187             // (we're dealing with unattached repr, so we write to its attr instead of using sp_item_set_transform)
188             gchar affinestr[80];
189             if (sp_svg_transform_write(affinestr, 79, item_t)) {
190                 copy->setAttribute("transform", affinestr);
191             } else {
192                 copy->setAttribute("transform", NULL);
193             }
194         }
196         parent->appendChildRepr(copy);
197         copied = g_slist_prepend(copied, copy);
198         Inkscape::GC::release(copy);
199     }
200     return copied;
203 void sp_selection_delete_impl(const GSList *items)
205     for (const GSList *i = items ; i ; i = i->next ) {
206         sp_object_ref((SPObject *)i->data, NULL);
207     }
208     for (const GSList *i = items; i != NULL; i = i->next) {
209         SPItem *item = (SPItem *) i->data;
210         SP_OBJECT(item)->deleteObject();
211         sp_object_unref((SPObject *)item, NULL);
212     }
216 void sp_selection_delete()
218     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
219     if (desktop == NULL) {
220         return;
221     }
223     if (tools_isactive (desktop, TOOLS_TEXT))
224         if (sp_text_delete_selection(desktop->event_context)) {
225             sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_TEXT,
226                              _("Delete text"));
227             return;
228         }
230     Inkscape::Selection *selection = sp_desktop_selection(desktop);
232     // check if something is selected
233     if (selection->isEmpty()) {
234         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("<b>Nothing</b> was deleted."));
235         return;
236     }
238     const GSList *selected = g_slist_copy(const_cast<GSList *>(selection->itemList()));
239     selection->clear();
240     sp_selection_delete_impl (selected);
241     g_slist_free ((GSList *) selected);
243     /* a tool may have set up private information in it's selection context
244      * that depends on desktop items.  I think the only sane way to deal with
245      * this currently is to reset the current tool, which will reset it's
246      * associated selection context.  For example: deleting an object
247      * while moving it around the canvas.
248      */
249     tools_switch ( desktop, tools_active ( desktop ) );
251     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DELETE, 
252                      _("Delete"));
255 /* fixme: sequencing */
256 void sp_selection_duplicate()
258     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
259     if (desktop == NULL)
260         return;
262     Inkscape::Selection *selection = sp_desktop_selection(desktop);
264     // check if something is selected
265     if (selection->isEmpty()) {
266         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to duplicate."));
267         return;
268     }
270     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
272     selection->clear();
274     // sorting items from different parents sorts each parent's subset without possibly mixing them, just what we need
275     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
277     GSList *newsel = NULL;
279     while (reprs) {
280         Inkscape::XML::Node *parent = ((Inkscape::XML::Node *) reprs->data)->parent();
281         Inkscape::XML::Node *copy = ((Inkscape::XML::Node *) reprs->data)->duplicate();
283         parent->appendChild(copy);
285         newsel = g_slist_prepend(newsel, copy);
286         reprs = g_slist_remove(reprs, reprs->data);
287         Inkscape::GC::release(copy);
288     }
290     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DUPLICATE, 
291                      _("Duplicate"));
293     selection->setReprList(newsel);
295     g_slist_free(newsel);
298 void sp_edit_clear_all()
300     SPDesktop *dt = SP_ACTIVE_DESKTOP;
301     if (!dt)
302         return;
304     SPDocument *doc = sp_desktop_document(dt);
305     sp_desktop_selection(dt)->clear();
307     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
308     GSList *items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
310     while (items) {
311         SP_OBJECT (items->data)->deleteObject();
312         items = g_slist_remove(items, items->data);
313     }
315     sp_document_done(doc, SP_VERB_EDIT_CLEAR_ALL,
316                      _("Delete all"));
319 GSList *
320 get_all_items (GSList *list, SPObject *from, SPDesktop *desktop, bool onlyvisible, bool onlysensitive, const GSList *exclude)
322     for (SPObject *child = sp_object_first_child(SP_OBJECT(from)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
323         if (SP_IS_ITEM(child) &&
324             !desktop->isLayer(SP_ITEM(child)) &&
325             (!onlysensitive || !SP_ITEM(child)->isLocked()) &&
326             (!onlyvisible || !desktop->itemIsHidden(SP_ITEM(child))) &&
327             (!exclude || !g_slist_find ((GSList *) exclude, child))
328             )
329         {
330             list = g_slist_prepend (list, SP_ITEM(child));
331         }
333         if (SP_IS_ITEM(child) && desktop->isLayer(SP_ITEM(child))) {
334             list = get_all_items (list, child, desktop, onlyvisible, onlysensitive, exclude);
335         }
336     }
338     return list;
341 void sp_edit_select_all_full (bool force_all_layers, bool invert)
343     SPDesktop *dt = SP_ACTIVE_DESKTOP;
344     if (!dt)
345         return;
347     Inkscape::Selection *selection = sp_desktop_selection(dt);
349     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
351     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs_get_int_attribute ("options.kbselection", "inlayer", PREFS_SELECTION_LAYER);
352     bool onlyvisible = prefs_get_int_attribute ("options.kbselection", "onlyvisible", 1);
353     bool onlysensitive = prefs_get_int_attribute ("options.kbselection", "onlysensitive", 1);
355     GSList *items = NULL;
357     const GSList *exclude = NULL;
358     if (invert) {
359         exclude = selection->itemList();
360     }
362     if (force_all_layers)
363         inlayer = PREFS_SELECTION_ALL;
365     switch (inlayer) {
366         case PREFS_SELECTION_LAYER: {
367         if ( (onlysensitive && SP_ITEM(dt->currentLayer())->isLocked()) ||
368              (onlyvisible && dt->itemIsHidden(SP_ITEM(dt->currentLayer()))) )
369         return;
371         GSList *all_items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
373         for (GSList *i = all_items; i; i = i->next) {
374             SPItem *item = SP_ITEM (i->data);
376             if (item && (!onlysensitive || !item->isLocked())) {
377                 if (!onlyvisible || !dt->itemIsHidden(item)) {
378                     if (!dt->isLayer(item)) {
379                         if (!invert || !g_slist_find ((GSList *) exclude, item)) {
380                             items = g_slist_prepend (items, item); // leave it in the list
381                         }
382                     }
383                 }
384             }
385         }
387         g_slist_free (all_items);
388             break;
389         }
390         case PREFS_SELECTION_LAYER_RECURSIVE: {
391             items = get_all_items (NULL, dt->currentLayer(), dt, onlyvisible, onlysensitive, exclude);
392             break;
393         }
394         default: {
395         items = get_all_items (NULL, dt->currentRoot(), dt, onlyvisible, onlysensitive, exclude);
396             break;
397     }
398     }
400     selection->setList (items);
402     if (items) {
403         g_slist_free (items);
404     }
407 void sp_edit_select_all ()
409     sp_edit_select_all_full (false, false);
412 void sp_edit_select_all_in_all_layers ()
414     sp_edit_select_all_full (true, false);
417 void sp_edit_invert ()
419     sp_edit_select_all_full (false, true);
422 void sp_edit_invert_in_all_layers ()
424     sp_edit_select_all_full (true, true);
427 void sp_selection_group()
429     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
430     if (desktop == NULL)
431         return;
433     SPDocument *document = sp_desktop_document (desktop);
434     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(document);
436     Inkscape::Selection *selection = sp_desktop_selection(desktop);
438     // Check if something is selected.
439     if (selection->isEmpty()) {
440         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>some objects</b> to group."));
441         return;
442     }
444     GSList const *l = (GSList *) selection->reprList();
446     GSList *p = g_slist_copy((GSList *) l);
448     selection->clear();
450     p = g_slist_sort(p, (GCompareFunc) sp_repr_compare_position);
452     // Remember the position and parent of the topmost object.
453     gint topmost = ((Inkscape::XML::Node *) g_slist_last(p)->data)->position();
454     Inkscape::XML::Node *topmost_parent = ((Inkscape::XML::Node *) g_slist_last(p)->data)->parent();
456     Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
458     while (p) {
459         Inkscape::XML::Node *current = (Inkscape::XML::Node *) p->data;
461         if (current->parent() == topmost_parent) {
462             Inkscape::XML::Node *spnew = current->duplicate();
463             sp_repr_unparent(current);
464             group->appendChild(spnew);
465             Inkscape::GC::release(spnew);
466             topmost --; // only reduce count for those items deleted from topmost_parent
467         } else { // move it to topmost_parent first
468                 GSList *temp_clip = NULL;
470                 // At this point, current may already have no item, due to its being a clone whose original is already moved away
471                 // So we copy it artificially calculating the transform from its repr->attr("transform") and the parent transform
472                 gchar const *t_str = current->attribute("transform");
473                 NR::Matrix item_t (NR::identity());
474                 if (t_str)
475                     sp_svg_transform_read(t_str, &item_t);
476                 item_t *= sp_item_i2doc_affine(SP_ITEM(document->getObjectByRepr(current->parent())));
477                 //FIXME: when moving both clone and original from a transformed group (either by
478                 //grouping into another parent, or by cut/paste) the transform from the original's
479                 //parent becomes embedded into original itself, and this affects its clones. Fix
480                 //this by remembering the transform diffs we write to each item into an array and
481                 //then, if this is clone, looking up its original in that array and pre-multiplying
482                 //it by the inverse of that original's transform diff.
484                 sp_selection_copy_one (current, item_t, &temp_clip);
485                 sp_repr_unparent(current);
487                 // paste into topmost_parent (temporarily)
488                 GSList *copied = sp_selection_paste_impl (document, document->getObjectByRepr(topmost_parent), &temp_clip, NULL);
489                 if (temp_clip) g_slist_free (temp_clip);
490                 if (copied) { // if success,
491                     // take pasted object (now in topmost_parent)
492                     Inkscape::XML::Node *in_topmost = (Inkscape::XML::Node *) copied->data;
493                     // make a copy
494                     Inkscape::XML::Node *spnew = in_topmost->duplicate();
495                     // remove pasted
496                     sp_repr_unparent(in_topmost);
497                     // put its copy into group
498                     group->appendChild(spnew);
499                     Inkscape::GC::release(spnew);
500                     g_slist_free (copied);
501                 }
502         }
503         p = g_slist_remove(p, current);
504     }
506     // Add the new group to the topmost members' parent
507     topmost_parent->appendChild(group);
509     // Move to the position of the topmost, reduced by the number of items deleted from topmost_parent
510     group->setPosition(topmost + 1);
512     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_GROUP, 
513                      _("Group"));
515     selection->set(group);
516     Inkscape::GC::release(group);
519 void sp_selection_ungroup()
521     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
522     if (desktop == NULL)
523         return;
525     Inkscape::Selection *selection = sp_desktop_selection(desktop);
527     if (selection->isEmpty()) {
528         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>group</b> to ungroup."));
529         return;
530     }
532     GSList *items = g_slist_copy((GSList *) selection->itemList());
533     selection->clear();
535     // Get a copy of current selection.
536     GSList *new_select = NULL;
537     bool ungrouped = false;
538     for (GSList *i = items;
539          i != NULL;
540          i = i->next)
541     {
542         SPItem *group = (SPItem *) i->data;
544         // when ungrouping cloned groups with their originals, some objects that were selected may no more exist due to unlinking
545         if (!SP_IS_OBJECT(group)) {
546             continue;
547         }
549         /* We do not allow ungrouping <svg> etc. (lauris) */
550         if (strcmp(SP_OBJECT_REPR(group)->name(), "svg:g") && strcmp(SP_OBJECT_REPR(group)->name(), "svg:switch")) {
551             // keep the non-group item in the new selection
552             selection->add(group);
553             continue;
554         }
556         GSList *children = NULL;
557         /* This is not strictly required, but is nicer to rely on group ::destroy (lauris) */
558         sp_item_group_ungroup(SP_GROUP(group), &children, false);
559         ungrouped = true;
560         // Add ungrouped items to the new selection.
561         new_select = g_slist_concat(new_select, children);
562     }
564     if (new_select) { // Set new selection.
565         selection->addList(new_select);
566         g_slist_free(new_select);
567     }
568     if (!ungrouped) {
569         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No groups</b> to ungroup in the selection."));
570     }
572     g_slist_free(items);
574     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_UNGROUP, 
575                      _("Ungroup"));
578 static SPGroup *
579 sp_item_list_common_parent_group(const GSList *items)
581     if (!items) {
582         return NULL;
583     }
584     SPObject *parent = SP_OBJECT_PARENT(items->data);
585     /* Strictly speaking this CAN happen, if user selects <svg> from XML editor */
586     if (!SP_IS_GROUP(parent)) {
587         return NULL;
588     }
589     for (items = items->next; items; items = items->next) {
590         if (SP_OBJECT_PARENT(items->data) != parent) {
591             return NULL;
592         }
593     }
595     return SP_GROUP(parent);
598 /** Finds out the minimum common bbox of the selected items
599  */
600 NR::Rect
601 enclose_items(const GSList *items)
603     g_assert(items != NULL);
605     NR::Rect r = sp_item_bbox_desktop((SPItem *) items->data);
607     for (GSList *i = items->next; i; i = i->next) {
608         r = NR::Rect::union_bounds(r, sp_item_bbox_desktop((SPItem *) i->data));
609     }
611     return r;
614 SPObject *
615 prev_sibling(SPObject *child)
617     SPObject *parent = SP_OBJECT_PARENT(child);
618     if (!SP_IS_GROUP(parent)) {
619         return NULL;
620     }
621     for ( SPObject *i = sp_object_first_child(parent) ; i; i = SP_OBJECT_NEXT(i) ) {
622         if (i->next == child)
623             return i;
624     }
625     return NULL;
628 void
629 sp_selection_raise()
631     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
632     if (!desktop)
633         return;
635     Inkscape::Selection *selection = sp_desktop_selection(desktop);
637     GSList const *items = (GSList *) selection->itemList();
638     if (!items) {
639         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise."));
640         return;
641     }
643     SPGroup const *group = sp_item_list_common_parent_group(items);
644     if (!group) {
645         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
646         return;
647     }
649     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
651     /* construct reverse-ordered list of selected children */
652     GSList *rev = g_slist_copy((GSList *) items);
653     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
655     // find out the common bbox of the selected items
656     NR::Rect selected = enclose_items(items);
658     // for all objects in the selection (starting from top)
659     while (rev) {
660         SPObject *child = SP_OBJECT(rev->data);
661         // for each selected object, find the next sibling
662         for (SPObject *newref = child->next; newref; newref = newref->next) {
663             // if the sibling is an item AND overlaps our selection,
664             if (SP_IS_ITEM(newref) && selected.intersects(sp_item_bbox_desktop(SP_ITEM(newref)))) {
665                 // AND if it's not one of our selected objects,
666                 if (!g_slist_find((GSList *) items, newref)) {
667                     // move the selected object after that sibling
668                     grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(newref));
669                 }
670                 break;
671             }
672         }
673         rev = g_slist_remove(rev, child);
674     }
676     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_RAISE,
677                      _("Raise"));
680 void sp_selection_raise_to_top()
682     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
683     if (desktop == NULL)
684         return;
686     SPDocument *document = sp_desktop_document(desktop);
687     Inkscape::Selection *selection = sp_desktop_selection(desktop);
689     if (selection->isEmpty()) {
690         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise to top."));
691         return;
692     }
694     GSList const *items = (GSList *) selection->itemList();
696     SPGroup const *group = sp_item_list_common_parent_group(items);
697     if (!group) {
698         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
699         return;
700     }
702     GSList *rl = g_slist_copy((GSList *) selection->reprList());
703     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
705     for (GSList *l = rl; l != NULL; l = l->next) {
706         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
707         repr->setPosition(-1);
708     }
710     g_slist_free(rl);
712     sp_document_done(document, SP_VERB_SELECTION_TO_FRONT, 
713                      _("Raise to top"));
716 void
717 sp_selection_lower()
719     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
720     if (desktop == NULL)
721         return;
723     Inkscape::Selection *selection = sp_desktop_selection(desktop);
725     GSList const *items = (GSList *) selection->itemList();
726     if (!items) {
727         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower."));
728         return;
729     }
731     SPGroup const *group = sp_item_list_common_parent_group(items);
732     if (!group) {
733         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
734         return;
735     }
737     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
739     // find out the common bbox of the selected items
740     NR::Rect selected = enclose_items(items);
742     /* construct direct-ordered list of selected children */
743     GSList *rev = g_slist_copy((GSList *) items);
744     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
745     rev = g_slist_reverse(rev);
747     // for all objects in the selection (starting from top)
748     while (rev) {
749         SPObject *child = SP_OBJECT(rev->data);
750         // for each selected object, find the prev sibling
751         for (SPObject *newref = prev_sibling(child); newref; newref = prev_sibling(newref)) {
752             // if the sibling is an item AND overlaps our selection,
753             if (SP_IS_ITEM(newref) && selected.intersects(sp_item_bbox_desktop(SP_ITEM(newref)))) {
754                 // AND if it's not one of our selected objects,
755                 if (!g_slist_find((GSList *) items, newref)) {
756                     // move the selected object before that sibling
757                     SPObject *put_after = prev_sibling(newref);
758                     if (put_after)
759                         grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(put_after));
760                     else
761                         SP_OBJECT_REPR(child)->setPosition(0);
762                 }
763                 break;
764             }
765         }
766         rev = g_slist_remove(rev, child);
767     }
769     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_LOWER, 
770                      _("Lower"));
774 void sp_selection_lower_to_bottom()
776     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
777     if (desktop == NULL)
778         return;
780     SPDocument *document = sp_desktop_document(desktop);
781     Inkscape::Selection *selection = sp_desktop_selection(desktop);
783     if (selection->isEmpty()) {
784         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower to bottom."));
785         return;
786     }
788     GSList const *items = (GSList *) selection->itemList();
790     SPGroup const *group = sp_item_list_common_parent_group(items);
791     if (!group) {
792         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
793         return;
794     }
796     GSList *rl;
797     rl = g_slist_copy((GSList *) selection->reprList());
798     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
799     rl = g_slist_reverse(rl);
801     for (GSList *l = rl; l != NULL; l = l->next) {
802         gint minpos;
803         SPObject *pp, *pc;
804         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
805         pp = document->getObjectByRepr(sp_repr_parent(repr));
806         minpos = 0;
807         g_assert(SP_IS_GROUP(pp));
808         pc = sp_object_first_child(pp);
809         while (!SP_IS_ITEM(pc)) {
810             minpos += 1;
811             pc = pc->next;
812         }
813         repr->setPosition(minpos);
814     }
816     g_slist_free(rl);
818     sp_document_done(document, SP_VERB_SELECTION_TO_BACK, 
819                      _("Lower to bottom"));
822 void
823 sp_undo(SPDesktop *desktop, SPDocument *)
825         if (!sp_document_undo(sp_desktop_document(desktop)))
826             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to undo."));
829 void
830 sp_redo(SPDesktop *desktop, SPDocument *)
832         if (!sp_document_redo(sp_desktop_document(desktop)))
833             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to redo."));
836 void sp_selection_cut()
838     sp_selection_copy();
839     sp_selection_delete();
842 void sp_copy_gradient (GSList **defs_clip, SPGradient *gradient)
844     SPGradient *ref = gradient;
846     while (ref) {
847         // climb up the refs, copying each one in the chain
848         Inkscape::XML::Node *grad_repr = SP_OBJECT_REPR(ref)->duplicate();
849         *defs_clip = g_slist_prepend (*defs_clip, grad_repr);
851         ref = ref->ref->getObject();
852     }
855 void sp_copy_pattern (GSList **defs_clip, SPPattern *pattern)
857     SPPattern *ref = pattern;
859     while (ref) {
860         // climb up the refs, copying each one in the chain
861         Inkscape::XML::Node *pattern_repr = SP_OBJECT_REPR(ref)->duplicate();
862         *defs_clip = g_slist_prepend (*defs_clip, pattern_repr);
864         // items in the pattern may also use gradients and other patterns, so we need to recurse here as well
865         for (SPObject *child = sp_object_first_child(SP_OBJECT(ref)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
866             if (!SP_IS_ITEM (child))
867                 continue;
868             sp_copy_stuff_used_by_item (defs_clip, (SPItem *) child, NULL);
869         }
871         ref = ref->ref->getObject();
872     }
875 void sp_copy_single (GSList **defs_clip, SPObject *thing)
877     Inkscape::XML::Node *duplicate_repr = SP_OBJECT_REPR(thing)->duplicate();
878     *defs_clip = g_slist_prepend (*defs_clip, duplicate_repr);
882 void sp_copy_textpath_path (GSList **defs_clip, SPTextPath *tp, const GSList *items)
884     SPItem *path = sp_textpath_get_path_item (tp);
885     if (!path)
886         return;
887     if (items && g_slist_find ((GSList *) items, path)) // do not copy it to defs if it is already in the list of items copied
888         return;
889     Inkscape::XML::Node *repr = SP_OBJECT_REPR(path)->duplicate();
890     *defs_clip = g_slist_prepend (*defs_clip, repr);
893 /**
894  * Copies things like patterns, markers, gradients, etc.
895  */
896 void sp_copy_stuff_used_by_item (GSList **defs_clip, SPItem *item, const GSList *items)
898     SPStyle *style = SP_OBJECT_STYLE (item);
900     if (style && (style->fill.type == SP_PAINT_TYPE_PAINTSERVER)) {
901         SPObject *server = SP_OBJECT_STYLE_FILL_SERVER(item);
902         if (SP_IS_LINEARGRADIENT (server) || SP_IS_RADIALGRADIENT (server))
903             sp_copy_gradient (defs_clip, SP_GRADIENT(server));
904         if (SP_IS_PATTERN (server))
905             sp_copy_pattern (defs_clip, SP_PATTERN(server));
906     }
908     if (style && (style->stroke.type == SP_PAINT_TYPE_PAINTSERVER)) {
909         SPObject *server = SP_OBJECT_STYLE_STROKE_SERVER(item);
910         if (SP_IS_LINEARGRADIENT (server) || SP_IS_RADIALGRADIENT (server))
911             sp_copy_gradient (defs_clip, SP_GRADIENT(server));
912         if (SP_IS_PATTERN (server))
913             sp_copy_pattern (defs_clip, SP_PATTERN(server));
914     }
916     // For shapes, copy all of the shape's markers into defs_clip
917     if (SP_IS_SHAPE (item)) {
918         SPShape *shape = SP_SHAPE (item);
919         for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
920             if (shape->marker[i]) {
921                 sp_copy_single (defs_clip, SP_OBJECT (shape->marker[i]));
922             }
923         }
924     }
926     if (SP_IS_TEXT_TEXTPATH (item)) {
927         sp_copy_textpath_path (defs_clip, SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item))), items);
928     }
930     if (item->clip_ref->getObject()) {
931         sp_copy_single (defs_clip, item->clip_ref->getObject());
932     }
934     if (item->mask_ref->getObject()) {
935         SPObject *mask = item->mask_ref->getObject();
936         sp_copy_single (defs_clip, mask);
937         // recurse into the mask for its gradients etc.
938         for (SPObject *o = SP_OBJECT(mask)->children; o != NULL; o = o->next) {
939             if (SP_IS_ITEM(o))
940                 sp_copy_stuff_used_by_item (defs_clip, SP_ITEM (o), items);
941         }
942     }
944     if (style->filter.filter) {
945         SPObject *filter = style->filter.filter;
946         if (SP_IS_FILTER(filter)) {
947             sp_copy_single (defs_clip, filter);
948         }
949     }
951     // recurse
952     for (SPObject *o = SP_OBJECT(item)->children; o != NULL; o = o->next) {
953         if (SP_IS_ITEM(o))
954             sp_copy_stuff_used_by_item (defs_clip, SP_ITEM (o), items);
955     }
958 /**
959  * \pre item != NULL
960  */
961 SPCSSAttr *
962 take_style_from_item (SPItem *item)
964     // write the complete cascaded style, context-free
965     SPCSSAttr *css = sp_css_attr_from_object (SP_OBJECT(item), SP_STYLE_FLAG_ALWAYS);
966     if (css == NULL)
967         return NULL;
969     if ((SP_IS_GROUP(item) && SP_OBJECT(item)->children) ||
970         (SP_IS_TEXT (item) && SP_OBJECT(item)->children && SP_OBJECT(item)->children->next == NULL)) {
971         // if this is a text with exactly one tspan child, merge the style of that tspan as well
972         // If this is a group, merge the style of its topmost (last) child with style
973         for (SPObject *last_element = item->lastChild(); last_element != NULL; last_element = SP_OBJECT_PREV (last_element)) {
974             if (SP_OBJECT_STYLE (last_element) != NULL) {
975                 SPCSSAttr *temp = sp_css_attr_from_object (last_element, SP_STYLE_FLAG_IFSET);
976                 if (temp) {
977                     sp_repr_css_merge (css, temp);
978                     sp_repr_css_attr_unref (temp);
979                 }
980                 break;
981             }
982         }
983     }
984     if (!(SP_IS_TEXT (item) || SP_IS_TSPAN (item) || SP_IS_STRING (item))) {
985         // do not copy text properties from non-text objects, it's confusing
986         css = sp_css_attr_unset_text (css);
987     }
989     // FIXME: also transform gradient/pattern fills, by forking? NO, this must be nondestructive
990     double ex = NR::expansion(sp_item_i2doc_affine(item));
991     if (ex != 1.0) {
992         css = sp_css_attr_scale (css, ex);
993     }
995     return css;
999 void sp_selection_copy()
1001     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1002     if (desktop == NULL)
1003         return;
1005     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1007     if (tools_isactive (desktop, TOOLS_DROPPER)) {
1008         sp_dropper_context_copy(desktop->event_context);
1009         return; // copied color under cursor, nothing else to do
1010     }
1012     // check if something is selected
1013     if (selection->isEmpty()) {
1014         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing was copied."));
1015         return;
1016     }
1018     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1020     // 0. Copy text to system clipboard
1021     // FIXME: for non-texts, put serialized XML as text to the clipboard;
1022     //for this sp_repr_write_stream needs to be rewritten with iostream instead of FILE
1023     Glib::ustring text;
1024     if (tools_isactive (desktop, TOOLS_TEXT)) {
1025         text = sp_text_get_selected_text(desktop->event_context);
1026     }
1028     if (text.empty()) {
1029         guint texts = 0;
1030         for (GSList *i = (GSList *) items; i; i = i->next) {
1031             SPItem *item = SP_ITEM (i->data);
1032             if (SP_IS_TEXT (item) || SP_IS_FLOWTEXT(item)) {
1033                 if (texts > 0) // if more than one text object is copied, separate them by spaces
1034                     text += " ";
1035                 gchar *this_text = sp_te_get_string_multiline (item);
1036                 if (this_text) {
1037                     text += this_text;
1038                     g_free(this_text);
1039                 }
1040                 texts++;
1041             }
1042         }
1043     }
1044     if (!text.empty()) {
1045         Glib::RefPtr<Gtk::Clipboard> refClipboard = Gtk::Clipboard::get();
1046         refClipboard->set_text(text);
1047     }
1049     // clear old defs clipboard
1050     while (defs_clipboard) {
1051         Inkscape::GC::release((Inkscape::XML::Node *) defs_clipboard->data);
1052         defs_clipboard = g_slist_remove (defs_clipboard, defs_clipboard->data);
1053     }
1055     // clear style clipboard
1056     if (style_clipboard) {
1057         sp_repr_css_attr_unref (style_clipboard);
1058         style_clipboard = NULL;
1059     }
1061     //clear main clipboard
1062     while (clipboard) {
1063         Inkscape::GC::release((Inkscape::XML::Node *) clipboard->data);
1064         clipboard = g_slist_remove(clipboard, clipboard->data);
1065     }
1067     sp_selection_copy_impl (items, &clipboard, &defs_clipboard, &style_clipboard);
1069     if (tools_isactive (desktop, TOOLS_TEXT)) { // take style from cursor/text selection, overwriting the style just set by copy_impl
1070         SPStyle *const query = sp_style_new();
1071         if (sp_desktop_query_style_all (desktop, query)) {
1072             SPCSSAttr *css = sp_css_attr_from_style (query, SP_STYLE_FLAG_ALWAYS);
1073             if (css != NULL) {
1074                 // clear style clipboard
1075                 if (style_clipboard) {
1076                     sp_repr_css_attr_unref (style_clipboard);
1077                     style_clipboard = NULL;
1078                 }
1079                 //sp_repr_css_print (css);
1080                 style_clipboard = css;
1081             }
1082         }
1083         g_free (query);
1084     }
1086     size_clipboard = selection->bounds();
1088     g_slist_free ((GSList *) items);
1091 void sp_selection_paste(bool in_place)
1093     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1095     if (desktop == NULL) {
1096         return;
1097     }
1099     SPDocument *document = sp_desktop_document(desktop);
1101     if (Inkscape::have_viable_layer(desktop, desktop->messageStack()) == false) {
1102         return;
1103     }
1105     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1107     if (tools_isactive (desktop, TOOLS_TEXT)) {
1108         if (sp_text_paste_inline(desktop->event_context))
1109             return; // pasted from system clipboard into text, nothing else to do
1110     }
1112     // check if something is in the clipboard
1113     if (clipboard == NULL) {
1114         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1115         return;
1116     }
1118     GSList *copied = sp_selection_paste_impl(document, desktop->currentLayer(), &clipboard, &defs_clipboard);
1119     // add pasted objects to selection
1120     selection->setReprList((GSList const *) copied);
1121     g_slist_free (copied);
1123     if (!in_place) {
1124         sp_document_ensure_up_to_date(document);
1126         NR::Point m( desktop->point() - selection->bounds().midpoint() );
1128         /* Snap the offset of the new item(s) to the grid */
1129         /* FIXME: this gridsnap fiddling is a hack. */
1130         Inkscape::GridSnapper &s = desktop->namedview->snap_manager.grid;
1131         gdouble const curr_gridsnap = s.getDistance();
1132         s.setDistance(NR_HUGE);
1133         m = s.freeSnap(Inkscape::Snapper::SNAP_POINT, m, NULL).getPoint();
1134         s.setDistance(curr_gridsnap);
1135         sp_selection_move_relative(selection, m);
1136     }
1138     sp_document_done(document, SP_VERB_EDIT_PASTE, 
1139                      _("Paste"));
1142 void sp_selection_paste_style()
1144     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1145     if (desktop == NULL) return;
1147     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1149     // check if something is in the clipboard
1150     if (clipboard == NULL) {
1151         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1152         return;
1153     }
1155     // check if something is selected
1156     if (selection->isEmpty()) {
1157         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste style to."));
1158         return;
1159     }
1161     paste_defs (&defs_clipboard, sp_desktop_document(desktop));
1163     sp_desktop_set_style (desktop, style_clipboard);
1165     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_STYLE,
1166                      _("Paste style"));
1169 void sp_selection_paste_size (bool apply_x, bool apply_y)
1171     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1172     if (desktop == NULL) return;
1174     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1176     // check if something is in the clipboard
1177     if (size_clipboard.extent(NR::X) < 1e-6 || size_clipboard.extent(NR::Y) < 1e-6) {
1178         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1179         return;
1180     }
1182     // check if something is selected
1183     if (selection->isEmpty()) {
1184         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste size to."));
1185         return;
1186     }
1188     NR::Rect current = selection->bounds();
1189     if (current.extent(NR::X) < 1e-6 || current.extent(NR::Y) < 1e-6) {
1190         return;
1191     }
1193     double scale_x = size_clipboard.extent(NR::X) / current.extent(NR::X);
1194     double scale_y = size_clipboard.extent(NR::Y) / current.extent(NR::Y);
1196     sp_selection_scale_relative (selection, current.midpoint(), 
1197                                  NR::scale(
1198                                      apply_x? scale_x : (desktop->isToolboxButtonActive ("lock")? scale_y : 1.0),
1199                                      apply_y? scale_y : (desktop->isToolboxButtonActive ("lock")? scale_x : 1.0)));
1201     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_SIZE,
1202                      _("Paste size"));
1205 void sp_selection_paste_size_separately (bool apply_x, bool apply_y)
1207     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1208     if (desktop == NULL) return;
1210     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1212     // check if something is in the clipboard
1213     if (size_clipboard.extent(NR::X) < 1e-6 || size_clipboard.extent(NR::Y) < 1e-6) {
1214         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1215         return;
1216     }
1218     // check if something is selected
1219     if (selection->isEmpty()) {
1220         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste size to."));
1221         return;
1222     }
1224     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1225         SPItem *item = SP_ITEM(l->data);
1227         NR::Rect current = sp_item_bbox_desktop(item);
1228         if (current.extent(NR::X) < 1e-6 || current.extent(NR::Y) < 1e-6) {
1229             continue;
1230         }
1232         double scale_x = size_clipboard.extent(NR::X) / current.extent(NR::X);
1233         double scale_y = size_clipboard.extent(NR::Y) / current.extent(NR::Y);
1235         sp_item_scale_rel (item,
1236                                  NR::scale(
1237                                      apply_x? scale_x : (desktop->isToolboxButtonActive ("lock")? scale_y : 1.0),
1238                                      apply_y? scale_y : (desktop->isToolboxButtonActive ("lock")? scale_x : 1.0)));
1240     }
1242     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_SIZE_SEPARATELY,
1243                      _("Paste size separately"));
1246 void sp_selection_to_next_layer ()
1248     SPDesktop *dt = SP_ACTIVE_DESKTOP;
1250     Inkscape::Selection *selection = sp_desktop_selection(dt);
1252     // check if something is selected
1253     if (selection->isEmpty()) {
1254         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer above."));
1255         return;
1256     }
1258     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1260     bool no_more = false; // Set to true, if no more layers above
1261     SPObject *next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer());
1262     if (next) {
1263         GSList *temp_clip = NULL;
1264         sp_selection_copy_impl (items, &temp_clip, NULL, NULL); // we're in the same doc, so no need to copy defs
1265         sp_selection_delete_impl (items);
1266         next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1267         GSList *copied;
1268         if(next) {
1269             copied = sp_selection_paste_impl (sp_desktop_document (dt), next, &temp_clip, NULL);
1270         } else {
1271             copied = sp_selection_paste_impl (sp_desktop_document (dt), dt->currentLayer(), &temp_clip, NULL);
1272             no_more = true;
1273         }
1274         selection->setReprList((GSList const *) copied);
1275         g_slist_free (copied);
1276         if (temp_clip) g_slist_free (temp_clip);
1277         if (next) dt->setCurrentLayer(next);
1278         sp_document_done(sp_desktop_document (dt), SP_VERB_LAYER_MOVE_TO_NEXT, 
1279                          _("Raise to next layer"));
1280     } else {
1281         no_more = true;
1282     }
1284     if (no_more) {
1285         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers above."));
1286     }
1288     g_slist_free ((GSList *) items);
1291 void sp_selection_to_prev_layer ()
1293     SPDesktop *dt = SP_ACTIVE_DESKTOP;
1295     Inkscape::Selection *selection = sp_desktop_selection(dt);
1297     // check if something is selected
1298     if (selection->isEmpty()) {
1299         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer below."));
1300         return;
1301     }
1303     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1305     bool no_more = false; // Set to true, if no more layers below
1306     SPObject *next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer());
1307     if (next) {
1308         GSList *temp_clip = NULL;
1309         sp_selection_copy_impl (items, &temp_clip, NULL, NULL); // we're in the same doc, so no need to copy defs
1310         sp_selection_delete_impl (items);
1311         next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1312         GSList *copied;
1313         if(next) {
1314             copied = sp_selection_paste_impl (sp_desktop_document (dt), next, &temp_clip, NULL);
1315         } else {
1316             copied = sp_selection_paste_impl (sp_desktop_document (dt), dt->currentLayer(), &temp_clip, NULL);
1317             no_more = true;
1318         }
1319         selection->setReprList((GSList const *) copied);
1320         g_slist_free (copied);
1321         if (temp_clip) g_slist_free (temp_clip);
1322         if (next) dt->setCurrentLayer(next);
1323         sp_document_done(sp_desktop_document (dt), SP_VERB_LAYER_MOVE_TO_PREV,
1324                          _("Lower to previous layer"));
1325     } else {
1326         no_more = true;
1327     }
1329     if (no_more) {
1330         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers below."));
1331     }
1333     g_slist_free ((GSList *) items);
1336 /** Apply matrix to the selection.  \a set_i2d is normally true, which means objects are in the
1337 original transform, synced with their reprs, and need to jump to the new transform in one go. A
1338 value of set_i2d==false is only used by seltrans when it's dragging objects live (not outlines); in
1339 that case, items are already in the new position, but the repr is in the old, and this function
1340 then simply updates the repr from item->transform.
1341  */
1342 void sp_selection_apply_affine(Inkscape::Selection *selection, NR::Matrix const &affine, bool set_i2d)
1344     if (selection->isEmpty())
1345         return;
1347     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1348         SPItem *item = SP_ITEM(l->data);
1350         NR::Point old_center(0,0);
1351         if (set_i2d && item->isCenterSet())
1352             old_center = item->getCenter();
1354 #if 0 /* Re-enable this once persistent guides have a graphical indication.
1355          At the time of writing, this is the only place to re-enable. */
1356         sp_item_update_cns(*item, selection->desktop());
1357 #endif
1359         // we're moving both a clone and its original?
1360         bool transform_clone_with_original = (SP_IS_USE(item) && selection->includes( sp_use_get_original (SP_USE(item)) ));
1361         // ...both a text-on-path and its path?
1362         bool transform_textpath_with_path = (SP_IS_TEXT_TEXTPATH(item) && selection->includes( sp_textpath_get_path_item (SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item)))) ));
1363         // ...both a flowtext and its frame?
1364         bool transform_flowtext_with_frame = (SP_IS_FLOWTEXT(item) && selection->includes( SP_FLOWTEXT(item)->get_frame (NULL))); // (only the first frame is checked so far)
1365         // ...both an offset and its source?
1366         bool transform_offset_with_source = (SP_IS_OFFSET(item) && SP_OFFSET (item)->sourceHref) && selection->includes( sp_offset_get_source (SP_OFFSET(item)) );
1367        
1368         // If we're moving a connector, we want to detach it
1369         // from shapes that aren't part of the selection, but
1370         // leave it attached if they are
1371         if (cc_item_is_connector(item)) {
1372             SPItem *attItem[2];
1373             SP_PATH(item)->connEndPair.getAttachedItems(attItem);
1374             
1375             for (int n = 0; n < 2; ++n) {
1376                 if (!selection->includes(attItem[n])) {
1377                     sp_conn_end_detach(item, n);
1378                 }
1379             }
1380         }
1381         
1382         // "clones are unmoved when original is moved" preference
1383         int compensation = prefs_get_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
1384         bool prefs_unmoved = (compensation == SP_CLONE_COMPENSATION_UNMOVED);
1385         bool prefs_parallel = (compensation == SP_CLONE_COMPENSATION_PARALLEL);
1387         // If this is a clone and it's selected along with its original, do not move it; it will feel the
1388         // transform of its original and respond to it itself. Without this, a clone is doubly
1389         // transformed, very unintuitive.
1390       // Same for textpath if we are also doing ANY transform to its path: do not touch textpath,
1391       // letters cannot be squeezed or rotated anyway, they only refill the changed path.
1392       // Same for linked offset if we are also moving its source: do not move it.
1393         if (transform_textpath_with_path || transform_offset_with_source) {
1394                 // restore item->transform field from the repr, in case it was changed by seltrans
1395             sp_object_read_attr (SP_OBJECT (item), "transform");
1397         } else if (transform_flowtext_with_frame) {
1398             // apply the inverse of the region's transform to the <use> so that the flow remains
1399             // the same (even though the output itself gets transformed)
1400             for (SPObject *region = item->firstChild() ; region ; region = SP_OBJECT_NEXT(region)) {
1401                 if (!SP_IS_FLOWREGION(region) && !SP_IS_FLOWREGIONEXCLUDE(region))
1402                     continue;
1403                 for (SPObject *use = region->firstChild() ; use ; use = SP_OBJECT_NEXT(use)) {
1404                     if (!SP_IS_USE(use)) continue;
1405                     sp_item_write_transform(SP_USE(use), SP_OBJECT_REPR(use), item->transform.inverse(), NULL);
1406                 }
1407             }
1408         } else if (transform_clone_with_original) {
1409             // We are transforming a clone along with its original. The below matrix juggling is
1410             // necessary to ensure that they transform as a whole, i.e. the clone's induced
1411             // transform and its move compensation are both cancelled out.
1413             // restore item->transform field from the repr, in case it was changed by seltrans
1414             sp_object_read_attr (SP_OBJECT (item), "transform");
1416             // calculate the matrix we need to apply to the clone to cancel its induced transform from its original
1417             NR::Matrix parent_transform = sp_item_i2root_affine(SP_ITEM(SP_OBJECT_PARENT (item)));
1418             NR::Matrix t = parent_transform * matrix_to_desktop (matrix_from_desktop (affine, item), item) * parent_transform.inverse();
1419             NR::Matrix t_inv =parent_transform * matrix_to_desktop (matrix_from_desktop (affine.inverse(), item), item) * parent_transform.inverse();
1420             NR::Matrix result = t_inv * item->transform * t;
1422             if ((prefs_parallel || prefs_unmoved) && affine.is_translation()) {
1423                 // we need to cancel out the move compensation, too
1425                 // find out the clone move, same as in sp_use_move_compensate
1426                 NR::Matrix parent = sp_use_get_parent_transform (SP_USE(item));
1427                 NR::Matrix clone_move = parent.inverse() * t * parent;
1429                 if (prefs_parallel) {
1430                     NR::Matrix move = result * clone_move * t_inv;
1431                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &move);
1433                 } else if (prefs_unmoved) {
1434                     //if (SP_IS_USE(sp_use_get_original(SP_USE(item))))
1435                     //    clone_move = NR::identity();
1436                     NR::Matrix move = result * clone_move;
1437                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &t);
1438                 }
1440             } else {
1441                 // just apply the result
1442                 sp_item_write_transform(item, SP_OBJECT_REPR(item), result, &t);
1443             }
1445         } else {
1446             if (set_i2d) {
1447                 sp_item_set_i2d_affine(item, sp_item_i2d_affine(item) * affine);
1448             }
1449             sp_item_write_transform(item, SP_OBJECT_REPR(item), item->transform, NULL);
1450         }
1452         // if we're moving the actual object, not just updating the repr, we can transform the
1453         // center by the same matrix (only necessary for non-translations)
1454         if (set_i2d && item->isCenterSet() && !affine.is_translation()) {
1455             item->setCenter(old_center * affine);
1456             SP_OBJECT(item)->updateRepr();
1457         }
1458     }
1461 void sp_selection_remove_transform()
1463     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1464     if (desktop == NULL)
1465         return;
1467     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1469     GSList const *l = (GSList *) selection->reprList();
1470     while (l != NULL) {
1471         sp_repr_set_attr((Inkscape::XML::Node*)l->data, "transform", NULL);
1472         l = l->next;
1473     }
1475     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_FLATTEN, 
1476                      _("Remove transform"));
1479 void
1480 sp_selection_scale_absolute(Inkscape::Selection *selection,
1481                             double const x0, double const x1,
1482                             double const y0, double const y1)
1484     if (selection->isEmpty())
1485         return;
1487     NR::Rect const bbox(selection->bounds());
1488     if (bbox.isEmpty()) {
1489         return;
1490     }
1492     NR::translate const p2o(-bbox.min());
1494     NR::scale const newSize(x1 - x0,
1495                             y1 - y0);
1496     NR::scale const scale( newSize / NR::scale(bbox.dimensions()) );
1497     NR::translate const o2n(x0, y0);
1498     NR::Matrix const final( p2o * scale * o2n );
1500     sp_selection_apply_affine(selection, final);
1504 void sp_selection_scale_relative(Inkscape::Selection *selection, NR::Point const &align, NR::scale const &scale)
1506     if (selection->isEmpty())
1507         return;
1509     NR::Rect const bbox(selection->bounds());
1511     if (bbox.isEmpty()) {
1512         return;
1513     }
1515     // FIXME: ARBITRARY LIMIT: don't try to scale above 1 Mpx, it won't display properly and will crash sooner or later anyway
1516     if ( bbox.extent(NR::X) * scale[NR::X] > 1e6  ||
1517          bbox.extent(NR::Y) * scale[NR::Y] > 1e6 )
1518     {
1519         return;
1520     }
1522     NR::translate const n2d(-align);
1523     NR::translate const d2n(align);
1524     NR::Matrix const final( n2d * scale * d2n );
1525     sp_selection_apply_affine(selection, final);
1528 void
1529 sp_selection_rotate_relative(Inkscape::Selection *selection, NR::Point const &center, gdouble const angle_degrees)
1531     NR::translate const d2n(center);
1532     NR::translate const n2d(-center);
1533     NR::rotate const rotate(rotate_degrees(angle_degrees));
1534     NR::Matrix const final( NR::Matrix(n2d) * rotate * d2n );
1535     sp_selection_apply_affine(selection, final);
1538 void
1539 sp_selection_skew_relative(Inkscape::Selection *selection, NR::Point const &align, double dx, double dy)
1541     NR::translate const d2n(align);
1542     NR::translate const n2d(-align);
1543     NR::Matrix const skew(1, dy,
1544                           dx, 1,
1545                           0, 0);
1546     NR::Matrix const final( n2d * skew * d2n );
1547     sp_selection_apply_affine(selection, final);
1550 void sp_selection_move_relative(Inkscape::Selection *selection, NR::Point const &move)
1552     sp_selection_apply_affine(selection, NR::Matrix(NR::translate(move)));
1555 void sp_selection_move_relative(Inkscape::Selection *selection, double dx, double dy)
1557     sp_selection_apply_affine(selection, NR::Matrix(NR::translate(dx, dy)));
1561 /**
1562  * \brief sp_selection_rotate_90
1563  *
1564  * This function rotates selected objects 90 degrees clockwise.
1565  *
1566  */
1568 void sp_selection_rotate_90_cw()
1570     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1572     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1574     if (selection->isEmpty())
1575         return;
1577     GSList const *l = selection->itemList();
1578     NR::rotate const rot_neg_90(NR::Point(0, -1));
1579     for (GSList const *l2 = l ; l2 != NULL ; l2 = l2->next) {
1580         SPItem *item = SP_ITEM(l2->data);
1581         sp_item_rotate_rel(item, rot_neg_90);
1582     }
1584     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_ROTATE_90_CCW, 
1585                      _("Rotate 90&#176; CW"));
1589 /**
1590  * \brief sp_selection_rotate_90_ccw
1591  *
1592  * This function rotates selected objects 90 degrees counter-clockwise.
1593  *
1594  */
1596 void sp_selection_rotate_90_ccw()
1598     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1600     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1602     if (selection->isEmpty())
1603         return;
1605     GSList const *l = selection->itemList();
1606     NR::rotate const rot_neg_90(NR::Point(0, 1));
1607     for (GSList const *l2 = l ; l2 != NULL ; l2 = l2->next) {
1608         SPItem *item = SP_ITEM(l2->data);
1609         sp_item_rotate_rel(item, rot_neg_90);
1610     }
1612     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_ROTATE_90_CW,
1613                      _("Rotate 90&#176; CCW"));
1616 void
1617 sp_selection_rotate(Inkscape::Selection *selection, gdouble const angle_degrees)
1619     if (selection->isEmpty())
1620         return;
1622     NR::Point center = selection->center();
1624     sp_selection_rotate_relative(selection, center, angle_degrees);
1626     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1627                            ( ( angle_degrees > 0 )
1628                              ? "selector:rotate:ccw"
1629                              : "selector:rotate:cw" ), 
1630                            SP_VERB_CONTEXT_SELECT, 
1631                            _("Rotate"));
1634 /**
1635 \param  angle   the angle in "angular pixels", i.e. how many visible pixels must move the outermost point of the rotated object
1636 */
1637 void
1638 sp_selection_rotate_screen(Inkscape::Selection *selection, gdouble angle)
1640     if (selection->isEmpty())
1641         return;
1643     NR::Rect const bbox(selection->bounds());
1645     NR::Point center = selection->center();
1647     gdouble const zoom = selection->desktop()->current_zoom();
1648     gdouble const zmove = angle / zoom;
1649     gdouble const r = NR::L2(bbox.max() - center);
1651     gdouble const zangle = 180 * atan2(zmove, r) / M_PI;
1653     sp_selection_rotate_relative(selection, center, zangle);
1655     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1656                            ( (angle > 0)
1657                              ? "selector:rotate:ccw"
1658                              : "selector:rotate:cw" ),
1659                            SP_VERB_CONTEXT_SELECT, 
1660                            _("Rotate by pixels"));
1663 void
1664 sp_selection_scale(Inkscape::Selection *selection, gdouble grow)
1666     if (selection->isEmpty())
1667         return;
1669     NR::Rect const bbox(selection->bounds());
1670     NR::Point const center(bbox.midpoint());
1671     double const max_len = bbox.maxExtent();
1673     // you can't scale "do nizhe pola" (below zero)
1674     if ( max_len + grow <= 1e-3 ) {
1675         return;
1676     }
1678     double const times = 1.0 + grow / max_len;
1679     sp_selection_scale_relative(selection, center, NR::scale(times, times));
1681     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1682                            ( (grow > 0)
1683                              ? "selector:scale:larger"
1684                              : "selector:scale:smaller" ),
1685                            SP_VERB_CONTEXT_SELECT,
1686                            _("Scale"));
1689 void
1690 sp_selection_scale_screen(Inkscape::Selection *selection, gdouble grow_pixels)
1692     sp_selection_scale(selection,
1693                        grow_pixels / selection->desktop()->current_zoom());
1696 void
1697 sp_selection_scale_times(Inkscape::Selection *selection, gdouble times)
1699     if (selection->isEmpty())
1700         return;
1702     NR::Point const center(selection->bounds().midpoint());
1703     sp_selection_scale_relative(selection, center, NR::scale(times, times));
1704     sp_document_done(sp_desktop_document(selection->desktop()), SP_VERB_CONTEXT_SELECT, 
1705                      _("Scale by whole factor"));
1708 void
1709 sp_selection_move(gdouble dx, gdouble dy)
1711     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1712     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1713     if (selection->isEmpty()) {
1714         return;
1715     }
1717     sp_selection_move_relative(selection, dx, dy);
1719     if (dx == 0) {
1720         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT, 
1721                                _("Move vertically"));
1722     } else if (dy == 0) {
1723         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT, 
1724                                _("Move horizontally"));
1725     } else {
1726         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT, 
1727                          _("Move"));
1728     }
1731 void
1732 sp_selection_move_screen(gdouble dx, gdouble dy)
1734     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1736     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1737     if (selection->isEmpty()) {
1738         return;
1739     }
1741     // same as sp_selection_move but divide deltas by zoom factor
1742     gdouble const zoom = desktop->current_zoom();
1743     gdouble const zdx = dx / zoom;
1744     gdouble const zdy = dy / zoom;
1745     sp_selection_move_relative(selection, zdx, zdy);
1747     if (dx == 0) {
1748         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT, 
1749                                _("Move vertically by pixels"));
1750     } else if (dy == 0) {
1751         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT, 
1752                                _("Move horizontally by pixels"));
1753     } else {
1754         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT, 
1755                          _("Move"));
1756     }
1759 namespace {
1761 template <typename D>
1762 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1763                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1765 template <typename D>
1766 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items, SPObject *root,
1767                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1769 struct Forward {
1770     typedef SPObject *Iterator;
1772     static Iterator children(SPObject *o) { return sp_object_first_child(o); }
1773     static Iterator siblings_after(SPObject *o) { return SP_OBJECT_NEXT(o); }
1774     static void dispose(Iterator i) {}
1776     static SPObject *object(Iterator i) { return i; }
1777     static Iterator next(Iterator i) { return SP_OBJECT_NEXT(i); }
1778 };
1780 struct Reverse {
1781     typedef GSList *Iterator;
1783     static Iterator children(SPObject *o) {
1784         return make_list(o->firstChild(), NULL);
1785     }
1786     static Iterator siblings_after(SPObject *o) {
1787         return make_list(SP_OBJECT_PARENT(o)->firstChild(), o);
1788     }
1789     static void dispose(Iterator i) {
1790         g_slist_free(i);
1791     }
1793     static SPObject *object(Iterator i) {
1794         return reinterpret_cast<SPObject *>(i->data);
1795     }
1796     static Iterator next(Iterator i) { return i->next; }
1798 private:
1799     static GSList *make_list(SPObject *object, SPObject *limit) {
1800         GSList *list=NULL;
1801         while ( object != limit ) {
1802             list = g_slist_prepend(list, object);
1803             object = SP_OBJECT_NEXT(object);
1804         }
1805         return list;
1806     }
1807 };
1811 void
1812 sp_selection_item_next(void)
1814     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1815     g_return_if_fail(desktop != NULL);
1816     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1818     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs_get_int_attribute ("options.kbselection", "inlayer", PREFS_SELECTION_LAYER);
1819     bool onlyvisible = prefs_get_int_attribute ("options.kbselection", "onlyvisible", 1);
1820     bool onlysensitive = prefs_get_int_attribute ("options.kbselection", "onlysensitive", 1);
1822     SPObject *root;
1823     if (PREFS_SELECTION_ALL != inlayer) {
1824         root = selection->activeContext();
1825     } else {
1826         root = desktop->currentRoot();
1827     }
1829     SPItem *item=next_item_from_list<Forward>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1831     if (item) {
1832         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1833         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1834             scroll_to_show_item(desktop, item);
1835         }
1836     }
1839 void
1840 sp_selection_item_prev(void)
1842     SPDocument *document = SP_ACTIVE_DOCUMENT;
1843     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1844     g_return_if_fail(document != NULL);
1845     g_return_if_fail(desktop != NULL);
1846     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1848     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs_get_int_attribute ("options.kbselection", "inlayer", PREFS_SELECTION_LAYER);
1849     bool onlyvisible = prefs_get_int_attribute ("options.kbselection", "onlyvisible", 1);
1850     bool onlysensitive = prefs_get_int_attribute ("options.kbselection", "onlysensitive", 1);
1852     SPObject *root;
1853     if (PREFS_SELECTION_ALL != inlayer) {
1854         root = selection->activeContext();
1855     } else {
1856         root = desktop->currentRoot();
1857     }
1859     SPItem *item=next_item_from_list<Reverse>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1861     if (item) {
1862         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1863         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1864             scroll_to_show_item(desktop, item);
1865         }
1866     }
1869 namespace {
1871 template <typename D>
1872 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items,
1873                             SPObject *root, bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1875     SPObject *current=root;
1876     while (items) {
1877         SPItem *item=SP_ITEM(items->data);
1878         if ( root->isAncestorOf(item) &&
1879              ( !only_in_viewport || desktop->isWithinViewport(item) ) )
1880         {
1881             current = item;
1882             break;
1883         }
1884         items = items->next;
1885     }
1887     GSList *path=NULL;
1888     while ( current != root ) {
1889         path = g_slist_prepend(path, current);
1890         current = SP_OBJECT_PARENT(current);
1891     }
1893     SPItem *next;
1894     // first, try from the current object
1895     next = next_item<D>(desktop, path, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1896     g_slist_free(path);
1898     if (!next) { // if we ran out of objects, start over at the root
1899         next = next_item<D>(desktop, NULL, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1900     }
1902     return next;
1905 template <typename D>
1906 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1907                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1909     typename D::Iterator children;
1910     typename D::Iterator iter;
1912     SPItem *found=NULL;
1914     if (path) {
1915         SPObject *object=reinterpret_cast<SPObject *>(path->data);
1916         g_assert(SP_OBJECT_PARENT(object) == root);
1917         if (desktop->isLayer(object)) {
1918             found = next_item<D>(desktop, path->next, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1919         }
1920         iter = children = D::siblings_after(object);
1921     } else {
1922         iter = children = D::children(root);
1923     }
1925     while ( iter && !found ) {
1926         SPObject *object=D::object(iter);
1927         if (desktop->isLayer(object)) {
1928             if (PREFS_SELECTION_LAYER != inlayer) { // recurse into sublayers
1929                 found = next_item<D>(desktop, NULL, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1930             }
1931         } else if ( SP_IS_ITEM(object) &&
1932                     ( !only_in_viewport || desktop->isWithinViewport(SP_ITEM(object)) ) &&
1933                     ( !onlyvisible || !desktop->itemIsHidden(SP_ITEM(object))) &&
1934                     ( !onlysensitive || !SP_ITEM(object)->isLocked()) &&
1935                     !desktop->isLayer(SP_ITEM(object)) )
1936         {
1937             found = SP_ITEM(object);
1938         }
1939         iter = D::next(iter);
1940     }
1942     D::dispose(children);
1944     return found;
1949 /**
1950  * If \a item is not entirely visible then adjust visible area to centre on the centre on of
1951  * \a item.
1952  */
1953 void scroll_to_show_item(SPDesktop *desktop, SPItem *item)
1955     NR::Rect dbox = desktop->get_display_area();
1956     NR::Rect sbox = sp_item_bbox_desktop(item);
1958     if (dbox.contains(sbox) == false) {
1959         NR::Point const s_dt = sbox.midpoint();
1960         NR::Point const s_w = desktop->d2w(s_dt);
1961         NR::Point const d_dt = dbox.midpoint();
1962         NR::Point const d_w = desktop->d2w(d_dt);
1963         NR::Point const moved_w( d_w - s_w );
1964         gint const dx = (gint) moved_w[X];
1965         gint const dy = (gint) moved_w[Y];
1966         desktop->scroll_world(dx, dy);
1967     }
1971 void
1972 sp_selection_clone()
1974     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1975     if (desktop == NULL)
1976         return;
1978     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1980     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(desktop->doc());
1982     // check if something is selected
1983     if (selection->isEmpty()) {
1984         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object</b> to clone."));
1985         return;
1986     }
1988     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
1989   
1990     selection->clear();
1991   
1992     // sorting items from different parents sorts each parent's subset without possibly mixing them, just what we need
1993     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
1995     GSList *newsel = NULL;
1996  
1997     while (reprs) {
1998         Inkscape::XML::Node *sel_repr = (Inkscape::XML::Node *) reprs->data;
1999         Inkscape::XML::Node *parent = sp_repr_parent(sel_repr);
2001         Inkscape::XML::Node *clone = xml_doc->createElement("svg:use");
2002         sp_repr_set_attr(clone, "x", "0");
2003         sp_repr_set_attr(clone, "y", "0");
2004         sp_repr_set_attr(clone, "xlink:href", g_strdup_printf("#%s", sel_repr->attribute("id")));
2006         sp_repr_set_attr(clone, "inkscape:transform-center-x", sel_repr->attribute("inkscape:transform-center-x"));
2007         sp_repr_set_attr(clone, "inkscape:transform-center-y", sel_repr->attribute("inkscape:transform-center-y"));
2008         
2009         // add the new clone to the top of the original's parent
2010         parent->appendChild(clone);
2012         newsel = g_slist_prepend(newsel, clone);
2013         reprs = g_slist_remove(reprs, sel_repr);
2014         Inkscape::GC::release(clone);
2015     }
2016     
2017     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_CLONE, 
2018                      _("Clone"));
2020     selection->setReprList(newsel);
2021  
2022     g_slist_free(newsel);
2025 void
2026 sp_selection_unlink()
2028     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2029     if (!desktop)
2030         return;
2032     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2034     if (selection->isEmpty()) {
2035         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>clone</b> to unlink."));
2036         return;
2037     }
2039     // Get a copy of current selection.
2040     GSList *new_select = NULL;
2041     bool unlinked = false;
2042     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2043          items != NULL;
2044          items = items->next)
2045     {
2046         SPItem *use = (SPItem *) items->data;
2048         if (!SP_IS_USE(use)) {
2049             // keep the non-yse item in the new selection
2050             new_select = g_slist_prepend(new_select, use);
2051             continue;
2052         }
2054         SPItem *unlink = sp_use_unlink(SP_USE(use));
2055         unlinked = true;
2056         // Add ungrouped items to the new selection.
2057         new_select = g_slist_prepend(new_select, unlink);
2058     }
2060     if (new_select) { // set new selection
2061         selection->clear();
2062         selection->setList(new_select);
2063         g_slist_free(new_select);
2064     }
2065     if (!unlinked) {
2066         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to unlink</b> in the selection."));
2067     }
2069     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2070                      _("Unlink clone"));
2073 void
2074 sp_select_clone_original()
2076     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2077     if (desktop == NULL)
2078         return;
2080     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2082     SPItem *item = selection->singleItem();
2084     const gchar *error = _("Select a <b>clone</b> to go to its original. Select a <b>linked offset</b> to go to its source. Select a <b>text on path</b> to go to the path. Select a <b>flowed text</b> to go to its frame.");
2086     // Check if other than two objects are selected
2087     if (g_slist_length((GSList *) selection->itemList()) != 1 || !item) {
2088         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2089         return;
2090     }
2092     SPItem *original = NULL;
2093     if (SP_IS_USE(item)) {
2094         original = sp_use_get_original (SP_USE(item));
2095     } else if (SP_IS_OFFSET(item) && SP_OFFSET (item)->sourceHref) {
2096         original = sp_offset_get_source (SP_OFFSET(item));
2097     } else if (SP_IS_TEXT_TEXTPATH(item)) {
2098         original = sp_textpath_get_path_item (SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item))));
2099     } else if (SP_IS_FLOWTEXT(item)) {
2100         original = SP_FLOWTEXT(item)->get_frame (NULL); // first frame only
2101     } else { // it's an object that we don't know what to do with
2102         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2103         return;
2104     }
2106     if (!original) {
2107         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)"));
2108         return;
2109     }
2111     for (SPObject *o = original; o && !SP_IS_ROOT(o); o = SP_OBJECT_PARENT (o)) {
2112         if (SP_IS_DEFS (o)) {
2113             desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("The object you're trying to select is <b>not visible</b> (it is in &lt;defs&gt;)"));
2114             return;
2115         }
2116     }
2118     if (original) {
2119         selection->clear();
2120         selection->set(original);
2121         if (SP_CYCLING == SP_CYCLE_FOCUS) {
2122             scroll_to_show_item(desktop, original);
2123         }
2124     }
2127 void
2128 sp_selection_tile(bool apply)
2130     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2131     if (desktop == NULL)
2132         return;
2134     SPDocument *document = sp_desktop_document(desktop);
2135     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(document);
2137     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2139     // check if something is selected
2140     if (selection->isEmpty()) {
2141         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to pattern."));
2142         return;
2143     }
2145     sp_document_ensure_up_to_date(document);
2146     NR::Rect r = selection->bounds();
2147     if (r.isEmpty()) {
2148         return;
2149     }
2151     // calculate the transform to be applied to objects to move them to 0,0
2152     NR::Point move_p = NR::Point(0, sp_document_height(document)) - (r.min() + NR::Point (0, r.extent(NR::Y)));
2153     move_p[NR::Y] = -move_p[NR::Y];
2154     NR::Matrix move = NR::Matrix (NR::translate (move_p));
2156     GSList *items = g_slist_copy((GSList *) selection->itemList());
2158     items = g_slist_sort (items, (GCompareFunc) sp_object_compare_position);
2160     // bottommost object, after sorting
2161     SPObject *parent = SP_OBJECT_PARENT (items->data);
2163     NR::Matrix parent_transform = sp_item_i2root_affine(SP_ITEM(parent));
2165     // remember the position of the first item
2166     gint pos = SP_OBJECT_REPR (items->data)->position();
2168     // create a list of duplicates
2169     GSList *repr_copies = NULL;
2170     for (GSList *i = items; i != NULL; i = i->next) {
2171         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2172         repr_copies = g_slist_prepend (repr_copies, dup);
2173     }
2175     NR::Rect bounds(desktop->dt2doc(r.min()), desktop->dt2doc(r.max()));
2177     if (apply) {
2178         // delete objects so that their clones don't get alerted; this object will be restored shortly
2179         for (GSList *i = items; i != NULL; i = i->next) {
2180             SPObject *item = SP_OBJECT (i->data);
2181             item->deleteObject (false);
2182         }
2183     }
2185     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2186     // without disturbing clones.
2187     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2188     int saved_compensation = prefs_get_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
2189     prefs_set_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
2191     const gchar *pat_id = pattern_tile (repr_copies, bounds, document,
2192                                         NR::Matrix(NR::translate(desktop->dt2doc(NR::Point(r.min()[NR::X], r.max()[NR::Y])))) * parent_transform.inverse(), parent_transform * move);
2194     // restore compensation setting
2195     prefs_set_int_attribute("options.clonecompensation", "value", saved_compensation);
2197     if (apply) {
2198         Inkscape::XML::Node *rect = xml_doc->createElement("svg:rect");
2199         rect->setAttribute("style", g_strdup_printf("stroke:none;fill:url(#%s)", pat_id));
2201         NR::Point min = bounds.min() * parent_transform.inverse();
2202         NR::Point max = bounds.max() * parent_transform.inverse();
2204         sp_repr_set_svg_double(rect, "width", max[NR::X] - min[NR::X]);
2205         sp_repr_set_svg_double(rect, "height", max[NR::Y] - min[NR::Y]);
2206         sp_repr_set_svg_double(rect, "x", min[NR::X]);
2207         sp_repr_set_svg_double(rect, "y", min[NR::Y]);
2209         // restore parent and position
2210         SP_OBJECT_REPR (parent)->appendChild(rect);
2211         rect->setPosition(pos > 0 ? pos : 0);
2212         SPItem *rectangle = (SPItem *) sp_desktop_document (desktop)->getObjectByRepr(rect);
2214         Inkscape::GC::release(rect);
2216         selection->clear();
2217         selection->set(rectangle);
2218     }
2220     g_slist_free (items);
2222     sp_document_done (document, SP_VERB_EDIT_TILE, 
2223                       _("Objects to pattern"));
2226 void
2227 sp_selection_untile()
2229     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2230     if (desktop == NULL)
2231         return;
2233     SPDocument *document = sp_desktop_document(desktop);
2235     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2237     // check if something is selected
2238     if (selection->isEmpty()) {
2239         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object with pattern fill</b> to extract objects from."));
2240         return;
2241     }
2243     GSList *new_select = NULL;
2245     bool did = false;
2247     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2248          items != NULL;
2249          items = items->next) {
2251         SPItem *item = (SPItem *) items->data;
2253         SPStyle *style = SP_OBJECT_STYLE (item);
2255         if (!style || style->fill.type != SP_PAINT_TYPE_PAINTSERVER)
2256             continue;
2258         SPObject *server = SP_OBJECT_STYLE_FILL_SERVER(item);
2260         if (!SP_IS_PATTERN(server))
2261             continue;
2263         did = true;
2265         SPPattern *pattern = pattern_getroot (SP_PATTERN (server));
2267         NR::Matrix pat_transform = pattern_patternTransform (SP_PATTERN (server));
2268         pat_transform *= item->transform;
2270         for (SPObject *child = sp_object_first_child(SP_OBJECT(pattern)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
2271             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate();
2272             SPItem *i = SP_ITEM (desktop->currentLayer()->appendChildRepr(copy));
2274            // FIXME: relink clones to the new canvas objects
2275            // use SPObject::setid when mental finishes it to steal ids of
2277             // this is needed to make sure the new item has curve (simply requestDisplayUpdate does not work)
2278             sp_document_ensure_up_to_date (document);
2280             NR::Matrix transform( i->transform * pat_transform );
2281             sp_item_write_transform(i, SP_OBJECT_REPR(i), transform);
2283             new_select = g_slist_prepend(new_select, i);
2284         }
2286         SPCSSAttr *css = sp_repr_css_attr_new ();
2287         sp_repr_css_set_property (css, "fill", "none");
2288         sp_repr_css_change (SP_OBJECT_REPR (item), css, "style");
2289     }
2291     if (!did) {
2292         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No pattern fills</b> in the selection."));
2293     } else {
2294         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNTILE, 
2295                          _("Pattern to objects"));
2296         selection->setList(new_select);
2297     }
2300 void
2301 sp_selection_get_export_hints (Inkscape::Selection *selection, const char **filename, float *xdpi, float *ydpi) 
2303     if (selection->isEmpty()) {
2304         return;
2305     }
2307     const GSList * reprlst = selection->reprList();
2308     bool filename_search = TRUE;
2309     bool xdpi_search = TRUE;
2310     bool ydpi_search = TRUE;
2312     for(; reprlst != NULL &&
2313             filename_search &&
2314             xdpi_search &&
2315             ydpi_search;
2316         reprlst = reprlst->next) {
2317         const gchar * dpi_string;
2318         Inkscape::XML::Node * repr = (Inkscape::XML::Node *)reprlst->data;
2320         if (filename_search) {
2321             *filename = repr->attribute("inkscape:export-filename");
2322             if (*filename != NULL)
2323                 filename_search = FALSE;
2324         }
2326         if (xdpi_search) {
2327             dpi_string = NULL;
2328             dpi_string = repr->attribute("inkscape:export-xdpi");
2329             if (dpi_string != NULL) {
2330                 *xdpi = atof(dpi_string);
2331                 xdpi_search = FALSE;
2332             }
2333         }
2335         if (ydpi_search) {
2336             dpi_string = NULL;
2337             dpi_string = repr->attribute("inkscape:export-ydpi");
2338             if (dpi_string != NULL) {
2339                 *ydpi = atof(dpi_string);
2340                 ydpi_search = FALSE;
2341             }
2342         }
2343     }
2346 void
2347 sp_document_get_export_hints (SPDocument * doc, const char **filename, float *xdpi, float *ydpi) 
2349     Inkscape::XML::Node * repr = sp_document_repr_root(doc);
2350     const gchar * dpi_string;
2352     *filename = repr->attribute("inkscape:export-filename");
2354     dpi_string = NULL;
2355     dpi_string = repr->attribute("inkscape:export-xdpi");
2356     if (dpi_string != NULL) {
2357         *xdpi = atof(dpi_string);
2358     }
2360     dpi_string = NULL;
2361     dpi_string = repr->attribute("inkscape:export-ydpi");
2362     if (dpi_string != NULL) {
2363         *ydpi = atof(dpi_string);
2364     }
2367 void
2368 sp_selection_create_bitmap_copy ()
2370     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2371     if (desktop == NULL)
2372         return;
2374     SPDocument *document = sp_desktop_document(desktop);
2375     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(document);
2377     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2379     // check if something is selected
2380     if (selection->isEmpty()) {
2381         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to make a bitmap copy."));
2382         return;
2383     }
2385     // Get the bounding box of the selection
2386     NRRect bbox;
2387     sp_document_ensure_up_to_date (document);
2388     selection->bounds(&bbox);
2389     if (NR_RECT_DFLS_TEST_EMPTY(&bbox)) {
2390         return; // exceptional situation, so not bother with a translatable error message, just quit quietly
2391     }
2393     // List of the items to show; all others will be hidden
2394     GSList *items = g_slist_copy ((GSList *) selection->itemList());
2396     // Sort items so that the topmost comes last
2397     items = g_slist_sort(items, (GCompareFunc) sp_item_repr_compare_position);
2399     // Generate a random value from the current time (you may create bitmap from the same object(s)
2400     // multiple times, and this is done so that they don't clash)
2401     GTimeVal cu;
2402     g_get_current_time (&cu);
2403     guint current = (int) (cu.tv_sec * 1000000 + cu.tv_usec) % 1024;
2405     // Create the filename
2406     gchar *filename = g_strdup_printf ("%s-%s-%u.png", document->name, SP_OBJECT_REPR(items->data)->attribute("id"), current);
2407     // Imagemagick is known not to handle spaces in filenames, so we replace anything but letters,
2408     // digits, and a few other chars, with "_"
2409     filename = g_strcanon (filename, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.=+~$#@^&!?", '_');
2410     // Build the complete path by adding document->base if set
2411     gchar *filepath = g_build_filename (document->base?document->base:"", filename, NULL);
2413     //g_print ("%s\n", filepath);
2415     // Remember parent and z-order of the topmost one
2416     gint pos = SP_OBJECT_REPR(g_slist_last(items)->data)->position();
2417     SPObject *parent_object = SP_OBJECT_PARENT(g_slist_last(items)->data);
2418     Inkscape::XML::Node *parent = SP_OBJECT_REPR(parent_object);
2420     // Calculate resolution
2421     double res;
2422     int const prefs_res = prefs_get_int_attribute ("options.createbitmap", "resolution", 0);
2423     int const prefs_min = prefs_get_int_attribute ("options.createbitmap", "minsize", 0);
2424     if (0 < prefs_res) {
2425         // If it's given explicitly in prefs, take it
2426         res = prefs_res;
2427     } else if (0 < prefs_min) {
2428         // If minsize is given, look up minimum bitmap size (default 250 pixels) and calculate resolution from it
2429         res = PX_PER_IN * prefs_min / MIN ((bbox.x1 - bbox.x0), (bbox.y1 - bbox.y0));
2430     } else {
2431         float hint_xdpi = 0, hint_ydpi = 0;
2432         const char *hint_filename;
2433         // take resolution hint from the selected objects
2434         sp_selection_get_export_hints (selection, &hint_filename, &hint_xdpi, &hint_ydpi);
2435         if (hint_xdpi != 0) {
2436             res = hint_xdpi;
2437         } else {
2438             // take resolution hint from the document
2439             sp_document_get_export_hints (document, &hint_filename, &hint_xdpi, &hint_ydpi);
2440             if (hint_xdpi != 0) {
2441                 res = hint_xdpi;
2442             } else {
2443                 // if all else fails, take the default 90 dpi
2444                 res = PX_PER_IN;
2445             }
2446         }
2447     }
2449     // The width and height of the bitmap in pixels
2450     unsigned width = (unsigned) floor ((bbox.x1 - bbox.x0) * res / PX_PER_IN);
2451     unsigned height =(unsigned) floor ((bbox.y1 - bbox.y0) * res / PX_PER_IN);
2453     // Find out if we have to run a filter
2454     const gchar *run = NULL;
2455     const gchar *filter = prefs_get_string_attribute ("options.createbitmap", "filter");
2456     if (filter) {
2457         // filter command is given;
2458         // see if we have a parameter to pass to it
2459         const gchar *param1 = prefs_get_string_attribute ("options.createbitmap", "filter_param1");
2460         if (param1) {
2461             if (param1[strlen(param1) - 1] == '%') {
2462                 // if the param string ends with %, interpret it as a percentage of the image's max dimension
2463                 gchar p1[256];
2464                 g_ascii_dtostr (p1, 256, ceil (g_ascii_strtod (param1, NULL) * MAX(width, height) / 100));
2465                 // the first param is always the image filename, the second is param1
2466                 run = g_strdup_printf ("%s \"%s\" %s", filter, filepath, p1);
2467             } else {
2468                 // otherwise pass the param1 unchanged
2469                 run = g_strdup_printf ("%s \"%s\" %s", filter, filepath, param1);
2470             }
2471         } else {
2472             // run without extra parameter
2473             run = g_strdup_printf ("%s \"%s\"", filter, filepath);
2474         }
2475     }
2477     // Calculate the matrix that will be applied to the image so that it exactly overlaps the source objects
2478     NR::Matrix eek = sp_item_i2d_affine (SP_ITEM(parent_object));
2479     NR::Matrix t;
2480     if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2481         t = NR::scale (1, -1) * NR::translate ((unsigned) (bbox.x0 + 0.5), (unsigned) (bbox.y1 + 0.5)) * eek.inverse();
2482     } else {
2483         t = NR::scale (1, -1) * NR::translate (bbox.x0, bbox.y1) * eek.inverse();
2484     }
2486     // Do the export
2487     sp_export_png_file(document, filepath,
2488                    bbox.x0, bbox.y0, bbox.x1, bbox.y1,
2489                    width, height, res, res,
2490                    (guint32) 0xffffff00,
2491                    NULL, NULL,
2492                    true,  /*bool force_overwrite,*/
2493                    items);
2495     g_slist_free (items);
2497     // Run filter, if any
2498     if (run) {
2499         g_print ("Running external filter: %s\n", run);
2500         system (run);
2501     }
2503     // Import the image back
2504     GdkPixbuf *pb = gdk_pixbuf_new_from_file (filepath, NULL);
2505     if (pb) {
2506         // Create the repr for the image
2507         Inkscape::XML::Node * repr = xml_doc->createElement("svg:image");
2508         repr->setAttribute("xlink:href", filename);
2509         repr->setAttribute("sodipodi:absref", filepath);
2510         if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2511             sp_repr_set_svg_double(repr, "width", width);
2512             sp_repr_set_svg_double(repr, "height", height);
2513         } else {
2514             sp_repr_set_svg_double(repr, "width", (bbox.x1 - bbox.x0));
2515             sp_repr_set_svg_double(repr, "height", (bbox.y1 - bbox.y0));
2516         }
2518         // Write transform
2519         gchar c[256];
2520         if (sp_svg_transform_write(c, 256, t)) {
2521             repr->setAttribute("transform", c);
2522         }
2524         // add the new repr to the parent
2525         parent->appendChild(repr);
2527         // move to the saved position
2528         repr->setPosition(pos > 0 ? pos + 1 : 1);
2530         // Set selection to the new image
2531         selection->clear();
2532         selection->add(repr);
2534         // Clean up
2535         Inkscape::GC::release(repr);
2536         gdk_pixbuf_unref (pb);
2538         // Complete undoable transaction
2539         sp_document_done (document, SP_VERB_SELECTION_CREATE_BITMAP,
2540                           _("Create bitmap"));
2541     }
2543     g_free (filename);
2544     g_free (filepath);
2547 /**
2548  * \brief sp_selection_set_mask
2549  *
2550  * This function creates a mask or clipPath from selection
2551  * Two different modes:
2552  *  if applyToLayer, all selection is moved to DEFS as mask/clippath
2553  *       and is applied to current layer
2554  *  otherwise, topmost object is used as mask for other objects
2555  * If \a apply_clip_path parameter is true, clipPath is created, otherwise mask
2556  * 
2557  */
2558 void
2559 sp_selection_set_mask(bool apply_clip_path, bool apply_to_layer)
2561     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2562     if (desktop == NULL)
2563         return;
2565     SPDocument *document = sp_desktop_document(desktop);
2566     
2567     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2569     // check if something is selected
2570     bool is_empty = selection->isEmpty();
2571     if ( apply_to_layer && is_empty) {
2572         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to create clippath or mask from."));
2573         return;
2574     } else if (!apply_to_layer && ( is_empty || NULL == selection->itemList()->next )) {
2575         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select mask object and <b>object(s)</b> to apply clippath or mask to."));
2576         return;
2577     }
2579     // FIXME: temporary patch to prevent crash! 
2580     // Remove this when bboxes are fixed to not blow up on an item clipped/masked with its own clone
2581     bool clone_with_original = false;
2582     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
2583         SPItem *item = SP_ITEM(l->data);
2584         bool is_use = SP_IS_USE(item);
2585         SPItem *item_use = item;
2586         SPItem *item_use_first = item;
2587         while (is_use && item_use && !clone_with_original)
2588         {
2589             item_use = sp_use_get_original (SP_USE(item_use));
2590             clone_with_original |= selection->includes(item_use);
2591             if (item_use == item_use_first)
2592                 break;
2593             is_use = SP_IS_USE(item_use);
2594         }   
2595         if (clone_with_original) 
2596             break;
2597     }
2598     if (clone_with_original) {
2599         return; // in this version, you cannot clip/mask an object with its own clone
2600     }
2601     // /END FIXME
2602     
2603     sp_document_ensure_up_to_date(document);
2605     GSList *items = g_slist_copy((GSList *) selection->itemList());
2606     
2607     items = g_slist_sort (items, (GCompareFunc) sp_object_compare_position);
2609     // create a list of duplicates
2610     GSList *mask_items = NULL;
2611     GSList *apply_to_items = NULL;
2612     GSList *items_to_delete = NULL;
2613     bool topmost = prefs_get_int_attribute ("options.maskobject", "topmost", 1);
2614     bool remove_original = prefs_get_int_attribute ("options.maskobject", "remove", 1);
2615     
2616     if (apply_to_layer) {
2617         // all selected items are used for mask, which is applied to a layer
2618         apply_to_items = g_slist_prepend (apply_to_items, desktop->currentLayer());
2620         for (GSList *i = items; i != NULL; i = i->next) {
2621             Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2622             mask_items = g_slist_prepend (mask_items, dup);
2624             if (remove_original) {
2625                 SPObject *item = SP_OBJECT (i->data);
2626                 items_to_delete = g_slist_prepend (items_to_delete, item);
2627             }
2628         }
2629     } else if (!topmost) {
2630         // topmost item is used as a mask, which is applied to other items in a selection
2631         GSList *i = items;
2632         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2633         mask_items = g_slist_prepend (mask_items, dup);
2635         if (remove_original) {
2636             SPObject *item = SP_OBJECT (i->data);
2637             items_to_delete = g_slist_prepend (items_to_delete, item);
2638         }
2639         
2640         for (i = i->next; i != NULL; i = i->next) {
2641             apply_to_items = g_slist_prepend (apply_to_items, i->data);
2642         }
2643     } else {
2644         GSList *i = NULL;
2645         for (i = items; NULL != i->next; i = i->next) {
2646             apply_to_items = g_slist_prepend (apply_to_items, i->data);
2647         }
2649         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2650         mask_items = g_slist_prepend (mask_items, dup);
2652         if (remove_original) {
2653             SPObject *item = SP_OBJECT (i->data);
2654             items_to_delete = g_slist_prepend (items_to_delete, item);
2655         }
2656     }
2657     
2658     g_slist_free (items);
2659     items = NULL;
2660             
2661     gchar const* attributeName = apply_clip_path ? "clip-path" : "mask";
2662     for (GSList *i = apply_to_items; NULL != i; i = i->next) {
2663         SPItem *item = reinterpret_cast<SPItem *>(i->data);
2664         // inverted object transform should be applied to a mask object,
2665         // as mask is calculated in user space (after applying transform)
2666         NR::Matrix maskTransform (item->transform.inverse());
2668         GSList *mask_items_dup = NULL;
2669         for (GSList *mask_item = mask_items; NULL != mask_item; mask_item = mask_item->next) {
2670             Inkscape::XML::Node *dup = reinterpret_cast<Inkscape::XML::Node *>(mask_item->data)->duplicate();
2671             mask_items_dup = g_slist_prepend (mask_items_dup, dup);
2672         }
2674         const gchar *mask_id = NULL;
2675         if (apply_clip_path) {
2676             mask_id = sp_clippath_create(mask_items_dup, document, &maskTransform);
2677         } else {
2678             mask_id = sp_mask_create(mask_items_dup, document, &maskTransform);
2679         }
2681         g_slist_free (mask_items_dup);
2682         mask_items_dup = NULL;
2684         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, g_strdup_printf("url(#%s)", mask_id));
2685     }
2687     g_slist_free (mask_items);
2688     g_slist_free (apply_to_items);
2690     for (GSList *i = items_to_delete; NULL != i; i = i->next) {
2691         SPObject *item = SP_OBJECT (i->data);
2692         item->deleteObject (false);
2693     }
2694     g_slist_free (items_to_delete);
2696     if (apply_clip_path) 
2697         sp_document_done (document, SP_VERB_OBJECT_SET_CLIPPATH, _("Set clipping path"));
2698     else 
2699         sp_document_done (document, SP_VERB_OBJECT_SET_MASK, _("Set mask"));
2702 void sp_selection_unset_mask(bool apply_clip_path) {
2703     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2704     if (desktop == NULL)
2705         return;
2706     
2707     SPDocument *document = sp_desktop_document(desktop);    
2708     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2710     // check if something is selected
2711     if (selection->isEmpty()) {
2712         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove clippath or mask from."));
2713         return;
2714     }
2715     
2716     bool remove_original = prefs_get_int_attribute ("options.maskobject", "remove", 1);
2717     sp_document_ensure_up_to_date(document);
2719     gchar const* attributeName = apply_clip_path ? "clip-path" : "mask";
2720     std::map<SPObject*,SPItem*> referenced_objects;
2721     for (GSList const*i = selection->itemList(); NULL != i; i = i->next) {
2722         if (remove_original) {
2723             // remember referenced mask/clippath, so orphaned masks can be moved back to document
2724             SPItem *item = reinterpret_cast<SPItem *>(i->data);
2725             Inkscape::URIReference *uri_ref = NULL;
2726         
2727             if (apply_clip_path) {
2728                 uri_ref = item->clip_ref;
2729             } else {
2730                 uri_ref = item->mask_ref;
2731             }
2733             // collect distinct mask object (and associate with item to apply transform)
2734             if (NULL != uri_ref && NULL != uri_ref->getObject()) {
2735                 referenced_objects[uri_ref->getObject()] = item;
2736             }
2737         }
2739         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, "none");
2740     }
2742     // restore mask objects into a document
2743     for ( std::map<SPObject*,SPItem*>::iterator it = referenced_objects.begin() ; it != referenced_objects.end() ; ++it) {
2744         SPObject *obj = (*it).first;
2745         GSList *items_to_move = NULL;
2746         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
2747             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate();
2748             items_to_move = g_slist_prepend (items_to_move, copy);
2749         }
2751         if (!obj->isReferenced()) {
2752             // delete from defs if no other object references this mask
2753             obj->deleteObject(false);
2754         }
2756         // remember parent and position of the item to which the clippath/mask was applied
2757         Inkscape::XML::Node *parent = SP_OBJECT_REPR((*it).second)->parent();
2758         gint pos = SP_OBJECT_REPR((*it).second)->position();
2760         for (GSList *i = items_to_move; NULL != i; i = i->next) {
2761             Inkscape::XML::Node *repr = (Inkscape::XML::Node *)i->data;
2763             // insert into parent, restore pos
2764             parent->appendChild(repr);
2765             repr->setPosition((pos + 1) > 0 ? (pos + 1) : 0);
2767             SPItem *mask_item = (SPItem *) sp_desktop_document (desktop)->getObjectByRepr(repr);
2768             selection->add(repr);
2770             // transform mask, so it is moved the same spot where mask was applied
2771             NR::Matrix transform (mask_item->transform);
2772             transform *= (*it).second->transform;
2773             sp_item_write_transform(mask_item, SP_OBJECT_REPR(mask_item), transform);
2774         }
2776         g_slist_free (items_to_move);
2777     }
2779     if (apply_clip_path) 
2780         sp_document_done (document, SP_VERB_OBJECT_UNSET_CLIPPATH, _("Release clipping path"));
2781     else 
2782         sp_document_done (document, SP_VERB_OBJECT_UNSET_MASK, _("Release mask"));
2785 void fit_canvas_to_selection(SPDesktop *desktop) {
2786     g_return_if_fail(desktop != NULL);
2787     SPDocument *doc = sp_desktop_document(desktop);
2789     g_return_if_fail(doc != NULL);
2790     g_return_if_fail(desktop->selection != NULL);
2791     g_return_if_fail(!desktop->selection->isEmpty());
2792     NRRect bbox = {0,0,0,0};
2794     desktop->selection->bounds(&bbox);
2795     if (!empty(bbox)) {
2796         doc->fitToRect(bbox);
2797     }
2798 };
2800 void fit_canvas_to_drawing(SPDocument *doc) {
2801     g_return_if_fail(doc != NULL);
2802     NRRect bbox = {0,0,0,0};
2804     sp_document_ensure_up_to_date (doc);
2805     sp_item_invoke_bbox(SP_ITEM(doc->root), &bbox, sp_item_i2r_affine(SP_ITEM(doc->root)), TRUE);
2807     if (!empty(bbox)) {
2808         doc->fitToRect(bbox);
2809     }
2810 };
2812 void fit_canvas_to_selection_or_drawing(SPDesktop *desktop) {
2813     g_return_if_fail(desktop != NULL);
2814     SPDocument *doc = sp_desktop_document(desktop);
2816     g_return_if_fail(doc != NULL);
2817     g_return_if_fail(desktop->selection != NULL);
2819     if (desktop->selection->isEmpty()) {
2820         fit_canvas_to_drawing(doc);
2821     } else {
2822         fit_canvas_to_selection(desktop);
2823     }
2825     sp_document_done(doc, SP_VERB_FIT_CANVAS_TO_DRAWING, 
2826                      _("Fit page to selection"));
2827 };
2829 /*
2830   Local Variables:
2831   mode:c++
2832   c-file-style:"stroustrup"
2833   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
2834   indent-tabs-mode:nil
2835   fill-column:99
2836   End:
2837 */
2838 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :