Code

61d6b92846b4c5cc7adadbfd7ed3dd55d5e1203f
[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);
435     Inkscape::Selection *selection = sp_desktop_selection(desktop);
437     // Check if something is selected.
438     if (selection->isEmpty()) {
439         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>two or more objects</b> to group."));
440         return;
441     }
443     GSList const *l = (GSList *) selection->reprList();
445     // Check if at least two objects are selected.
446     if (l->next == NULL) {
447         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>at least two objects</b> to group."));
448         return;
449     }
451     GSList *p = g_slist_copy((GSList *) l);
453     selection->clear();
455     p = g_slist_sort(p, (GCompareFunc) sp_repr_compare_position);
457     // Remember the position and parent of the topmost object.
458     gint topmost = ((Inkscape::XML::Node *) g_slist_last(p)->data)->position();
459     Inkscape::XML::Node *topmost_parent = ((Inkscape::XML::Node *) g_slist_last(p)->data)->parent();
461     Inkscape::XML::Node *group = sp_repr_new("svg:g");
463     while (p) {
464         Inkscape::XML::Node *current = (Inkscape::XML::Node *) p->data;
466         if (current->parent() == topmost_parent) {
467             Inkscape::XML::Node *spnew = current->duplicate();
468             sp_repr_unparent(current);
469             group->appendChild(spnew);
470             Inkscape::GC::release(spnew);
471             topmost --; // only reduce count for those items deleted from topmost_parent
472         } else { // move it to topmost_parent first
473                 GSList *temp_clip = NULL;
475                 // At this point, current may already have no item, due to its being a clone whose original is already moved away
476                 // So we copy it artificially calculating the transform from its repr->attr("transform") and the parent transform
477                 gchar const *t_str = current->attribute("transform");
478                 NR::Matrix item_t (NR::identity());
479                 if (t_str)
480                     sp_svg_transform_read(t_str, &item_t);
481                 item_t *= sp_item_i2doc_affine(SP_ITEM(document->getObjectByRepr(current->parent())));
482                 //FIXME: when moving both clone and original from a transformed group (either by
483                 //grouping into another parent, or by cut/paste) the transform from the original's
484                 //parent becomes embedded into original itself, and this affects its clones. Fix
485                 //this by remembering the transform diffs we write to each item into an array and
486                 //then, if this is clone, looking up its original in that array and pre-multiplying
487                 //it by the inverse of that original's transform diff.
489                 sp_selection_copy_one (current, item_t, &temp_clip);
490                 sp_repr_unparent(current);
492                 // paste into topmost_parent (temporarily)
493                 GSList *copied = sp_selection_paste_impl (document, document->getObjectByRepr(topmost_parent), &temp_clip, NULL);
494                 if (temp_clip) g_slist_free (temp_clip);
495                 if (copied) { // if success,
496                     // take pasted object (now in topmost_parent)
497                     Inkscape::XML::Node *in_topmost = (Inkscape::XML::Node *) copied->data;
498                     // make a copy
499                     Inkscape::XML::Node *spnew = in_topmost->duplicate();
500                     // remove pasted
501                     sp_repr_unparent(in_topmost);
502                     // put its copy into group
503                     group->appendChild(spnew);
504                     Inkscape::GC::release(spnew);
505                     g_slist_free (copied);
506                 }
507         }
508         p = g_slist_remove(p, current);
509     }
511     // Add the new group to the topmost members' parent
512     topmost_parent->appendChild(group);
514     // Move to the position of the topmost, reduced by the number of items deleted from topmost_parent
515     group->setPosition(topmost + 1);
517     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_GROUP, 
518                      _("Group"));
520     selection->set(group);
521     Inkscape::GC::release(group);
524 void sp_selection_ungroup()
526     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
527     if (desktop == NULL)
528         return;
530     Inkscape::Selection *selection = sp_desktop_selection(desktop);
532     if (selection->isEmpty()) {
533         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>group</b> to ungroup."));
534         return;
535     }
537     GSList *items = g_slist_copy((GSList *) selection->itemList());
538     selection->clear();
540     // Get a copy of current selection.
541     GSList *new_select = NULL;
542     bool ungrouped = false;
543     for (GSList *i = items;
544          i != NULL;
545          i = i->next)
546     {
547         SPItem *group = (SPItem *) i->data;
549         // when ungrouping cloned groups with their originals, some objects that were selected may no more exist due to unlinking
550         if (!SP_IS_OBJECT(group)) {
551             continue;
552         }
554         /* We do not allow ungrouping <svg> etc. (lauris) */
555         if (strcmp(SP_OBJECT_REPR(group)->name(), "svg:g") && strcmp(SP_OBJECT_REPR(group)->name(), "svg:switch")) {
556             // keep the non-group item in the new selection
557             selection->add(group);
558             continue;
559         }
561         GSList *children = NULL;
562         /* This is not strictly required, but is nicer to rely on group ::destroy (lauris) */
563         sp_item_group_ungroup(SP_GROUP(group), &children, false);
564         ungrouped = true;
565         // Add ungrouped items to the new selection.
566         new_select = g_slist_concat(new_select, children);
567     }
569     if (new_select) { // Set new selection.
570         selection->addList(new_select);
571         g_slist_free(new_select);
572     }
573     if (!ungrouped) {
574         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No groups</b> to ungroup in the selection."));
575     }
577     g_slist_free(items);
579     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_UNGROUP, 
580                      _("Ungroup"));
583 static SPGroup *
584 sp_item_list_common_parent_group(const GSList *items)
586     if (!items) {
587         return NULL;
588     }
589     SPObject *parent = SP_OBJECT_PARENT(items->data);
590     /* Strictly speaking this CAN happen, if user selects <svg> from XML editor */
591     if (!SP_IS_GROUP(parent)) {
592         return NULL;
593     }
594     for (items = items->next; items; items = items->next) {
595         if (SP_OBJECT_PARENT(items->data) != parent) {
596             return NULL;
597         }
598     }
600     return SP_GROUP(parent);
603 /** Finds out the minimum common bbox of the selected items
604  */
605 NR::Rect
606 enclose_items(const GSList *items)
608     g_assert(items != NULL);
610     NR::Rect r = sp_item_bbox_desktop((SPItem *) items->data);
612     for (GSList *i = items->next; i; i = i->next) {
613         r = NR::Rect::union_bounds(r, sp_item_bbox_desktop((SPItem *) i->data));
614     }
616     return r;
619 SPObject *
620 prev_sibling(SPObject *child)
622     SPObject *parent = SP_OBJECT_PARENT(child);
623     if (!SP_IS_GROUP(parent)) {
624         return NULL;
625     }
626     for ( SPObject *i = sp_object_first_child(parent) ; i; i = SP_OBJECT_NEXT(i) ) {
627         if (i->next == child)
628             return i;
629     }
630     return NULL;
633 void
634 sp_selection_raise()
636     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
637     if (!desktop)
638         return;
640     Inkscape::Selection *selection = sp_desktop_selection(desktop);
642     GSList const *items = (GSList *) selection->itemList();
643     if (!items) {
644         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise."));
645         return;
646     }
648     SPGroup const *group = sp_item_list_common_parent_group(items);
649     if (!group) {
650         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
651         return;
652     }
654     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
656     /* construct reverse-ordered list of selected children */
657     GSList *rev = g_slist_copy((GSList *) items);
658     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
660     // find out the common bbox of the selected items
661     NR::Rect selected = enclose_items(items);
663     // for all objects in the selection (starting from top)
664     while (rev) {
665         SPObject *child = SP_OBJECT(rev->data);
666         // for each selected object, find the next sibling
667         for (SPObject *newref = child->next; newref; newref = newref->next) {
668             // if the sibling is an item AND overlaps our selection,
669             if (SP_IS_ITEM(newref) && selected.intersects(sp_item_bbox_desktop(SP_ITEM(newref)))) {
670                 // AND if it's not one of our selected objects,
671                 if (!g_slist_find((GSList *) items, newref)) {
672                     // move the selected object after that sibling
673                     grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(newref));
674                 }
675                 break;
676             }
677         }
678         rev = g_slist_remove(rev, child);
679     }
681     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_RAISE,
682                      _("Raise"));
685 void sp_selection_raise_to_top()
687     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
688     if (desktop == NULL)
689         return;
691     SPDocument *document = sp_desktop_document(desktop);
692     Inkscape::Selection *selection = sp_desktop_selection(desktop);
694     if (selection->isEmpty()) {
695         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise to top."));
696         return;
697     }
699     GSList const *items = (GSList *) selection->itemList();
701     SPGroup const *group = sp_item_list_common_parent_group(items);
702     if (!group) {
703         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
704         return;
705     }
707     GSList *rl = g_slist_copy((GSList *) selection->reprList());
708     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
710     for (GSList *l = rl; l != NULL; l = l->next) {
711         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
712         repr->setPosition(-1);
713     }
715     g_slist_free(rl);
717     sp_document_done(document, SP_VERB_SELECTION_TO_FRONT, 
718                      _("Raise to top"));
721 void
722 sp_selection_lower()
724     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
725     if (desktop == NULL)
726         return;
728     Inkscape::Selection *selection = sp_desktop_selection(desktop);
730     GSList const *items = (GSList *) selection->itemList();
731     if (!items) {
732         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower."));
733         return;
734     }
736     SPGroup const *group = sp_item_list_common_parent_group(items);
737     if (!group) {
738         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
739         return;
740     }
742     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
744     // find out the common bbox of the selected items
745     NR::Rect selected = enclose_items(items);
747     /* construct direct-ordered list of selected children */
748     GSList *rev = g_slist_copy((GSList *) items);
749     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
750     rev = g_slist_reverse(rev);
752     // for all objects in the selection (starting from top)
753     while (rev) {
754         SPObject *child = SP_OBJECT(rev->data);
755         // for each selected object, find the prev sibling
756         for (SPObject *newref = prev_sibling(child); newref; newref = prev_sibling(newref)) {
757             // if the sibling is an item AND overlaps our selection,
758             if (SP_IS_ITEM(newref) && selected.intersects(sp_item_bbox_desktop(SP_ITEM(newref)))) {
759                 // AND if it's not one of our selected objects,
760                 if (!g_slist_find((GSList *) items, newref)) {
761                     // move the selected object before that sibling
762                     SPObject *put_after = prev_sibling(newref);
763                     if (put_after)
764                         grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(put_after));
765                     else
766                         SP_OBJECT_REPR(child)->setPosition(0);
767                 }
768                 break;
769             }
770         }
771         rev = g_slist_remove(rev, child);
772     }
774     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_LOWER, 
775                      _("Lower"));
779 void sp_selection_lower_to_bottom()
781     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
782     if (desktop == NULL)
783         return;
785     SPDocument *document = sp_desktop_document(desktop);
786     Inkscape::Selection *selection = sp_desktop_selection(desktop);
788     if (selection->isEmpty()) {
789         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower to bottom."));
790         return;
791     }
793     GSList const *items = (GSList *) selection->itemList();
795     SPGroup const *group = sp_item_list_common_parent_group(items);
796     if (!group) {
797         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
798         return;
799     }
801     GSList *rl;
802     rl = g_slist_copy((GSList *) selection->reprList());
803     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
804     rl = g_slist_reverse(rl);
806     for (GSList *l = rl; l != NULL; l = l->next) {
807         gint minpos;
808         SPObject *pp, *pc;
809         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
810         pp = document->getObjectByRepr(sp_repr_parent(repr));
811         minpos = 0;
812         g_assert(SP_IS_GROUP(pp));
813         pc = sp_object_first_child(pp);
814         while (!SP_IS_ITEM(pc)) {
815             minpos += 1;
816             pc = pc->next;
817         }
818         repr->setPosition(minpos);
819     }
821     g_slist_free(rl);
823     sp_document_done(document, SP_VERB_SELECTION_TO_BACK, 
824                      _("Lower to bottom"));
827 void
828 sp_undo(SPDesktop *desktop, SPDocument *)
830         if (!sp_document_undo(sp_desktop_document(desktop)))
831             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to undo."));
834 void
835 sp_redo(SPDesktop *desktop, SPDocument *)
837         if (!sp_document_redo(sp_desktop_document(desktop)))
838             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to redo."));
841 void sp_selection_cut()
843     sp_selection_copy();
844     sp_selection_delete();
847 void sp_copy_gradient (GSList **defs_clip, SPGradient *gradient)
849     SPGradient *ref = gradient;
851     while (ref) {
852         // climb up the refs, copying each one in the chain
853         Inkscape::XML::Node *grad_repr = SP_OBJECT_REPR(ref)->duplicate();
854         *defs_clip = g_slist_prepend (*defs_clip, grad_repr);
856         ref = ref->ref->getObject();
857     }
860 void sp_copy_pattern (GSList **defs_clip, SPPattern *pattern)
862     SPPattern *ref = pattern;
864     while (ref) {
865         // climb up the refs, copying each one in the chain
866         Inkscape::XML::Node *pattern_repr = SP_OBJECT_REPR(ref)->duplicate();
867         *defs_clip = g_slist_prepend (*defs_clip, pattern_repr);
869         // items in the pattern may also use gradients and other patterns, so we need to recurse here as well
870         for (SPObject *child = sp_object_first_child(SP_OBJECT(ref)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
871             if (!SP_IS_ITEM (child))
872                 continue;
873             sp_copy_stuff_used_by_item (defs_clip, (SPItem *) child, NULL);
874         }
876         ref = ref->ref->getObject();
877     }
880 void sp_copy_single (GSList **defs_clip, SPObject *thing)
882     Inkscape::XML::Node *duplicate_repr = SP_OBJECT_REPR(thing)->duplicate();
883     *defs_clip = g_slist_prepend (*defs_clip, duplicate_repr);
887 void sp_copy_textpath_path (GSList **defs_clip, SPTextPath *tp, const GSList *items)
889     SPItem *path = sp_textpath_get_path_item (tp);
890     if (!path)
891         return;
892     if (items && g_slist_find ((GSList *) items, path)) // do not copy it to defs if it is already in the list of items copied
893         return;
894     Inkscape::XML::Node *repr = SP_OBJECT_REPR(path)->duplicate();
895     *defs_clip = g_slist_prepend (*defs_clip, repr);
898 /**
899  * Copies things like patterns, markers, gradients, etc.
900  */
901 void sp_copy_stuff_used_by_item (GSList **defs_clip, SPItem *item, const GSList *items)
903     SPStyle *style = SP_OBJECT_STYLE (item);
905     if (style && (style->fill.type == SP_PAINT_TYPE_PAINTSERVER)) {
906         SPObject *server = SP_OBJECT_STYLE_FILL_SERVER(item);
907         if (SP_IS_LINEARGRADIENT (server) || SP_IS_RADIALGRADIENT (server))
908             sp_copy_gradient (defs_clip, SP_GRADIENT(server));
909         if (SP_IS_PATTERN (server))
910             sp_copy_pattern (defs_clip, SP_PATTERN(server));
911     }
913     if (style && (style->stroke.type == SP_PAINT_TYPE_PAINTSERVER)) {
914         SPObject *server = SP_OBJECT_STYLE_STROKE_SERVER(item);
915         if (SP_IS_LINEARGRADIENT (server) || SP_IS_RADIALGRADIENT (server))
916             sp_copy_gradient (defs_clip, SP_GRADIENT(server));
917         if (SP_IS_PATTERN (server))
918             sp_copy_pattern (defs_clip, SP_PATTERN(server));
919     }
921     // For shapes, copy all of the shape's markers into defs_clip
922     if (SP_IS_SHAPE (item)) {
923         SPShape *shape = SP_SHAPE (item);
924         for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
925             if (shape->marker[i]) {
926                 sp_copy_single (defs_clip, SP_OBJECT (shape->marker[i]));
927             }
928         }
929     }
931     if (SP_IS_TEXT_TEXTPATH (item)) {
932         sp_copy_textpath_path (defs_clip, SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item))), items);
933     }
935     if (item->clip_ref->getObject()) {
936         sp_copy_single (defs_clip, item->clip_ref->getObject());
937     }
939     if (item->mask_ref->getObject()) {
940         SPObject *mask = item->mask_ref->getObject();
941         sp_copy_single (defs_clip, mask);
942         // recurse into the mask for its gradients etc.
943         for (SPObject *o = SP_OBJECT(mask)->children; o != NULL; o = o->next) {
944             if (SP_IS_ITEM(o))
945                 sp_copy_stuff_used_by_item (defs_clip, SP_ITEM (o), items);
946         }
947     }
949     if (style->filter.filter) {
950         SPObject *filter = style->filter.filter;
951         if (SP_IS_FILTER(filter)) {
952             sp_copy_single (defs_clip, filter);
953         }
954     }
956     // recurse
957     for (SPObject *o = SP_OBJECT(item)->children; o != NULL; o = o->next) {
958         if (SP_IS_ITEM(o))
959             sp_copy_stuff_used_by_item (defs_clip, SP_ITEM (o), items);
960     }
963 /**
964  * \pre item != NULL
965  */
966 SPCSSAttr *
967 take_style_from_item (SPItem *item)
969     // write the complete cascaded style, context-free
970     SPCSSAttr *css = sp_css_attr_from_object (SP_OBJECT(item), SP_STYLE_FLAG_ALWAYS);
971     if (css == NULL)
972         return NULL;
974     if ((SP_IS_GROUP(item) && SP_OBJECT(item)->children) ||
975         (SP_IS_TEXT (item) && SP_OBJECT(item)->children && SP_OBJECT(item)->children->next == NULL)) {
976         // if this is a text with exactly one tspan child, merge the style of that tspan as well
977         // If this is a group, merge the style of its topmost (last) child with style
978         for (SPObject *last_element = item->lastChild(); last_element != NULL; last_element = SP_OBJECT_PREV (last_element)) {
979             if (SP_OBJECT_STYLE (last_element) != NULL) {
980                 SPCSSAttr *temp = sp_css_attr_from_object (last_element, SP_STYLE_FLAG_IFSET);
981                 if (temp) {
982                     sp_repr_css_merge (css, temp);
983                     sp_repr_css_attr_unref (temp);
984                 }
985                 break;
986             }
987         }
988     }
989     if (!(SP_IS_TEXT (item) || SP_IS_TSPAN (item) || SP_IS_STRING (item))) {
990         // do not copy text properties from non-text objects, it's confusing
991         css = sp_css_attr_unset_text (css);
992     }
994     // FIXME: also transform gradient/pattern fills, by forking? NO, this must be nondestructive
995     double ex = NR::expansion(sp_item_i2doc_affine(item));
996     if (ex != 1.0) {
997         css = sp_css_attr_scale (css, ex);
998     }
1000     return css;
1004 void sp_selection_copy()
1006     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1007     if (desktop == NULL)
1008         return;
1010     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1012     if (tools_isactive (desktop, TOOLS_DROPPER)) {
1013         sp_dropper_context_copy(desktop->event_context);
1014         return; // copied color under cursor, nothing else to do
1015     }
1017     // check if something is selected
1018     if (selection->isEmpty()) {
1019         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing was copied."));
1020         return;
1021     }
1023     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1025     // 0. Copy text to system clipboard
1026     // FIXME: for non-texts, put serialized XML as text to the clipboard;
1027     //for this sp_repr_write_stream needs to be rewritten with iostream instead of FILE
1028     Glib::ustring text;
1029     if (tools_isactive (desktop, TOOLS_TEXT)) {
1030         text = sp_text_get_selected_text(desktop->event_context);
1031     }
1033     if (text.empty()) {
1034         guint texts = 0;
1035         for (GSList *i = (GSList *) items; i; i = i->next) {
1036             SPItem *item = SP_ITEM (i->data);
1037             if (SP_IS_TEXT (item) || SP_IS_FLOWTEXT(item)) {
1038                 if (texts > 0) // if more than one text object is copied, separate them by spaces
1039                     text += " ";
1040                 gchar *this_text = sp_te_get_string_multiline (item);
1041                 if (this_text) {
1042                     text += this_text;
1043                     g_free(this_text);
1044                 }
1045                 texts++;
1046             }
1047         }
1048     }
1049     if (!text.empty()) {
1050         Glib::RefPtr<Gtk::Clipboard> refClipboard = Gtk::Clipboard::get();
1051         refClipboard->set_text(text);
1052     }
1054     // clear old defs clipboard
1055     while (defs_clipboard) {
1056         Inkscape::GC::release((Inkscape::XML::Node *) defs_clipboard->data);
1057         defs_clipboard = g_slist_remove (defs_clipboard, defs_clipboard->data);
1058     }
1060     // clear style clipboard
1061     if (style_clipboard) {
1062         sp_repr_css_attr_unref (style_clipboard);
1063         style_clipboard = NULL;
1064     }
1066     //clear main clipboard
1067     while (clipboard) {
1068         Inkscape::GC::release((Inkscape::XML::Node *) clipboard->data);
1069         clipboard = g_slist_remove(clipboard, clipboard->data);
1070     }
1072     sp_selection_copy_impl (items, &clipboard, &defs_clipboard, &style_clipboard);
1074     if (tools_isactive (desktop, TOOLS_TEXT)) { // take style from cursor/text selection, overwriting the style just set by copy_impl
1075         SPStyle *const query = sp_style_new();
1076         if (sp_desktop_query_style_all (desktop, query)) {
1077             SPCSSAttr *css = sp_css_attr_from_style (query, SP_STYLE_FLAG_ALWAYS);
1078             if (css != NULL) {
1079                 // clear style clipboard
1080                 if (style_clipboard) {
1081                     sp_repr_css_attr_unref (style_clipboard);
1082                     style_clipboard = NULL;
1083                 }
1084                 //sp_repr_css_print (css);
1085                 style_clipboard = css;
1086             }
1087         }
1088         g_free (query);
1089     }
1091     size_clipboard = selection->bounds();
1093     g_slist_free ((GSList *) items);
1096 void sp_selection_paste(bool in_place)
1098     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1100     if (desktop == NULL) {
1101         return;
1102     }
1104     SPDocument *document = sp_desktop_document(desktop);
1106     if (Inkscape::have_viable_layer(desktop, desktop->messageStack()) == false) {
1107         return;
1108     }
1110     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1112     if (tools_isactive (desktop, TOOLS_TEXT)) {
1113         if (sp_text_paste_inline(desktop->event_context))
1114             return; // pasted from system clipboard into text, nothing else to do
1115     }
1117     // check if something is in the clipboard
1118     if (clipboard == NULL) {
1119         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1120         return;
1121     }
1123     GSList *copied = sp_selection_paste_impl(document, desktop->currentLayer(), &clipboard, &defs_clipboard);
1124     // add pasted objects to selection
1125     selection->setReprList((GSList const *) copied);
1126     g_slist_free (copied);
1128     if (!in_place) {
1129         sp_document_ensure_up_to_date(document);
1131         NR::Point m( desktop->point() - selection->bounds().midpoint() );
1133         /* Snap the offset of the new item(s) to the grid */
1134         /* FIXME: this gridsnap fiddling is a hack. */
1135         Inkscape::GridSnapper &s = desktop->namedview->snap_manager.grid;
1136         gdouble const curr_gridsnap = s.getDistance();
1137         s.setDistance(NR_HUGE);
1138         m = s.freeSnap(Inkscape::Snapper::SNAP_POINT, m, NULL).getPoint();
1139         s.setDistance(curr_gridsnap);
1140         sp_selection_move_relative(selection, m);
1141     }
1143     sp_document_done(document, SP_VERB_EDIT_PASTE, 
1144                      _("Paste"));
1147 void sp_selection_paste_style()
1149     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1150     if (desktop == NULL) return;
1152     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1154     // check if something is in the clipboard
1155     if (clipboard == NULL) {
1156         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1157         return;
1158     }
1160     // check if something is selected
1161     if (selection->isEmpty()) {
1162         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste style to."));
1163         return;
1164     }
1166     paste_defs (&defs_clipboard, sp_desktop_document(desktop));
1168     sp_desktop_set_style (desktop, style_clipboard);
1170     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_STYLE,
1171                      _("Paste style"));
1174 void sp_selection_paste_size (bool apply_x, bool apply_y)
1176     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1177     if (desktop == NULL) return;
1179     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1181     // check if something is in the clipboard
1182     if (size_clipboard.extent(NR::X) < 1e-6 || size_clipboard.extent(NR::Y) < 1e-6) {
1183         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1184         return;
1185     }
1187     // check if something is selected
1188     if (selection->isEmpty()) {
1189         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste size to."));
1190         return;
1191     }
1193     NR::Rect current = selection->bounds();
1194     if (current.extent(NR::X) < 1e-6 || current.extent(NR::Y) < 1e-6) {
1195         return;
1196     }
1198     double scale_x = size_clipboard.extent(NR::X) / current.extent(NR::X);
1199     double scale_y = size_clipboard.extent(NR::Y) / current.extent(NR::Y);
1201     sp_selection_scale_relative (selection, current.midpoint(), 
1202                                  NR::scale(
1203                                      apply_x? scale_x : (desktop->isToolboxButtonActive ("lock")? scale_y : 1.0),
1204                                      apply_y? scale_y : (desktop->isToolboxButtonActive ("lock")? scale_x : 1.0)));
1206     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_SIZE,
1207                      _("Paste size"));
1210 void sp_selection_paste_size_separately (bool apply_x, bool apply_y)
1212     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1213     if (desktop == NULL) return;
1215     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1217     // check if something is in the clipboard
1218     if (size_clipboard.extent(NR::X) < 1e-6 || size_clipboard.extent(NR::Y) < 1e-6) {
1219         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing on the clipboard."));
1220         return;
1221     }
1223     // check if something is selected
1224     if (selection->isEmpty()) {
1225         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to paste size to."));
1226         return;
1227     }
1229     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1230         SPItem *item = SP_ITEM(l->data);
1232         NR::Rect current = sp_item_bbox_desktop(item);
1233         if (current.extent(NR::X) < 1e-6 || current.extent(NR::Y) < 1e-6) {
1234             continue;
1235         }
1237         double scale_x = size_clipboard.extent(NR::X) / current.extent(NR::X);
1238         double scale_y = size_clipboard.extent(NR::Y) / current.extent(NR::Y);
1240         sp_item_scale_rel (item,
1241                                  NR::scale(
1242                                      apply_x? scale_x : (desktop->isToolboxButtonActive ("lock")? scale_y : 1.0),
1243                                      apply_y? scale_y : (desktop->isToolboxButtonActive ("lock")? scale_x : 1.0)));
1245     }
1247     sp_document_done(sp_desktop_document (desktop), SP_VERB_EDIT_PASTE_SIZE_SEPARATELY,
1248                      _("Paste size separately"));
1251 void sp_selection_to_next_layer ()
1253     SPDesktop *dt = SP_ACTIVE_DESKTOP;
1255     Inkscape::Selection *selection = sp_desktop_selection(dt);
1257     // check if something is selected
1258     if (selection->isEmpty()) {
1259         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer above."));
1260         return;
1261     }
1263     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1265     bool no_more = false; // Set to true, if no more layers above
1266     SPObject *next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer());
1267     if (next) {
1268         GSList *temp_clip = NULL;
1269         sp_selection_copy_impl (items, &temp_clip, NULL, NULL); // we're in the same doc, so no need to copy defs
1270         sp_selection_delete_impl (items);
1271         next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1272         GSList *copied;
1273         if(next) {
1274             copied = sp_selection_paste_impl (sp_desktop_document (dt), next, &temp_clip, NULL);
1275         } else {
1276             copied = sp_selection_paste_impl (sp_desktop_document (dt), dt->currentLayer(), &temp_clip, NULL);
1277             no_more = true;
1278         }
1279         selection->setReprList((GSList const *) copied);
1280         g_slist_free (copied);
1281         if (temp_clip) g_slist_free (temp_clip);
1282         if (next) dt->setCurrentLayer(next);
1283         sp_document_done(sp_desktop_document (dt), SP_VERB_LAYER_MOVE_TO_NEXT, 
1284                          _("Raise to next layer"));
1285     } else {
1286         no_more = true;
1287     }
1289     if (no_more) {
1290         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers above."));
1291     }
1293     g_slist_free ((GSList *) items);
1296 void sp_selection_to_prev_layer ()
1298     SPDesktop *dt = SP_ACTIVE_DESKTOP;
1300     Inkscape::Selection *selection = sp_desktop_selection(dt);
1302     // check if something is selected
1303     if (selection->isEmpty()) {
1304         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer below."));
1305         return;
1306     }
1308     const GSList *items = g_slist_copy ((GSList *) selection->itemList());
1310     bool no_more = false; // Set to true, if no more layers below
1311     SPObject *next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer());
1312     if (next) {
1313         GSList *temp_clip = NULL;
1314         sp_selection_copy_impl (items, &temp_clip, NULL, NULL); // we're in the same doc, so no need to copy defs
1315         sp_selection_delete_impl (items);
1316         next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1317         GSList *copied;
1318         if(next) {
1319             copied = sp_selection_paste_impl (sp_desktop_document (dt), next, &temp_clip, NULL);
1320         } else {
1321             copied = sp_selection_paste_impl (sp_desktop_document (dt), dt->currentLayer(), &temp_clip, NULL);
1322             no_more = true;
1323         }
1324         selection->setReprList((GSList const *) copied);
1325         g_slist_free (copied);
1326         if (temp_clip) g_slist_free (temp_clip);
1327         if (next) dt->setCurrentLayer(next);
1328         sp_document_done(sp_desktop_document (dt), SP_VERB_LAYER_MOVE_TO_PREV,
1329                          _("Lower to previous layer"));
1330     } else {
1331         no_more = true;
1332     }
1334     if (no_more) {
1335         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers below."));
1336     }
1338     g_slist_free ((GSList *) items);
1341 /** Apply matrix to the selection.  \a set_i2d is normally true, which means objects are in the
1342 original transform, synced with their reprs, and need to jump to the new transform in one go. A
1343 value of set_i2d==false is only used by seltrans when it's dragging objects live (not outlines); in
1344 that case, items are already in the new position, but the repr is in the old, and this function
1345 then simply updates the repr from item->transform.
1346  */
1347 void sp_selection_apply_affine(Inkscape::Selection *selection, NR::Matrix const &affine, bool set_i2d)
1349     if (selection->isEmpty())
1350         return;
1352     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1353         SPItem *item = SP_ITEM(l->data);
1355         NR::Point old_center(0,0);
1356         if (set_i2d && item->isCenterSet())
1357             old_center = item->getCenter();
1359 #if 0 /* Re-enable this once persistent guides have a graphical indication.
1360          At the time of writing, this is the only place to re-enable. */
1361         sp_item_update_cns(*item, selection->desktop());
1362 #endif
1364         // we're moving both a clone and its original?
1365         bool transform_clone_with_original = (SP_IS_USE(item) && selection->includes( sp_use_get_original (SP_USE(item)) ));
1366         // ...both a text-on-path and its path?
1367         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)))) ));
1368         // ...both a flowtext and its frame?
1369         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)
1370         // ...both an offset and its source?
1371         bool transform_offset_with_source = (SP_IS_OFFSET(item) && SP_OFFSET (item)->sourceHref) && selection->includes( sp_offset_get_source (SP_OFFSET(item)) );
1372        
1373         // If we're moving a connector, we want to detach it
1374         // from shapes that aren't part of the selection, but
1375         // leave it attached if they are
1376         if (cc_item_is_connector(item)) {
1377             SPItem *attItem[2];
1378             SP_PATH(item)->connEndPair.getAttachedItems(attItem);
1379             
1380             for (int n = 0; n < 2; ++n) {
1381                 if (!selection->includes(attItem[n])) {
1382                     sp_conn_end_detach(item, n);
1383                 }
1384             }
1385         }
1386         
1387         // "clones are unmoved when original is moved" preference
1388         int compensation = prefs_get_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
1389         bool prefs_unmoved = (compensation == SP_CLONE_COMPENSATION_UNMOVED);
1390         bool prefs_parallel = (compensation == SP_CLONE_COMPENSATION_PARALLEL);
1392         // If this is a clone and it's selected along with its original, do not move it; it will feel the
1393         // transform of its original and respond to it itself. Without this, a clone is doubly
1394         // transformed, very unintuitive.
1395       // Same for textpath if we are also doing ANY transform to its path: do not touch textpath,
1396       // letters cannot be squeezed or rotated anyway, they only refill the changed path.
1397       // Same for linked offset if we are also moving its source: do not move it.
1398         if (transform_textpath_with_path || transform_offset_with_source) {
1399                 // restore item->transform field from the repr, in case it was changed by seltrans
1400             sp_object_read_attr (SP_OBJECT (item), "transform");
1402         } else if (transform_flowtext_with_frame) {
1403             // apply the inverse of the region's transform to the <use> so that the flow remains
1404             // the same (even though the output itself gets transformed)
1405             for (SPObject *region = item->firstChild() ; region ; region = SP_OBJECT_NEXT(region)) {
1406                 if (!SP_IS_FLOWREGION(region) && !SP_IS_FLOWREGIONEXCLUDE(region))
1407                     continue;
1408                 for (SPObject *use = region->firstChild() ; use ; use = SP_OBJECT_NEXT(use)) {
1409                     if (!SP_IS_USE(use)) continue;
1410                     sp_item_write_transform(SP_USE(use), SP_OBJECT_REPR(use), item->transform.inverse(), NULL);
1411                 }
1412             }
1413         } else if (transform_clone_with_original) {
1414             // We are transforming a clone along with its original. The below matrix juggling is
1415             // necessary to ensure that they transform as a whole, i.e. the clone's induced
1416             // transform and its move compensation are both cancelled out.
1418             // restore item->transform field from the repr, in case it was changed by seltrans
1419             sp_object_read_attr (SP_OBJECT (item), "transform");
1421             // calculate the matrix we need to apply to the clone to cancel its induced transform from its original
1422             NR::Matrix parent_transform = sp_item_i2root_affine(SP_ITEM(SP_OBJECT_PARENT (item)));
1423             NR::Matrix t = parent_transform * matrix_to_desktop (matrix_from_desktop (affine, item), item) * parent_transform.inverse();
1424             NR::Matrix t_inv =parent_transform * matrix_to_desktop (matrix_from_desktop (affine.inverse(), item), item) * parent_transform.inverse();
1425             NR::Matrix result = t_inv * item->transform * t;
1427             if ((prefs_parallel || prefs_unmoved) && affine.is_translation()) {
1428                 // we need to cancel out the move compensation, too
1430                 // find out the clone move, same as in sp_use_move_compensate
1431                 NR::Matrix parent = sp_use_get_parent_transform (SP_USE(item));
1432                 NR::Matrix clone_move = parent.inverse() * t * parent;
1434                 if (prefs_parallel) {
1435                     NR::Matrix move = result * clone_move * t_inv;
1436                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &move);
1438                 } else if (prefs_unmoved) {
1439                     //if (SP_IS_USE(sp_use_get_original(SP_USE(item))))
1440                     //    clone_move = NR::identity();
1441                     NR::Matrix move = result * clone_move;
1442                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &t);
1443                 }
1445             } else {
1446                 // just apply the result
1447                 sp_item_write_transform(item, SP_OBJECT_REPR(item), result, &t);
1448             }
1450         } else {
1451             if (set_i2d) {
1452                 sp_item_set_i2d_affine(item, sp_item_i2d_affine(item) * affine);
1453             }
1454             sp_item_write_transform(item, SP_OBJECT_REPR(item), item->transform, NULL);
1455         }
1457         // if we're moving the actual object, not just updating the repr, we can transform the
1458         // center by the same matrix (only necessary for non-translations)
1459         if (set_i2d && item->isCenterSet() && !affine.is_translation()) {
1460             item->setCenter(old_center * affine);
1461             SP_OBJECT(item)->updateRepr();
1462         }
1463     }
1466 void sp_selection_remove_transform()
1468     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1469     if (desktop == NULL)
1470         return;
1472     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1474     GSList const *l = (GSList *) selection->reprList();
1475     while (l != NULL) {
1476         sp_repr_set_attr((Inkscape::XML::Node*)l->data, "transform", NULL);
1477         l = l->next;
1478     }
1480     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_FLATTEN, 
1481                      _("Remove transform"));
1484 void
1485 sp_selection_scale_absolute(Inkscape::Selection *selection,
1486                             double const x0, double const x1,
1487                             double const y0, double const y1)
1489     if (selection->isEmpty())
1490         return;
1492     NR::Rect const bbox(selection->bounds());
1493     if (bbox.isEmpty()) {
1494         return;
1495     }
1497     NR::translate const p2o(-bbox.min());
1499     NR::scale const newSize(x1 - x0,
1500                             y1 - y0);
1501     NR::scale const scale( newSize / NR::scale(bbox.dimensions()) );
1502     NR::translate const o2n(x0, y0);
1503     NR::Matrix const final( p2o * scale * o2n );
1505     sp_selection_apply_affine(selection, final);
1509 void sp_selection_scale_relative(Inkscape::Selection *selection, NR::Point const &align, NR::scale const &scale)
1511     if (selection->isEmpty())
1512         return;
1514     NR::Rect const bbox(selection->bounds());
1516     if (bbox.isEmpty()) {
1517         return;
1518     }
1520     // FIXME: ARBITRARY LIMIT: don't try to scale above 1 Mpx, it won't display properly and will crash sooner or later anyway
1521     if ( bbox.extent(NR::X) * scale[NR::X] > 1e6  ||
1522          bbox.extent(NR::Y) * scale[NR::Y] > 1e6 )
1523     {
1524         return;
1525     }
1527     NR::translate const n2d(-align);
1528     NR::translate const d2n(align);
1529     NR::Matrix const final( n2d * scale * d2n );
1530     sp_selection_apply_affine(selection, final);
1533 void
1534 sp_selection_rotate_relative(Inkscape::Selection *selection, NR::Point const &center, gdouble const angle_degrees)
1536     NR::translate const d2n(center);
1537     NR::translate const n2d(-center);
1538     NR::rotate const rotate(rotate_degrees(angle_degrees));
1539     NR::Matrix const final( NR::Matrix(n2d) * rotate * d2n );
1540     sp_selection_apply_affine(selection, final);
1543 void
1544 sp_selection_skew_relative(Inkscape::Selection *selection, NR::Point const &align, double dx, double dy)
1546     NR::translate const d2n(align);
1547     NR::translate const n2d(-align);
1548     NR::Matrix const skew(1, dy,
1549                           dx, 1,
1550                           0, 0);
1551     NR::Matrix const final( n2d * skew * d2n );
1552     sp_selection_apply_affine(selection, final);
1555 void sp_selection_move_relative(Inkscape::Selection *selection, NR::Point const &move)
1557     sp_selection_apply_affine(selection, NR::Matrix(NR::translate(move)));
1560 void sp_selection_move_relative(Inkscape::Selection *selection, double dx, double dy)
1562     sp_selection_apply_affine(selection, NR::Matrix(NR::translate(dx, dy)));
1566 /**
1567  * \brief sp_selection_rotate_90
1568  *
1569  * This function rotates selected objects 90 degrees clockwise.
1570  *
1571  */
1573 void sp_selection_rotate_90_cw()
1575     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1577     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1579     if (selection->isEmpty())
1580         return;
1582     GSList const *l = selection->itemList();
1583     NR::rotate const rot_neg_90(NR::Point(0, -1));
1584     for (GSList const *l2 = l ; l2 != NULL ; l2 = l2->next) {
1585         SPItem *item = SP_ITEM(l2->data);
1586         sp_item_rotate_rel(item, rot_neg_90);
1587     }
1589     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_ROTATE_90_CCW, 
1590                      _("Rotate 90&#176; CW"));
1594 /**
1595  * \brief sp_selection_rotate_90_ccw
1596  *
1597  * This function rotates selected objects 90 degrees counter-clockwise.
1598  *
1599  */
1601 void sp_selection_rotate_90_ccw()
1603     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1605     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1607     if (selection->isEmpty())
1608         return;
1610     GSList const *l = selection->itemList();
1611     NR::rotate const rot_neg_90(NR::Point(0, 1));
1612     for (GSList const *l2 = l ; l2 != NULL ; l2 = l2->next) {
1613         SPItem *item = SP_ITEM(l2->data);
1614         sp_item_rotate_rel(item, rot_neg_90);
1615     }
1617     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_ROTATE_90_CW,
1618                      _("Rotate 90&#176; CCW"));
1621 void
1622 sp_selection_rotate(Inkscape::Selection *selection, gdouble const angle_degrees)
1624     if (selection->isEmpty())
1625         return;
1627     NR::Point center = selection->center();
1629     sp_selection_rotate_relative(selection, center, angle_degrees);
1631     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1632                            ( ( angle_degrees > 0 )
1633                              ? "selector:rotate:ccw"
1634                              : "selector:rotate:cw" ), 
1635                            SP_VERB_CONTEXT_SELECT, 
1636                            _("Rotate"));
1639 /**
1640 \param  angle   the angle in "angular pixels", i.e. how many visible pixels must move the outermost point of the rotated object
1641 */
1642 void
1643 sp_selection_rotate_screen(Inkscape::Selection *selection, gdouble angle)
1645     if (selection->isEmpty())
1646         return;
1648     NR::Rect const bbox(selection->bounds());
1650     NR::Point center = selection->center();
1652     gdouble const zoom = selection->desktop()->current_zoom();
1653     gdouble const zmove = angle / zoom;
1654     gdouble const r = NR::L2(bbox.max() - center);
1656     gdouble const zangle = 180 * atan2(zmove, r) / M_PI;
1658     sp_selection_rotate_relative(selection, center, zangle);
1660     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1661                            ( (angle > 0)
1662                              ? "selector:rotate:ccw"
1663                              : "selector:rotate:cw" ),
1664                            SP_VERB_CONTEXT_SELECT, 
1665                            _("Rotate by pixels"));
1668 void
1669 sp_selection_scale(Inkscape::Selection *selection, gdouble grow)
1671     if (selection->isEmpty())
1672         return;
1674     NR::Rect const bbox(selection->bounds());
1675     NR::Point const center(bbox.midpoint());
1676     double const max_len = bbox.maxExtent();
1678     // you can't scale "do nizhe pola" (below zero)
1679     if ( max_len + grow <= 1e-3 ) {
1680         return;
1681     }
1683     double const times = 1.0 + grow / max_len;
1684     sp_selection_scale_relative(selection, center, NR::scale(times, times));
1686     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1687                            ( (grow > 0)
1688                              ? "selector:scale:larger"
1689                              : "selector:scale:smaller" ),
1690                            SP_VERB_CONTEXT_SELECT,
1691                            _("Scale"));
1694 void
1695 sp_selection_scale_screen(Inkscape::Selection *selection, gdouble grow_pixels)
1697     sp_selection_scale(selection,
1698                        grow_pixels / selection->desktop()->current_zoom());
1701 void
1702 sp_selection_scale_times(Inkscape::Selection *selection, gdouble times)
1704     if (selection->isEmpty())
1705         return;
1707     NR::Point const center(selection->bounds().midpoint());
1708     sp_selection_scale_relative(selection, center, NR::scale(times, times));
1709     sp_document_done(sp_desktop_document(selection->desktop()), SP_VERB_CONTEXT_SELECT, 
1710                      _("Scale by whole factor"));
1713 void
1714 sp_selection_move(gdouble dx, gdouble dy)
1716     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1717     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1718     if (selection->isEmpty()) {
1719         return;
1720     }
1722     sp_selection_move_relative(selection, dx, dy);
1724     if (dx == 0) {
1725         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT, 
1726                                _("Move vertically"));
1727     } else if (dy == 0) {
1728         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT, 
1729                                _("Move horizontally"));
1730     } else {
1731         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT, 
1732                          _("Move"));
1733     }
1736 void
1737 sp_selection_move_screen(gdouble dx, gdouble dy)
1739     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1741     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1742     if (selection->isEmpty()) {
1743         return;
1744     }
1746     // same as sp_selection_move but divide deltas by zoom factor
1747     gdouble const zoom = desktop->current_zoom();
1748     gdouble const zdx = dx / zoom;
1749     gdouble const zdy = dy / zoom;
1750     sp_selection_move_relative(selection, zdx, zdy);
1752     if (dx == 0) {
1753         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT, 
1754                                _("Move vertically by pixels"));
1755     } else if (dy == 0) {
1756         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT, 
1757                                _("Move horizontally by pixels"));
1758     } else {
1759         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT, 
1760                          _("Move"));
1761     }
1764 namespace {
1766 template <typename D>
1767 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1768                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1770 template <typename D>
1771 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items, SPObject *root,
1772                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1774 struct Forward {
1775     typedef SPObject *Iterator;
1777     static Iterator children(SPObject *o) { return sp_object_first_child(o); }
1778     static Iterator siblings_after(SPObject *o) { return SP_OBJECT_NEXT(o); }
1779     static void dispose(Iterator i) {}
1781     static SPObject *object(Iterator i) { return i; }
1782     static Iterator next(Iterator i) { return SP_OBJECT_NEXT(i); }
1783 };
1785 struct Reverse {
1786     typedef GSList *Iterator;
1788     static Iterator children(SPObject *o) {
1789         return make_list(o->firstChild(), NULL);
1790     }
1791     static Iterator siblings_after(SPObject *o) {
1792         return make_list(SP_OBJECT_PARENT(o)->firstChild(), o);
1793     }
1794     static void dispose(Iterator i) {
1795         g_slist_free(i);
1796     }
1798     static SPObject *object(Iterator i) {
1799         return reinterpret_cast<SPObject *>(i->data);
1800     }
1801     static Iterator next(Iterator i) { return i->next; }
1803 private:
1804     static GSList *make_list(SPObject *object, SPObject *limit) {
1805         GSList *list=NULL;
1806         while ( object != limit ) {
1807             list = g_slist_prepend(list, object);
1808             object = SP_OBJECT_NEXT(object);
1809         }
1810         return list;
1811     }
1812 };
1816 void
1817 sp_selection_item_next(void)
1819     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1820     g_return_if_fail(desktop != NULL);
1821     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1823     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs_get_int_attribute ("options.kbselection", "inlayer", PREFS_SELECTION_LAYER);
1824     bool onlyvisible = prefs_get_int_attribute ("options.kbselection", "onlyvisible", 1);
1825     bool onlysensitive = prefs_get_int_attribute ("options.kbselection", "onlysensitive", 1);
1827     SPObject *root;
1828     if (PREFS_SELECTION_ALL != inlayer) {
1829         root = selection->activeContext();
1830     } else {
1831         root = desktop->currentRoot();
1832     }
1834     SPItem *item=next_item_from_list<Forward>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1836     if (item) {
1837         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1838         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1839             scroll_to_show_item(desktop, item);
1840         }
1841     }
1844 void
1845 sp_selection_item_prev(void)
1847     SPDocument *document = SP_ACTIVE_DOCUMENT;
1848     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1849     g_return_if_fail(document != NULL);
1850     g_return_if_fail(desktop != NULL);
1851     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1853     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs_get_int_attribute ("options.kbselection", "inlayer", PREFS_SELECTION_LAYER);
1854     bool onlyvisible = prefs_get_int_attribute ("options.kbselection", "onlyvisible", 1);
1855     bool onlysensitive = prefs_get_int_attribute ("options.kbselection", "onlysensitive", 1);
1857     SPObject *root;
1858     if (PREFS_SELECTION_ALL != inlayer) {
1859         root = selection->activeContext();
1860     } else {
1861         root = desktop->currentRoot();
1862     }
1864     SPItem *item=next_item_from_list<Reverse>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1866     if (item) {
1867         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1868         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1869             scroll_to_show_item(desktop, item);
1870         }
1871     }
1874 namespace {
1876 template <typename D>
1877 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items,
1878                             SPObject *root, bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1880     SPObject *current=root;
1881     while (items) {
1882         SPItem *item=SP_ITEM(items->data);
1883         if ( root->isAncestorOf(item) &&
1884              ( !only_in_viewport || desktop->isWithinViewport(item) ) )
1885         {
1886             current = item;
1887             break;
1888         }
1889         items = items->next;
1890     }
1892     GSList *path=NULL;
1893     while ( current != root ) {
1894         path = g_slist_prepend(path, current);
1895         current = SP_OBJECT_PARENT(current);
1896     }
1898     SPItem *next;
1899     // first, try from the current object
1900     next = next_item<D>(desktop, path, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1901     g_slist_free(path);
1903     if (!next) { // if we ran out of objects, start over at the root
1904         next = next_item<D>(desktop, NULL, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1905     }
1907     return next;
1910 template <typename D>
1911 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1912                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1914     typename D::Iterator children;
1915     typename D::Iterator iter;
1917     SPItem *found=NULL;
1919     if (path) {
1920         SPObject *object=reinterpret_cast<SPObject *>(path->data);
1921         g_assert(SP_OBJECT_PARENT(object) == root);
1922         if (desktop->isLayer(object)) {
1923             found = next_item<D>(desktop, path->next, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1924         }
1925         iter = children = D::siblings_after(object);
1926     } else {
1927         iter = children = D::children(root);
1928     }
1930     while ( iter && !found ) {
1931         SPObject *object=D::object(iter);
1932         if (desktop->isLayer(object)) {
1933             if (PREFS_SELECTION_LAYER != inlayer) { // recurse into sublayers
1934                 found = next_item<D>(desktop, NULL, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1935             }
1936         } else if ( SP_IS_ITEM(object) &&
1937                     ( !only_in_viewport || desktop->isWithinViewport(SP_ITEM(object)) ) &&
1938                     ( !onlyvisible || !desktop->itemIsHidden(SP_ITEM(object))) &&
1939                     ( !onlysensitive || !SP_ITEM(object)->isLocked()) &&
1940                     !desktop->isLayer(SP_ITEM(object)) )
1941         {
1942             found = SP_ITEM(object);
1943         }
1944         iter = D::next(iter);
1945     }
1947     D::dispose(children);
1949     return found;
1954 /**
1955  * If \a item is not entirely visible then adjust visible area to centre on the centre on of
1956  * \a item.
1957  */
1958 void scroll_to_show_item(SPDesktop *desktop, SPItem *item)
1960     NR::Rect dbox = desktop->get_display_area();
1961     NR::Rect sbox = sp_item_bbox_desktop(item);
1963     if (dbox.contains(sbox) == false) {
1964         NR::Point const s_dt = sbox.midpoint();
1965         NR::Point const s_w = desktop->d2w(s_dt);
1966         NR::Point const d_dt = dbox.midpoint();
1967         NR::Point const d_w = desktop->d2w(d_dt);
1968         NR::Point const moved_w( d_w - s_w );
1969         gint const dx = (gint) moved_w[X];
1970         gint const dy = (gint) moved_w[Y];
1971         desktop->scroll_world(dx, dy);
1972     }
1976 void
1977 sp_selection_clone()
1979     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
1980     if (desktop == NULL)
1981         return;
1983     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1985     // check if something is selected
1986     if (selection->isEmpty()) {
1987         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object</b> to clone."));
1988         return;
1989     }
1991     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
1992   
1993     selection->clear();
1994   
1995     // sorting items from different parents sorts each parent's subset without possibly mixing them, just what we need
1996     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
1998     GSList *newsel = NULL;
1999  
2000     while (reprs) {
2001         Inkscape::XML::Node *sel_repr = (Inkscape::XML::Node *) reprs->data;
2002         Inkscape::XML::Node *parent = sp_repr_parent(sel_repr);
2004         Inkscape::XML::Node *clone = sp_repr_new("svg:use");
2005         sp_repr_set_attr(clone, "x", "0");
2006         sp_repr_set_attr(clone, "y", "0");
2007         sp_repr_set_attr(clone, "xlink:href", g_strdup_printf("#%s", sel_repr->attribute("id")));
2009         sp_repr_set_attr(clone, "inkscape:transform-center-x", sel_repr->attribute("inkscape:transform-center-x"));
2010         sp_repr_set_attr(clone, "inkscape:transform-center-y", sel_repr->attribute("inkscape:transform-center-y"));
2011         
2012         // add the new clone to the top of the original's parent
2013         parent->appendChild(clone);
2015         newsel = g_slist_prepend(newsel, clone);
2016         reprs = g_slist_remove(reprs, sel_repr);
2017         Inkscape::GC::release(clone);
2018     }
2019     
2020     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_CLONE, 
2021                      _("Clone"));
2023     selection->setReprList(newsel);
2024  
2025     g_slist_free(newsel);
2028 void
2029 sp_selection_unlink()
2031     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2032     if (!desktop)
2033         return;
2035     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2037     if (selection->isEmpty()) {
2038         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>clone</b> to unlink."));
2039         return;
2040     }
2042     // Get a copy of current selection.
2043     GSList *new_select = NULL;
2044     bool unlinked = false;
2045     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2046          items != NULL;
2047          items = items->next)
2048     {
2049         SPItem *use = (SPItem *) items->data;
2051         if (!SP_IS_USE(use)) {
2052             // keep the non-yse item in the new selection
2053             new_select = g_slist_prepend(new_select, use);
2054             continue;
2055         }
2057         SPItem *unlink = sp_use_unlink(SP_USE(use));
2058         unlinked = true;
2059         // Add ungrouped items to the new selection.
2060         new_select = g_slist_prepend(new_select, unlink);
2061     }
2063     if (new_select) { // set new selection
2064         selection->clear();
2065         selection->setList(new_select);
2066         g_slist_free(new_select);
2067     }
2068     if (!unlinked) {
2069         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to unlink</b> in the selection."));
2070     }
2072     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2073                      _("Unlink clone"));
2076 void
2077 sp_select_clone_original()
2079     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2080     if (desktop == NULL)
2081         return;
2083     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2085     SPItem *item = selection->singleItem();
2087     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.");
2089     // Check if other than two objects are selected
2090     if (g_slist_length((GSList *) selection->itemList()) != 1 || !item) {
2091         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2092         return;
2093     }
2095     SPItem *original = NULL;
2096     if (SP_IS_USE(item)) {
2097         original = sp_use_get_original (SP_USE(item));
2098     } else if (SP_IS_OFFSET(item) && SP_OFFSET (item)->sourceHref) {
2099         original = sp_offset_get_source (SP_OFFSET(item));
2100     } else if (SP_IS_TEXT_TEXTPATH(item)) {
2101         original = sp_textpath_get_path_item (SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item))));
2102     } else if (SP_IS_FLOWTEXT(item)) {
2103         original = SP_FLOWTEXT(item)->get_frame (NULL); // first frame only
2104     } else { // it's an object that we don't know what to do with
2105         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2106         return;
2107     }
2109     if (!original) {
2110         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)"));
2111         return;
2112     }
2114     for (SPObject *o = original; o && !SP_IS_ROOT(o); o = SP_OBJECT_PARENT (o)) {
2115         if (SP_IS_DEFS (o)) {
2116             desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("The object you're trying to select is <b>not visible</b> (it is in &lt;defs&gt;)"));
2117             return;
2118         }
2119     }
2121     if (original) {
2122         selection->clear();
2123         selection->set(original);
2124         if (SP_CYCLING == SP_CYCLE_FOCUS) {
2125             scroll_to_show_item(desktop, original);
2126         }
2127     }
2130 void
2131 sp_selection_tile(bool apply)
2133     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2134     if (desktop == NULL)
2135         return;
2137     SPDocument *document = sp_desktop_document(desktop);
2139     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2141     // check if something is selected
2142     if (selection->isEmpty()) {
2143         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to pattern."));
2144         return;
2145     }
2147     sp_document_ensure_up_to_date(document);
2148     NR::Rect r = selection->bounds();
2149     if (r.isEmpty()) {
2150         return;
2151     }
2153     // calculate the transform to be applied to objects to move them to 0,0
2154     NR::Point move_p = NR::Point(0, sp_document_height(document)) - (r.min() + NR::Point (0, r.extent(NR::Y)));
2155     move_p[NR::Y] = -move_p[NR::Y];
2156     NR::Matrix move = NR::Matrix (NR::translate (move_p));
2158     GSList *items = g_slist_copy((GSList *) selection->itemList());
2160     items = g_slist_sort (items, (GCompareFunc) sp_object_compare_position);
2162     // bottommost object, after sorting
2163     SPObject *parent = SP_OBJECT_PARENT (items->data);
2165     NR::Matrix parent_transform = sp_item_i2root_affine(SP_ITEM(parent));
2167     // remember the position of the first item
2168     gint pos = SP_OBJECT_REPR (items->data)->position();
2170     // create a list of duplicates
2171     GSList *repr_copies = NULL;
2172     for (GSList *i = items; i != NULL; i = i->next) {
2173         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2174         repr_copies = g_slist_prepend (repr_copies, dup);
2175     }
2177     NR::Rect bounds(desktop->dt2doc(r.min()), desktop->dt2doc(r.max()));
2179     if (apply) {
2180         // delete objects so that their clones don't get alerted; this object will be restored shortly
2181         for (GSList *i = items; i != NULL; i = i->next) {
2182             SPObject *item = SP_OBJECT (i->data);
2183             item->deleteObject (false);
2184         }
2185     }
2187     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2188     // without disturbing clones.
2189     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2190     int saved_compensation = prefs_get_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
2191     prefs_set_int_attribute("options.clonecompensation", "value", SP_CLONE_COMPENSATION_UNMOVED);
2193     const gchar *pat_id = pattern_tile (repr_copies, bounds, document,
2194                                         NR::Matrix(NR::translate(desktop->dt2doc(NR::Point(r.min()[NR::X], r.max()[NR::Y])))) * parent_transform.inverse(), parent_transform * move);
2196     // restore compensation setting
2197     prefs_set_int_attribute("options.clonecompensation", "value", saved_compensation);
2199     if (apply) {
2200         Inkscape::XML::Node *rect = sp_repr_new ("svg:rect");
2201         rect->setAttribute("style", g_strdup_printf("stroke:none;fill:url(#%s)", pat_id));
2203         NR::Point min = bounds.min() * parent_transform.inverse();
2204         NR::Point max = bounds.max() * parent_transform.inverse();
2206         sp_repr_set_svg_double(rect, "width", max[NR::X] - min[NR::X]);
2207         sp_repr_set_svg_double(rect, "height", max[NR::Y] - min[NR::Y]);
2208         sp_repr_set_svg_double(rect, "x", min[NR::X]);
2209         sp_repr_set_svg_double(rect, "y", min[NR::Y]);
2211         // restore parent and position
2212         SP_OBJECT_REPR (parent)->appendChild(rect);
2213         rect->setPosition(pos > 0 ? pos : 0);
2214         SPItem *rectangle = (SPItem *) sp_desktop_document (desktop)->getObjectByRepr(rect);
2216         Inkscape::GC::release(rect);
2218         selection->clear();
2219         selection->set(rectangle);
2220     }
2222     g_slist_free (items);
2224     sp_document_done (document, SP_VERB_EDIT_TILE, 
2225                       _("Objects to pattern"));
2228 void
2229 sp_selection_untile()
2231     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2232     if (desktop == NULL)
2233         return;
2235     SPDocument *document = sp_desktop_document(desktop);
2237     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2239     // check if something is selected
2240     if (selection->isEmpty()) {
2241         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object with pattern fill</b> to extract objects from."));
2242         return;
2243     }
2245     GSList *new_select = NULL;
2247     bool did = false;
2249     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2250          items != NULL;
2251          items = items->next) {
2253         SPItem *item = (SPItem *) items->data;
2255         SPStyle *style = SP_OBJECT_STYLE (item);
2257         if (!style || style->fill.type != SP_PAINT_TYPE_PAINTSERVER)
2258             continue;
2260         SPObject *server = SP_OBJECT_STYLE_FILL_SERVER(item);
2262         if (!SP_IS_PATTERN(server))
2263             continue;
2265         did = true;
2267         SPPattern *pattern = pattern_getroot (SP_PATTERN (server));
2269         NR::Matrix pat_transform = pattern_patternTransform (SP_PATTERN (server));
2270         pat_transform *= item->transform;
2272         for (SPObject *child = sp_object_first_child(SP_OBJECT(pattern)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
2273             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate();
2274             SPItem *i = SP_ITEM (desktop->currentLayer()->appendChildRepr(copy));
2276            // FIXME: relink clones to the new canvas objects
2277            // use SPObject::setid when mental finishes it to steal ids of
2279             // this is needed to make sure the new item has curve (simply requestDisplayUpdate does not work)
2280             sp_document_ensure_up_to_date (document);
2282             NR::Matrix transform( i->transform * pat_transform );
2283             sp_item_write_transform(i, SP_OBJECT_REPR(i), transform);
2285             new_select = g_slist_prepend(new_select, i);
2286         }
2288         SPCSSAttr *css = sp_repr_css_attr_new ();
2289         sp_repr_css_set_property (css, "fill", "none");
2290         sp_repr_css_change (SP_OBJECT_REPR (item), css, "style");
2291     }
2293     if (!did) {
2294         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No pattern fills</b> in the selection."));
2295     } else {
2296         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNTILE, 
2297                          _("Pattern to objects"));
2298         selection->setList(new_select);
2299     }
2302 void
2303 sp_selection_get_export_hints (Inkscape::Selection *selection, const char **filename, float *xdpi, float *ydpi) 
2305     if (selection->isEmpty()) {
2306         return;
2307     }
2309     const GSList * reprlst = selection->reprList();
2310     bool filename_search = TRUE;
2311     bool xdpi_search = TRUE;
2312     bool ydpi_search = TRUE;
2314     for(; reprlst != NULL &&
2315             filename_search &&
2316             xdpi_search &&
2317             ydpi_search;
2318         reprlst = reprlst->next) {
2319         const gchar * dpi_string;
2320         Inkscape::XML::Node * repr = (Inkscape::XML::Node *)reprlst->data;
2322         if (filename_search) {
2323             *filename = repr->attribute("inkscape:export-filename");
2324             if (*filename != NULL)
2325                 filename_search = FALSE;
2326         }
2328         if (xdpi_search) {
2329             dpi_string = NULL;
2330             dpi_string = repr->attribute("inkscape:export-xdpi");
2331             if (dpi_string != NULL) {
2332                 *xdpi = atof(dpi_string);
2333                 xdpi_search = FALSE;
2334             }
2335         }
2337         if (ydpi_search) {
2338             dpi_string = NULL;
2339             dpi_string = repr->attribute("inkscape:export-ydpi");
2340             if (dpi_string != NULL) {
2341                 *ydpi = atof(dpi_string);
2342                 ydpi_search = FALSE;
2343             }
2344         }
2345     }
2348 void
2349 sp_document_get_export_hints (SPDocument * doc, const char **filename, float *xdpi, float *ydpi) 
2351     Inkscape::XML::Node * repr = sp_document_repr_root(doc);
2352     const gchar * dpi_string;
2354     *filename = repr->attribute("inkscape:export-filename");
2356     dpi_string = NULL;
2357     dpi_string = repr->attribute("inkscape:export-xdpi");
2358     if (dpi_string != NULL) {
2359         *xdpi = atof(dpi_string);
2360     }
2362     dpi_string = NULL;
2363     dpi_string = repr->attribute("inkscape:export-ydpi");
2364     if (dpi_string != NULL) {
2365         *ydpi = atof(dpi_string);
2366     }
2369 void
2370 sp_selection_create_bitmap_copy ()
2372     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2373     if (desktop == NULL)
2374         return;
2376     SPDocument *document = sp_desktop_document(desktop);
2378     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2380     // check if something is selected
2381     if (selection->isEmpty()) {
2382         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to make a bitmap copy."));
2383         return;
2384     }
2386     // Get the bounding box of the selection
2387     NRRect bbox;
2388     sp_document_ensure_up_to_date (document);
2389     selection->bounds(&bbox);
2390     if (NR_RECT_DFLS_TEST_EMPTY(&bbox)) {
2391         return; // exceptional situation, so not bother with a translatable error message, just quit quietly
2392     }
2394     // List of the items to show; all others will be hidden
2395     GSList *items = g_slist_copy ((GSList *) selection->itemList());
2397     // Sort items so that the topmost comes last
2398     items = g_slist_sort(items, (GCompareFunc) sp_item_repr_compare_position);
2400     // Generate a random value from the current time (you may create bitmap from the same object(s)
2401     // multiple times, and this is done so that they don't clash)
2402     GTimeVal cu;
2403     g_get_current_time (&cu);
2404     guint current = (int) (cu.tv_sec * 1000000 + cu.tv_usec) % 1024;
2406     // Create the filename
2407     gchar *filename = g_strdup_printf ("%s-%s-%u.png", document->name, SP_OBJECT_REPR(items->data)->attribute("id"), current);
2408     // Imagemagick is known not to handle spaces in filenames, so we replace anything but letters,
2409     // digits, and a few other chars, with "_"
2410     filename = g_strcanon (filename, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.=+~$#@^&!?", '_');
2411     // Build the complete path by adding document->base if set
2412     gchar *filepath = g_build_filename (document->base?document->base:"", filename, NULL);
2414     //g_print ("%s\n", filepath);
2416     // Remember parent and z-order of the topmost one
2417     gint pos = SP_OBJECT_REPR(g_slist_last(items)->data)->position();
2418     SPObject *parent_object = SP_OBJECT_PARENT(g_slist_last(items)->data);
2419     Inkscape::XML::Node *parent = SP_OBJECT_REPR(parent_object);
2421     // Calculate resolution
2422     double res;
2423     int const prefs_res = prefs_get_int_attribute ("options.createbitmap", "resolution", 0);
2424     int const prefs_min = prefs_get_int_attribute ("options.createbitmap", "minsize", 0);
2425     if (0 < prefs_res) {
2426         // If it's given explicitly in prefs, take it
2427         res = prefs_res;
2428     } else if (0 < prefs_min) {
2429         // If minsize is given, look up minimum bitmap size (default 250 pixels) and calculate resolution from it
2430         res = PX_PER_IN * prefs_min / MIN ((bbox.x1 - bbox.x0), (bbox.y1 - bbox.y0));
2431     } else {
2432         float hint_xdpi = 0, hint_ydpi = 0;
2433         const char *hint_filename;
2434         // take resolution hint from the selected objects
2435         sp_selection_get_export_hints (selection, &hint_filename, &hint_xdpi, &hint_ydpi);
2436         if (hint_xdpi != 0) {
2437             res = hint_xdpi;
2438         } else {
2439             // take resolution hint from the document
2440             sp_document_get_export_hints (document, &hint_filename, &hint_xdpi, &hint_ydpi);
2441             if (hint_xdpi != 0) {
2442                 res = hint_xdpi;
2443             } else {
2444                 // if all else fails, take the default 90 dpi
2445                 res = PX_PER_IN;
2446             }
2447         }
2448     }
2450     // The width and height of the bitmap in pixels
2451     unsigned width = (unsigned) floor ((bbox.x1 - bbox.x0) * res / PX_PER_IN);
2452     unsigned height =(unsigned) floor ((bbox.y1 - bbox.y0) * res / PX_PER_IN);
2454     // Find out if we have to run a filter
2455     const gchar *run = NULL;
2456     const gchar *filter = prefs_get_string_attribute ("options.createbitmap", "filter");
2457     if (filter) {
2458         // filter command is given;
2459         // see if we have a parameter to pass to it
2460         const gchar *param1 = prefs_get_string_attribute ("options.createbitmap", "filter_param1");
2461         if (param1) {
2462             if (param1[strlen(param1) - 1] == '%') {
2463                 // if the param string ends with %, interpret it as a percentage of the image's max dimension
2464                 gchar p1[256];
2465                 g_ascii_dtostr (p1, 256, ceil (g_ascii_strtod (param1, NULL) * MAX(width, height) / 100));
2466                 // the first param is always the image filename, the second is param1
2467                 run = g_strdup_printf ("%s \"%s\" %s", filter, filepath, p1);
2468             } else {
2469                 // otherwise pass the param1 unchanged
2470                 run = g_strdup_printf ("%s \"%s\" %s", filter, filepath, param1);
2471             }
2472         } else {
2473             // run without extra parameter
2474             run = g_strdup_printf ("%s \"%s\"", filter, filepath);
2475         }
2476     }
2478     // Calculate the matrix that will be applied to the image so that it exactly overlaps the source objects
2479     NR::Matrix eek = sp_item_i2d_affine (SP_ITEM(parent_object));
2480     NR::Matrix t;
2481     if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2482         t = NR::scale (1, -1) * NR::translate ((unsigned) (bbox.x0 + 0.5), (unsigned) (bbox.y1 + 0.5)) * eek.inverse();
2483     } else {
2484         t = NR::scale (1, -1) * NR::translate (bbox.x0, bbox.y1) * eek.inverse();
2485     }
2487     // Do the export
2488     sp_export_png_file(document, filepath,
2489                    bbox.x0, bbox.y0, bbox.x1, bbox.y1,
2490                    width, height, res, res,
2491                    (guint32) 0xffffff00,
2492                    NULL, NULL,
2493                    true,  /*bool force_overwrite,*/
2494                    items);
2496     g_slist_free (items);
2498     // Run filter, if any
2499     if (run) {
2500         g_print ("Running external filter: %s\n", run);
2501         system (run);
2502     }
2504     // Import the image back
2505     GdkPixbuf *pb = gdk_pixbuf_new_from_file (filepath, NULL);
2506     if (pb) {
2507         // Create the repr for the image
2508         Inkscape::XML::Node * repr = sp_repr_new ("svg:image");
2509         repr->setAttribute("xlink:href", filename);
2510         repr->setAttribute("sodipodi:absref", filepath);
2511         if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2512             sp_repr_set_svg_double(repr, "width", width);
2513             sp_repr_set_svg_double(repr, "height", height);
2514         } else {
2515             sp_repr_set_svg_double(repr, "width", (bbox.x1 - bbox.x0));
2516             sp_repr_set_svg_double(repr, "height", (bbox.y1 - bbox.y0));
2517         }
2519         // Write transform
2520         gchar c[256];
2521         if (sp_svg_transform_write(c, 256, t)) {
2522             repr->setAttribute("transform", c);
2523         }
2525         // add the new repr to the parent
2526         parent->appendChild(repr);
2528         // move to the saved position
2529         repr->setPosition(pos > 0 ? pos + 1 : 1);
2531         // Set selection to the new image
2532         selection->clear();
2533         selection->add(repr);
2535         // Clean up
2536         Inkscape::GC::release(repr);
2537         gdk_pixbuf_unref (pb);
2539         // Complete undoable transaction
2540         sp_document_done (document, SP_VERB_SELECTION_CREATE_BITMAP,
2541                           _("Create bitmap"));
2542     }
2544     g_free (filename);
2545     g_free (filepath);
2548 /**
2549  * \brief sp_selection_set_mask
2550  *
2551  * This function creates a mask or clipPath from selection
2552  * Two different modes:
2553  *  if applyToLayer, all selection is moved to DEFS as mask/clippath
2554  *       and is applied to current layer
2555  *  otherwise, topmost object is used as mask for other objects
2556  * If \a apply_clip_path parameter is true, clipPath is created, otherwise mask
2557  * 
2558  */
2559 void
2560 sp_selection_set_mask(bool apply_clip_path, bool apply_to_layer)
2562     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2563     if (desktop == NULL)
2564         return;
2566     SPDocument *document = sp_desktop_document(desktop);
2567     
2568     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2570     // check if something is selected
2571     bool is_empty = selection->isEmpty();
2572     if ( apply_to_layer && is_empty) {
2573         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to create clippath or mask from."));
2574         return;
2575     } else if (!apply_to_layer && ( is_empty || NULL == selection->itemList()->next )) {
2576         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select mask object and <b>object(s)</b> to apply clippath or mask to."));
2577         return;
2578     }
2579     
2580     sp_document_ensure_up_to_date(document);
2582     GSList *items = g_slist_copy((GSList *) selection->itemList());
2583     
2584     items = g_slist_sort (items, (GCompareFunc) sp_object_compare_position);
2586     // create a list of duplicates
2587     GSList *mask_items = NULL;
2588     GSList *apply_to_items = NULL;
2589     GSList *items_to_delete = NULL;
2590     bool topmost = prefs_get_int_attribute ("options.maskobject", "topmost", 1);
2591     bool remove_original = prefs_get_int_attribute ("options.maskobject", "remove", 1);
2592     
2593     if (apply_to_layer) {
2594         // all selected items are used for mask, which is applied to a layer
2595         apply_to_items = g_slist_prepend (apply_to_items, desktop->currentLayer());
2597         for (GSList *i = items; i != NULL; i = i->next) {
2598             Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2599             mask_items = g_slist_prepend (mask_items, dup);
2601             if (remove_original) {
2602                 SPObject *item = SP_OBJECT (i->data);
2603                 items_to_delete = g_slist_prepend (items_to_delete, item);
2604             }
2605         }
2606     } else if (!topmost) {
2607         // topmost item is used as a mask, which is applied to other items in a selection
2608         GSList *i = items;
2609         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2610         mask_items = g_slist_prepend (mask_items, dup);
2612         if (remove_original) {
2613             SPObject *item = SP_OBJECT (i->data);
2614             items_to_delete = g_slist_prepend (items_to_delete, item);
2615         }
2616         
2617         for (i = i->next; i != NULL; i = i->next) {
2618             apply_to_items = g_slist_prepend (apply_to_items, i->data);
2619         }
2620     } else {
2621         GSList *i = NULL;
2622         for (i = items; NULL != i->next; i = i->next) {
2623             apply_to_items = g_slist_prepend (apply_to_items, i->data);
2624         }
2626         Inkscape::XML::Node *dup = (SP_OBJECT_REPR (i->data))->duplicate();
2627         mask_items = g_slist_prepend (mask_items, dup);
2629         if (remove_original) {
2630             SPObject *item = SP_OBJECT (i->data);
2631             items_to_delete = g_slist_prepend (items_to_delete, item);
2632         }
2633     }
2634     
2635     g_slist_free (items);
2636     items = NULL;
2637             
2638     gchar const* attributeName = apply_clip_path ? "clip-path" : "mask";
2639     for (GSList *i = apply_to_items; NULL != i; i = i->next) {
2640         SPItem *item = reinterpret_cast<SPItem *>(i->data);
2641         // inverted object transform should be applied to a mask object,
2642         // as mask is calculated in user space (after applying transform)
2643         NR::Matrix maskTransform (item->transform.inverse());
2645         GSList *mask_items_dup = NULL;
2646         for (GSList *mask_item = mask_items; NULL != mask_item; mask_item = mask_item->next) {
2647             Inkscape::XML::Node *dup = reinterpret_cast<Inkscape::XML::Node *>(mask_item->data)->duplicate();
2648             mask_items_dup = g_slist_prepend (mask_items_dup, dup);
2649         }
2651         const gchar *mask_id = NULL;
2652         if (apply_clip_path) {
2653             mask_id = sp_clippath_create(mask_items_dup, document, &maskTransform);
2654         } else {
2655             mask_id = sp_mask_create(mask_items_dup, document, &maskTransform);
2656         }
2658         g_slist_free (mask_items_dup);
2659         mask_items_dup = NULL;
2661         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, g_strdup_printf("url(#%s)", mask_id));
2662     }
2664     g_slist_free (mask_items);
2665     g_slist_free (apply_to_items);
2667     for (GSList *i = items_to_delete; NULL != i; i = i->next) {
2668         SPObject *item = SP_OBJECT (i->data);
2669         item->deleteObject (false);
2670     }
2671     g_slist_free (items_to_delete);
2673     if (apply_clip_path) 
2674         sp_document_done (document, SP_VERB_OBJECT_SET_CLIPPATH, _("Set clipping path"));
2675     else 
2676         sp_document_done (document, SP_VERB_OBJECT_SET_MASK, _("Set mask"));
2679 void sp_selection_unset_mask(bool apply_clip_path) {
2680     SPDesktop *desktop = SP_ACTIVE_DESKTOP;
2681     if (desktop == NULL)
2682         return;
2683     
2684     SPDocument *document = sp_desktop_document(desktop);    
2685     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2687     // check if something is selected
2688     if (selection->isEmpty()) {
2689         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove clippath or mask from."));
2690         return;
2691     }
2692     
2693     bool remove_original = prefs_get_int_attribute ("options.maskobject", "remove", 1);
2694     sp_document_ensure_up_to_date(document);
2696     gchar const* attributeName = apply_clip_path ? "clip-path" : "mask";
2697     std::map<SPObject*,SPItem*> referenced_objects;
2698     for (GSList const*i = selection->itemList(); NULL != i; i = i->next) {
2699         if (remove_original) {
2700             // remember referenced mask/clippath, so orphaned masks can be moved back to document
2701             SPItem *item = reinterpret_cast<SPItem *>(i->data);
2702             Inkscape::URIReference *uri_ref = NULL;
2703         
2704             if (apply_clip_path) {
2705                 uri_ref = item->clip_ref;
2706             } else {
2707                 uri_ref = item->mask_ref;
2708             }
2710             // collect distinct mask object (and associate with item to apply transform)
2711             if (NULL != uri_ref && NULL != uri_ref->getObject()) {
2712                 referenced_objects[uri_ref->getObject()] = item;
2713             }
2714         }
2716         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, "none");
2717     }
2719     // restore mask objects into a document
2720     for ( std::map<SPObject*,SPItem*>::iterator it = referenced_objects.begin() ; it != referenced_objects.end() ; ++it) {
2721         SPObject *obj = (*it).first;
2722         GSList *items_to_move = NULL;
2723         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
2724             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate();
2725             items_to_move = g_slist_prepend (items_to_move, copy);
2726         }
2728         if (!obj->isReferenced()) {
2729             // delete from defs if no other object references this mask
2730             obj->deleteObject(false);
2731         }
2733         // remember parent and position of the item to which the clippath/mask was applied
2734         Inkscape::XML::Node *parent = SP_OBJECT_REPR((*it).second)->parent();
2735         gint pos = SP_OBJECT_REPR((*it).second)->position();
2737         for (GSList *i = items_to_move; NULL != i; i = i->next) {
2738             Inkscape::XML::Node *repr = (Inkscape::XML::Node *)i->data;
2740             // insert into parent, restore pos
2741             parent->appendChild(repr);
2742             repr->setPosition((pos + 1) > 0 ? (pos + 1) : 0);
2744             SPItem *mask_item = (SPItem *) sp_desktop_document (desktop)->getObjectByRepr(repr);
2745             selection->add(repr);
2747             // transform mask, so it is moved the same spot where mask was applied
2748             NR::Matrix transform (mask_item->transform);
2749             transform *= (*it).second->transform;
2750             sp_item_write_transform(mask_item, SP_OBJECT_REPR(mask_item), transform);
2751         }
2753         g_slist_free (items_to_move);
2754     }
2756     if (apply_clip_path) 
2757         sp_document_done (document, SP_VERB_OBJECT_UNSET_CLIPPATH, _("Release clipping path"));
2758     else 
2759         sp_document_done (document, SP_VERB_OBJECT_UNSET_MASK, _("Release mask"));
2762 void fit_canvas_to_selection(SPDesktop *desktop) {
2763     g_return_if_fail(desktop != NULL);
2764     SPDocument *doc = sp_desktop_document(desktop);
2766     g_return_if_fail(doc != NULL);
2767     g_return_if_fail(desktop->selection != NULL);
2768     g_return_if_fail(!desktop->selection->isEmpty());
2769     NRRect bbox = {0,0,0,0};
2771     desktop->selection->bounds(&bbox);
2772     if (!empty(bbox)) {
2773         doc->fitToRect(bbox);
2774     }
2775 };
2777 void fit_canvas_to_drawing(SPDocument *doc) {
2778     g_return_if_fail(doc != NULL);
2779     NRRect bbox = {0,0,0,0};
2781     sp_document_ensure_up_to_date (doc);
2782     sp_item_invoke_bbox(SP_ITEM(doc->root), &bbox, sp_item_i2r_affine(SP_ITEM(doc->root)), TRUE);
2784     if (!empty(bbox)) {
2785         doc->fitToRect(bbox);
2786     }
2787 };
2789 void fit_canvas_to_selection_or_drawing(SPDesktop *desktop) {
2790     g_return_if_fail(desktop != NULL);
2791     SPDocument *doc = sp_desktop_document(desktop);
2793     g_return_if_fail(doc != NULL);
2794     g_return_if_fail(desktop->selection != NULL);
2796     if (desktop->selection->isEmpty()) {
2797         fit_canvas_to_drawing(doc);
2798     } else {
2799         fit_canvas_to_selection(desktop);
2800     }
2802     sp_document_done(doc, SP_VERB_FIT_CANVAS_TO_DRAWING, 
2803                      _("Fit page to selection"));
2804 };
2806 /*
2807   Local Variables:
2808   mode:c++
2809   c-file-style:"stroustrup"
2810   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
2811   indent-tabs-mode:nil
2812   fill-column:99
2813   End:
2814 */
2815 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :