Code

6786479d6230bda78540ff89461b2c80f323141e
[inkscape.git] / src / selection-chemistry.cpp
1 /** @file
2  * @brief Miscellanous operations on selected items
3  */
4 /* Authors:
5  *   Lauris Kaplinski <lauris@kaplinski.com>
6  *   Frank Felfe <innerspace@iname.com>
7  *   MenTaLguY <mental@rydia.net>
8  *   bulia byak <buliabyak@users.sf.net>
9  *   Andrius R. <knutux@gmail.com>
10  *   Jon A. Cruz <jon@joncruz.org>
11  *   Martin Sucha <martin.sucha-inkscape@jts-sro.sk>
12  *
13  * Copyright (C) 1999-2010 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 "selection-chemistry.h"
25 // TOOD fixme: This should be moved into preference repr
26 SPCycleType SP_CYCLING = SP_CYCLE_FOCUS;
29 #include <gtkmm/clipboard.h>
31 #include "svg/svg.h"
32 #include "desktop.h"
33 #include "desktop-style.h"
34 #include "dir-util.h"
35 #include "selection.h"
36 #include "tools-switch.h"
37 #include "desktop-handles.h"
38 #include "message-stack.h"
39 #include "sp-item-transform.h"
40 #include "marker.h"
41 #include "sp-use.h"
42 #include "sp-textpath.h"
43 #include "sp-tspan.h"
44 #include "sp-tref.h"
45 #include "sp-flowtext.h"
46 #include "sp-flowregion.h"
47 #include "sp-image.h"
48 #include "text-editing.h"
49 #include "text-context.h"
50 #include "connector-context.h"
51 #include "sp-path.h"
52 #include "sp-conn-end.h"
53 #include "dropper-context.h"
54 #include <glibmm/i18n.h>
55 #include "libnr/nr-matrix-rotate-ops.h"
56 #include "libnr/nr-matrix-translate-ops.h"
57 #include "libnr/nr-scale-ops.h"
58 #include <libnr/nr-matrix-ops.h>
59 #include <2geom/transforms.h>
60 #include "xml/repr.h"
61 #include "xml/rebase-hrefs.h"
62 #include "style.h"
63 #include "document-private.h"
64 #include "sp-gradient.h"
65 #include "sp-gradient-reference.h"
66 #include "sp-linear-gradient-fns.h"
67 #include "sp-pattern.h"
68 #include "sp-radial-gradient-fns.h"
69 #include "gradient-context.h"
70 #include "sp-namedview.h"
71 #include "preferences.h"
72 #include "sp-offset.h"
73 #include "sp-clippath.h"
74 #include "sp-mask.h"
75 #include "file.h"
76 #include "helper/png-write.h"
77 #include "layer-fns.h"
78 #include "context-fns.h"
79 #include <map>
80 #include <cstring>
81 #include <string>
82 #include "helper/units.h"
83 #include "sp-item.h"
84 #include "box3d.h"
85 #include "persp3d.h"
86 #include "unit-constants.h"
87 #include "xml/simple-document.h"
88 #include "sp-filter-reference.h"
89 #include "gradient-drag.h"
90 #include "uri-references.h"
91 #include "libnr/nr-convert2geom.h"
92 #include "display/curve.h"
93 #include "display/canvas-bpath.h"
94 #include "inkscape-private.h"
95 #include "path-chemistry.h"
96 #include "ui/tool/control-point-selection.h"
97 #include "ui/tool/multi-path-manipulator.h"
99 #include "enums.h"
100 #include "sp-item-group.h"
102 // For clippath editing
103 #include "tools-switch.h"
104 #include "ui/tool/node-tool.h"
106 #include "ui/clipboard.h"
108 using Geom::X;
109 using Geom::Y;
111 /* The clipboard handling is in ui/clipboard.cpp now. There are some legacy functions left here,
112 because the layer manipulation code uses them. It should be rewritten specifically
113 for that purpose. */
117 namespace Inkscape {
119 void SelectionHelper::selectAll(SPDesktop *dt)
121     if (tools_isactive(dt, TOOLS_NODES)) {
122         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
123         if (!nt->_multipath->empty()) {
124             nt->_multipath->selectSubpaths();
125             return;
126         }
127     }
128     sp_edit_select_all(dt);
131 void SelectionHelper::selectAllInAll(SPDesktop *dt)
133     if (tools_isactive(dt, TOOLS_NODES)) {
134         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
135         nt->_selected_nodes->selectAll();
136     } else {
137         sp_edit_select_all_in_all_layers(dt);
138     }
141 void SelectionHelper::selectNone(SPDesktop *dt)
143     if (tools_isactive(dt, TOOLS_NODES)) {
144         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
145         nt->_selected_nodes->clear();
146     } else {
147         sp_desktop_selection(dt)->clear();
148     }
151 void SelectionHelper::invert(SPDesktop *dt)
153     if (tools_isactive(dt, TOOLS_NODES)) {
154         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
155         nt->_multipath->invertSelectionInSubpaths();
156     } else {
157         sp_edit_invert(dt);
158     }
161 void SelectionHelper::invertAllInAll(SPDesktop *dt)
163     if (tools_isactive(dt, TOOLS_NODES)) {
164         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
165         nt->_selected_nodes->invertSelection();
166     } else {
167         sp_edit_invert_in_all_layers(dt);
168     }
171 void SelectionHelper::reverse(SPDesktop *dt)
173     // TODO make this a virtual method of event context!
174     if (tools_isactive(dt, TOOLS_NODES)) {
175         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
176         nt->_multipath->reverseSubpaths();
177     } else {
178         sp_selected_path_reverse(dt);
179     }
182 void SelectionHelper::selectNext(SPDesktop *dt)
184     SPEventContext *ec = dt->event_context;
185     if (tools_isactive(dt, TOOLS_NODES)) {
186         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
187         nt->_multipath->shiftSelection(1);
188     } else if (tools_isactive(dt, TOOLS_GRADIENT)
189                && ec->_grdrag->isNonEmpty()) {
190         sp_gradient_context_select_next(ec);
191     } else {
192         sp_selection_item_next(dt);
193     }
196 void SelectionHelper::selectPrev(SPDesktop *dt)
198     SPEventContext *ec = dt->event_context;
199     if (tools_isactive(dt, TOOLS_NODES)) {
200         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
201         nt->_multipath->shiftSelection(-1);
202     } else if (tools_isactive(dt, TOOLS_GRADIENT)
203                && ec->_grdrag->isNonEmpty()) {
204         sp_gradient_context_select_prev(ec);
205     } else {
206         sp_selection_item_prev(dt);
207     }
210 } // namespace Inkscape
213 /**
214  * Copies repr and its inherited css style elements, along with the accumulated transform 'full_t',
215  * then prepends the copy to 'clip'.
216  */
217 void sp_selection_copy_one(Inkscape::XML::Node *repr, Geom::Matrix full_t, GSList **clip, Inkscape::XML::Document* xml_doc)
219     Inkscape::XML::Node *copy = repr->duplicate(xml_doc);
221     // copy complete inherited style
222     SPCSSAttr *css = sp_repr_css_attr_inherited(repr, "style");
223     sp_repr_css_set(copy, css, "style");
224     sp_repr_css_attr_unref(css);
226     // write the complete accumulated transform passed to us
227     // (we're dealing with unattached repr, so we write to its attr
228     // instead of using sp_item_set_transform)
229     gchar *affinestr=sp_svg_transform_write(full_t);
230     copy->setAttribute("transform", affinestr);
231     g_free(affinestr);
233     *clip = g_slist_prepend(*clip, copy);
236 void sp_selection_copy_impl(GSList const *items, GSList **clip, Inkscape::XML::Document* xml_doc)
238     // Sort items:
239     GSList *sorted_items = g_slist_copy((GSList *) items);
240     sorted_items = g_slist_sort((GSList *) sorted_items, (GCompareFunc) sp_object_compare_position);
242     // Copy item reprs:
243     for (GSList *i = (GSList *) sorted_items; i != NULL; i = i->next) {
244         sp_selection_copy_one(SP_OBJECT_REPR(i->data), sp_item_i2doc_affine(SP_ITEM(i->data)), clip, xml_doc);
245     }
247     *clip = g_slist_reverse(*clip);
248     g_slist_free((GSList *) sorted_items);
251 GSList *sp_selection_paste_impl(SPDocument *doc, SPObject *parent, GSList **clip)
253     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
255     GSList *copied = NULL;
256     // add objects to document
257     for (GSList *l = *clip; l != NULL; l = l->next) {
258         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
259         Inkscape::XML::Node *copy = repr->duplicate(xml_doc);
261         // premultiply the item transform by the accumulated parent transform in the paste layer
262         Geom::Matrix local(sp_item_i2doc_affine(SP_ITEM(parent)));
263         if (!local.isIdentity()) {
264             gchar const *t_str = copy->attribute("transform");
265             Geom::Matrix item_t(Geom::identity());
266             if (t_str)
267                 sp_svg_transform_read(t_str, &item_t);
268             item_t *= local.inverse();
269             // (we're dealing with unattached repr, so we write to its attr instead of using sp_item_set_transform)
270             gchar *affinestr=sp_svg_transform_write(item_t);
271             copy->setAttribute("transform", affinestr);
272             g_free(affinestr);
273         }
275         parent->appendChildRepr(copy);
276         copied = g_slist_prepend(copied, copy);
277         Inkscape::GC::release(copy);
278     }
279     return copied;
282 void sp_selection_delete_impl(GSList const *items, bool propagate = true, bool propagate_descendants = true)
284     for (GSList const *i = items ; i ; i = i->next ) {
285         sp_object_ref((SPObject *)i->data, NULL);
286     }
287     for (GSList const *i = items; i != NULL; i = i->next) {
288         SPItem *item = reinterpret_cast<SPItem *>(i->data);
289         item->deleteObject(propagate, propagate_descendants);
290         sp_object_unref(item, NULL);
291     }
295 void sp_selection_delete(SPDesktop *desktop)
297     if (desktop == NULL) {
298         return;
299     }
301     if (tools_isactive(desktop, TOOLS_TEXT))
302         if (sp_text_delete_selection(desktop->event_context)) {
303             sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_TEXT,
304                              _("Delete text"));
305             return;
306         }
308     Inkscape::Selection *selection = sp_desktop_selection(desktop);
310     // check if something is selected
311     if (selection->isEmpty()) {
312         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("<b>Nothing</b> was deleted."));
313         return;
314     }
316     GSList const *selected = g_slist_copy(const_cast<GSList *>(selection->itemList()));
317     selection->clear();
318     sp_selection_delete_impl(selected);
319     g_slist_free((GSList *) selected);
321     /* a tool may have set up private information in it's selection context
322      * that depends on desktop items.  I think the only sane way to deal with
323      * this currently is to reset the current tool, which will reset it's
324      * associated selection context.  For example: deleting an object
325      * while moving it around the canvas.
326      */
327     tools_switch( desktop, tools_active( desktop ) );
329     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DELETE,
330                      _("Delete"));
333 void add_ids_recursive(std::vector<const gchar *> &ids, SPObject *obj)
335     if (!obj)
336         return;
338     ids.push_back(obj->getId());
340     if (SP_IS_GROUP(obj)) {
341         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
342             add_ids_recursive(ids, child);
343         }
344     }
347 void sp_selection_duplicate(SPDesktop *desktop, bool suppressDone)
349     if (desktop == NULL)
350         return;
352     SPDocument *doc = desktop->doc();
353     Inkscape::XML::Document* xml_doc = sp_document_repr_doc(doc);
354     Inkscape::Selection *selection = sp_desktop_selection(desktop);
356     // check if something is selected
357     if (selection->isEmpty()) {
358         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to duplicate."));
359         return;
360     }
362     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
364     selection->clear();
366     // sorting items from different parents sorts each parent's subset without possibly mixing
367     // them, just what we need
368     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
370     GSList *newsel = NULL;
372     std::vector<const gchar *> old_ids;
373     std::vector<const gchar *> new_ids;
374     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
375     bool relink_clones = prefs->getBool("/options/relinkclonesonduplicate/value");
377     while (reprs) {
378         Inkscape::XML::Node *old_repr = (Inkscape::XML::Node *) reprs->data;
379         Inkscape::XML::Node *parent = old_repr->parent();
380         Inkscape::XML::Node *copy = old_repr->duplicate(xml_doc);
382         parent->appendChild(copy);
384         if (relink_clones) {
385             SPObject *old_obj = doc->getObjectByRepr(old_repr);
386             SPObject *new_obj = doc->getObjectByRepr(copy);
387             add_ids_recursive(old_ids, old_obj);
388             add_ids_recursive(new_ids, new_obj);
389         }
391         newsel = g_slist_prepend(newsel, copy);
392         reprs = g_slist_remove(reprs, reprs->data);
393         Inkscape::GC::release(copy);
394     }
396     if (relink_clones) {
398         g_assert(old_ids.size() == new_ids.size());
400         for (unsigned int i = 0; i < old_ids.size(); i++) {
401             const gchar *id = old_ids[i];
402             SPObject *old_clone = doc->getObjectById(id);
403             if (SP_IS_USE(old_clone)) {
404                 SPItem *orig = sp_use_get_original(SP_USE(old_clone));
405                 if (!orig) // orphaned
406                     continue;
407                 for (unsigned int j = 0; j < old_ids.size(); j++) {
408                     if (!strcmp(orig->getId(), old_ids[j])) {
409                         // we have both orig and clone in selection, relink
410                         // std::cout << id  << " old, its ori: " << SP_OBJECT_ID(orig) << "; will relink:" << new_ids[i] << " to " << new_ids[j] << "\n";
411                         gchar *newref = g_strdup_printf("#%s", new_ids[j]);
412                         SPObject *new_clone = doc->getObjectById(new_ids[i]);
413                         SP_OBJECT_REPR(new_clone)->setAttribute("xlink:href", newref);
414                         new_clone->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
415                         g_free(newref);
416                     }
417                 }
418             }
419         }
420     }
423     if ( !suppressDone ) {
424         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DUPLICATE,
425                          _("Duplicate"));
426     }
428     selection->setReprList(newsel);
430     g_slist_free(newsel);
433 void sp_edit_clear_all(SPDesktop *dt)
435     if (!dt)
436         return;
438     SPDocument *doc = sp_desktop_document(dt);
439     sp_desktop_selection(dt)->clear();
441     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
442     GSList *items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
444     while (items) {
445         reinterpret_cast<SPObject*>(items->data)->deleteObject();
446         items = g_slist_remove(items, items->data);
447     }
449     sp_document_done(doc, SP_VERB_EDIT_CLEAR_ALL,
450                      _("Delete all"));
453 GSList *
454 get_all_items(GSList *list, SPObject *from, SPDesktop *desktop, bool onlyvisible, bool onlysensitive, GSList const *exclude)
456     for (SPObject *child = sp_object_first_child(from) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
457         if (SP_IS_ITEM(child) &&
458             !desktop->isLayer(SP_ITEM(child)) &&
459             (!onlysensitive || !SP_ITEM(child)->isLocked()) &&
460             (!onlyvisible || !desktop->itemIsHidden(SP_ITEM(child))) &&
461             (!exclude || !g_slist_find((GSList *) exclude, child))
462             )
463         {
464             list = g_slist_prepend(list, SP_ITEM(child));
465         }
467         if (SP_IS_ITEM(child) && desktop->isLayer(SP_ITEM(child))) {
468             list = get_all_items(list, child, desktop, onlyvisible, onlysensitive, exclude);
469         }
470     }
472     return list;
475 void sp_edit_select_all_full(SPDesktop *dt, bool force_all_layers, bool invert)
477     if (!dt)
478         return;
480     Inkscape::Selection *selection = sp_desktop_selection(dt);
482     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
484     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
485     PrefsSelectionContext inlayer = (PrefsSelectionContext) prefs->getInt("/options/kbselection/inlayer", PREFS_SELECTION_LAYER);
486     bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
487     bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive", true);
489     GSList *items = NULL;
491     GSList const *exclude = NULL;
492     if (invert) {
493         exclude = selection->itemList();
494     }
496     if (force_all_layers)
497         inlayer = PREFS_SELECTION_ALL;
499     switch (inlayer) {
500         case PREFS_SELECTION_LAYER: {
501         if ( (onlysensitive && SP_ITEM(dt->currentLayer())->isLocked()) ||
502              (onlyvisible && dt->itemIsHidden(SP_ITEM(dt->currentLayer()))) )
503         return;
505         GSList *all_items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
507         for (GSList *i = all_items; i; i = i->next) {
508             SPItem *item = SP_ITEM(i->data);
510             if (item && (!onlysensitive || !item->isLocked())) {
511                 if (!onlyvisible || !dt->itemIsHidden(item)) {
512                     if (!dt->isLayer(item)) {
513                         if (!invert || !g_slist_find((GSList *) exclude, item)) {
514                             items = g_slist_prepend(items, item); // leave it in the list
515                         }
516                     }
517                 }
518             }
519         }
521         g_slist_free(all_items);
522             break;
523         }
524         case PREFS_SELECTION_LAYER_RECURSIVE: {
525             items = get_all_items(NULL, dt->currentLayer(), dt, onlyvisible, onlysensitive, exclude);
526             break;
527         }
528         default: {
529         items = get_all_items(NULL, dt->currentRoot(), dt, onlyvisible, onlysensitive, exclude);
530             break;
531     }
532     }
534     selection->setList(items);
536     if (items) {
537         g_slist_free(items);
538     }
541 void sp_edit_select_all(SPDesktop *desktop)
543     sp_edit_select_all_full(desktop, false, false);
546 void sp_edit_select_all_in_all_layers(SPDesktop *desktop)
548     sp_edit_select_all_full(desktop, true, false);
551 void sp_edit_invert(SPDesktop *desktop)
553     sp_edit_select_all_full(desktop, false, true);
556 void sp_edit_invert_in_all_layers(SPDesktop *desktop)
558     sp_edit_select_all_full(desktop, true, true);
561 void sp_selection_group_impl(GSList *p, Inkscape::XML::Node *group, Inkscape::XML::Document *xml_doc, SPDocument *doc) {
563     p = g_slist_sort(p, (GCompareFunc) sp_repr_compare_position);
565     // Remember the position and parent of the topmost object.
566     gint topmost = ((Inkscape::XML::Node *) g_slist_last(p)->data)->position();
567     Inkscape::XML::Node *topmost_parent = ((Inkscape::XML::Node *) g_slist_last(p)->data)->parent();
569     while (p) {
570         Inkscape::XML::Node *current = (Inkscape::XML::Node *) p->data;
572         if (current->parent() == topmost_parent) {
573             Inkscape::XML::Node *spnew = current->duplicate(xml_doc);
574             sp_repr_unparent(current);
575             group->appendChild(spnew);
576             Inkscape::GC::release(spnew);
577             topmost --; // only reduce count for those items deleted from topmost_parent
578         } else { // move it to topmost_parent first
579             GSList *temp_clip = NULL;
581             // At this point, current may already have no item, due to its being a clone whose original is already moved away
582             // So we copy it artificially calculating the transform from its repr->attr("transform") and the parent transform
583             gchar const *t_str = current->attribute("transform");
584             Geom::Matrix item_t(Geom::identity());
585             if (t_str)
586                 sp_svg_transform_read(t_str, &item_t);
587             item_t *= sp_item_i2doc_affine(SP_ITEM(doc->getObjectByRepr(current->parent())));
588             // FIXME: when moving both clone and original from a transformed group (either by
589             // grouping into another parent, or by cut/paste) the transform from the original's
590             // parent becomes embedded into original itself, and this affects its clones. Fix
591             // this by remembering the transform diffs we write to each item into an array and
592             // then, if this is clone, looking up its original in that array and pre-multiplying
593             // it by the inverse of that original's transform diff.
595             sp_selection_copy_one(current, item_t, &temp_clip, xml_doc);
596             sp_repr_unparent(current);
598             // paste into topmost_parent (temporarily)
599             GSList *copied = sp_selection_paste_impl(doc, doc->getObjectByRepr(topmost_parent), &temp_clip);
600             if (temp_clip) g_slist_free(temp_clip);
601             if (copied) { // if success,
602                 // take pasted object (now in topmost_parent)
603                 Inkscape::XML::Node *in_topmost = (Inkscape::XML::Node *) copied->data;
604                 // make a copy
605                 Inkscape::XML::Node *spnew = in_topmost->duplicate(xml_doc);
606                 // remove pasted
607                 sp_repr_unparent(in_topmost);
608                 // put its copy into group
609                 group->appendChild(spnew);
610                 Inkscape::GC::release(spnew);
611                 g_slist_free(copied);
612             }
613         }
614         p = g_slist_remove(p, current);
615     }
617     // Add the new group to the topmost members' parent
618     topmost_parent->appendChild(group);
620     // Move to the position of the topmost, reduced by the number of items deleted from topmost_parent
621     group->setPosition(topmost + 1);
624 void sp_selection_group(SPDesktop *desktop)
626     if (desktop == NULL)
627         return;
629     SPDocument *doc = sp_desktop_document(desktop);
630     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
632     Inkscape::Selection *selection = sp_desktop_selection(desktop);
634     // Check if something is selected.
635     if (selection->isEmpty()) {
636         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>some objects</b> to group."));
637         return;
638     }
640     GSList const *l = (GSList *) selection->reprList();
642     GSList *p = g_slist_copy((GSList *) l);
644     selection->clear();
646     Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
648     sp_selection_group_impl(p, group, xml_doc, doc);
650     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_GROUP,
651                      _("Group"));
653     selection->set(group);
654     Inkscape::GC::release(group);
657 void sp_selection_ungroup(SPDesktop *desktop)
659     if (desktop == NULL)
660         return;
662     Inkscape::Selection *selection = sp_desktop_selection(desktop);
664     if (selection->isEmpty()) {
665         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>group</b> to ungroup."));
666         return;
667     }
669     GSList *items = g_slist_copy((GSList *) selection->itemList());
670     selection->clear();
672     // Get a copy of current selection.
673     GSList *new_select = NULL;
674     bool ungrouped = false;
675     for (GSList *i = items;
676          i != NULL;
677          i = i->next)
678     {
679         SPItem *group = (SPItem *) i->data;
681         // when ungrouping cloned groups with their originals, some objects that were selected may no more exist due to unlinking
682         if (!SP_IS_OBJECT(group)) {
683             continue;
684         }
686         /* We do not allow ungrouping <svg> etc. (lauris) */
687         if (strcmp(SP_OBJECT_REPR(group)->name(), "svg:g") && strcmp(SP_OBJECT_REPR(group)->name(), "svg:switch")) {
688             // keep the non-group item in the new selection
689             new_select = g_slist_append(new_select, group);
690             continue;
691         }
693         GSList *children = NULL;
694         /* This is not strictly required, but is nicer to rely on group ::destroy (lauris) */
695         sp_item_group_ungroup(SP_GROUP(group), &children, false);
696         ungrouped = true;
697         // Add ungrouped items to the new selection.
698         new_select = g_slist_concat(new_select, children);
699     }
701     if (new_select) { // Set new selection.
702         selection->addList(new_select);
703         g_slist_free(new_select);
704     }
705     if (!ungrouped) {
706         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No groups</b> to ungroup in the selection."));
707     }
709     g_slist_free(items);
711     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_UNGROUP,
712                      _("Ungroup"));
715 /** Replace all groups in the list with their member objects, recursively; returns a new list, frees old */
716 GSList *
717 sp_degroup_list(GSList *items)
719     GSList *out = NULL;
720     bool has_groups = false;
721     for (GSList *item = items; item; item = item->next) {
722         if (!SP_IS_GROUP(item->data)) {
723             out = g_slist_prepend(out, item->data);
724         } else {
725             has_groups = true;
726             GSList *members = sp_item_group_item_list(SP_GROUP(item->data));
727             for (GSList *member = members; member; member = member->next) {
728                 out = g_slist_prepend(out, member->data);
729             }
730             g_slist_free(members);
731         }
732     }
733     out = g_slist_reverse(out);
734     g_slist_free(items);
736     if (has_groups) { // recurse if we unwrapped a group - it may have contained others
737         out = sp_degroup_list(out);
738     }
740     return out;
744 /** If items in the list have a common parent, return it, otherwise return NULL */
745 static SPGroup *
746 sp_item_list_common_parent_group(GSList const *items)
748     if (!items) {
749         return NULL;
750     }
751     SPObject *parent = SP_OBJECT_PARENT(items->data);
752     /* Strictly speaking this CAN happen, if user selects <svg> from Inkscape::XML editor */
753     if (!SP_IS_GROUP(parent)) {
754         return NULL;
755     }
756     for (items = items->next; items; items = items->next) {
757         if (SP_OBJECT_PARENT(items->data) != parent) {
758             return NULL;
759         }
760     }
762     return SP_GROUP(parent);
765 /** Finds out the minimum common bbox of the selected items. */
766 static Geom::OptRect
767 enclose_items(GSList const *items)
769     g_assert(items != NULL);
771     Geom::OptRect r;
772     for (GSList const *i = items; i; i = i->next) {
773         r = Geom::unify(r, sp_item_bbox_desktop((SPItem *) i->data));
774     }
775     return r;
778 SPObject *
779 prev_sibling(SPObject *child)
781     SPObject *parent = SP_OBJECT_PARENT(child);
782     if (!SP_IS_GROUP(parent)) {
783         return NULL;
784     }
785     for ( SPObject *i = sp_object_first_child(parent) ; i; i = SP_OBJECT_NEXT(i) ) {
786         if (i->next == child)
787             return i;
788     }
789     return NULL;
792 void
793 sp_selection_raise(SPDesktop *desktop)
795     if (!desktop)
796         return;
798     Inkscape::Selection *selection = sp_desktop_selection(desktop);
800     GSList const *items = (GSList *) selection->itemList();
801     if (!items) {
802         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise."));
803         return;
804     }
806     SPGroup const *group = sp_item_list_common_parent_group(items);
807     if (!group) {
808         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
809         return;
810     }
812     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
814     /* Construct reverse-ordered list of selected children. */
815     GSList *rev = g_slist_copy((GSList *) items);
816     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
818     // Determine the common bbox of the selected items.
819     Geom::OptRect selected = enclose_items(items);
821     // Iterate over all objects in the selection (starting from top).
822     if (selected) {
823         while (rev) {
824             SPObject *child = reinterpret_cast<SPObject*>(rev->data);
825             // for each selected object, find the next sibling
826             for (SPObject *newref = child->next; newref; newref = newref->next) {
827                 // if the sibling is an item AND overlaps our selection,
828                 if (SP_IS_ITEM(newref)) {
829                     Geom::OptRect newref_bbox = sp_item_bbox_desktop(SP_ITEM(newref));
830                     if ( newref_bbox && selected->intersects(*newref_bbox) ) {
831                         // AND if it's not one of our selected objects,
832                         if (!g_slist_find((GSList *) items, newref)) {
833                             // move the selected object after that sibling
834                             grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(newref));
835                         }
836                         break;
837                     }
838                 }
839             }
840             rev = g_slist_remove(rev, child);
841         }
842     } else {
843         g_slist_free(rev);
844     }
846     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_RAISE,
847                      //TRANSLATORS: "Raise" means "to raise an object" in the undo history
848                      C_("Undo action", "Raise"));
851 void sp_selection_raise_to_top(SPDesktop *desktop)
853     if (desktop == NULL)
854         return;
856     SPDocument *document = sp_desktop_document(desktop);
857     Inkscape::Selection *selection = sp_desktop_selection(desktop);
859     if (selection->isEmpty()) {
860         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise to top."));
861         return;
862     }
864     GSList const *items = (GSList *) selection->itemList();
866     SPGroup const *group = sp_item_list_common_parent_group(items);
867     if (!group) {
868         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
869         return;
870     }
872     GSList *rl = g_slist_copy((GSList *) selection->reprList());
873     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
875     for (GSList *l = rl; l != NULL; l = l->next) {
876         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
877         repr->setPosition(-1);
878     }
880     g_slist_free(rl);
882     sp_document_done(document, SP_VERB_SELECTION_TO_FRONT,
883                      _("Raise to top"));
886 void
887 sp_selection_lower(SPDesktop *desktop)
889     if (desktop == NULL)
890         return;
892     Inkscape::Selection *selection = sp_desktop_selection(desktop);
894     GSList const *items = (GSList *) selection->itemList();
895     if (!items) {
896         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower."));
897         return;
898     }
900     SPGroup const *group = sp_item_list_common_parent_group(items);
901     if (!group) {
902         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
903         return;
904     }
906     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
908     // Determine the common bbox of the selected items.
909     Geom::OptRect selected = enclose_items(items);
911     /* Construct direct-ordered list of selected children. */
912     GSList *rev = g_slist_copy((GSList *) items);
913     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
914     rev = g_slist_reverse(rev);
916     // Iterate over all objects in the selection (starting from top).
917     if (selected) {
918         while (rev) {
919             SPObject *child = reinterpret_cast<SPObject*>(rev->data);
920             // for each selected object, find the prev sibling
921             for (SPObject *newref = prev_sibling(child); newref; newref = prev_sibling(newref)) {
922                 // if the sibling is an item AND overlaps our selection,
923                 if (SP_IS_ITEM(newref)) {
924                     Geom::OptRect ref_bbox = sp_item_bbox_desktop(SP_ITEM(newref));
925                     if ( ref_bbox && selected->intersects(*ref_bbox) ) {
926                         // AND if it's not one of our selected objects,
927                         if (!g_slist_find((GSList *) items, newref)) {
928                             // move the selected object before that sibling
929                             SPObject *put_after = prev_sibling(newref);
930                             if (put_after)
931                                 grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(put_after));
932                             else
933                                 SP_OBJECT_REPR(child)->setPosition(0);
934                         }
935                         break;
936                     }
937                 }
938             }
939             rev = g_slist_remove(rev, child);
940         }
941     } else {
942         g_slist_free(rev);
943     }
945     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_LOWER,
946                      _("Lower"));
949 void sp_selection_lower_to_bottom(SPDesktop *desktop)
951     if (desktop == NULL)
952         return;
954     SPDocument *document = sp_desktop_document(desktop);
955     Inkscape::Selection *selection = sp_desktop_selection(desktop);
957     if (selection->isEmpty()) {
958         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to lower to bottom."));
959         return;
960     }
962     GSList const *items = (GSList *) selection->itemList();
964     SPGroup const *group = sp_item_list_common_parent_group(items);
965     if (!group) {
966         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
967         return;
968     }
970     GSList *rl;
971     rl = g_slist_copy((GSList *) selection->reprList());
972     rl = g_slist_sort(rl, (GCompareFunc) sp_repr_compare_position);
973     rl = g_slist_reverse(rl);
975     for (GSList *l = rl; l != NULL; l = l->next) {
976         gint minpos;
977         SPObject *pp, *pc;
978         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
979         pp = document->getObjectByRepr(sp_repr_parent(repr));
980         minpos = 0;
981         g_assert(SP_IS_GROUP(pp));
982         pc = sp_object_first_child(pp);
983         while (!SP_IS_ITEM(pc)) {
984             minpos += 1;
985             pc = pc->next;
986         }
987         repr->setPosition(minpos);
988     }
990     g_slist_free(rl);
992     sp_document_done(document, SP_VERB_SELECTION_TO_BACK,
993                      _("Lower to bottom"));
996 void
997 sp_undo(SPDesktop *desktop, SPDocument *)
999         if (!sp_document_undo(sp_desktop_document(desktop)))
1000             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to undo."));
1003 void
1004 sp_redo(SPDesktop *desktop, SPDocument *)
1006         if (!sp_document_redo(sp_desktop_document(desktop)))
1007             desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Nothing to redo."));
1010 void sp_selection_cut(SPDesktop *desktop)
1012     sp_selection_copy(desktop);
1013     sp_selection_delete(desktop);
1016 /**
1017  * \pre item != NULL
1018  */
1019 SPCSSAttr *
1020 take_style_from_item(SPItem *item)
1022     // write the complete cascaded style, context-free
1023     SPCSSAttr *css = sp_css_attr_from_object(item, SP_STYLE_FLAG_ALWAYS);
1024     if (css == NULL)
1025         return NULL;
1027     if ((SP_IS_GROUP(item) && item->children) ||
1028         (SP_IS_TEXT(item) && item->children && item->children->next == NULL)) {
1029         // if this is a text with exactly one tspan child, merge the style of that tspan as well
1030         // If this is a group, merge the style of its topmost (last) child with style
1031         for (SPObject *last_element = item->lastChild(); last_element != NULL; last_element = SP_OBJECT_PREV(last_element)) {
1032             if ( last_element->style ) {
1033                 SPCSSAttr *temp = sp_css_attr_from_object(last_element, SP_STYLE_FLAG_IFSET);
1034                 if (temp) {
1035                     sp_repr_css_merge(css, temp);
1036                     sp_repr_css_attr_unref(temp);
1037                 }
1038                 break;
1039             }
1040         }
1041     }
1042     if (!(SP_IS_TEXT(item) || SP_IS_TSPAN(item) || SP_IS_TREF(item) || SP_IS_STRING(item))) {
1043         // do not copy text properties from non-text objects, it's confusing
1044         css = sp_css_attr_unset_text(css);
1045     }
1047     // FIXME: also transform gradient/pattern fills, by forking? NO, this must be nondestructive
1048     double ex = to_2geom(sp_item_i2doc_affine(item)).descrim();
1049     if (ex != 1.0) {
1050         css = sp_css_attr_scale(css, ex);
1051     }
1053     return css;
1057 void sp_selection_copy(SPDesktop *desktop)
1059     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1060     cm->copy(desktop);
1063 void sp_selection_paste(SPDesktop *desktop, bool in_place)
1065     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1066     if (cm->paste(desktop, in_place)) {
1067         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_PASTE, _("Paste"));
1068     }
1071 void sp_selection_paste_style(SPDesktop *desktop)
1073     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1074     if (cm->pasteStyle(desktop)) {
1075         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_PASTE_STYLE, _("Paste style"));
1076     }
1080 void sp_selection_paste_livepatheffect(SPDesktop *desktop)
1082     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1083     if (cm->pastePathEffect(desktop)) {
1084         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_PASTE_LIVEPATHEFFECT,
1085                          _("Paste live path effect"));
1086     }
1090 void sp_selection_remove_livepatheffect_impl(SPItem *item)
1092     if ( item && SP_IS_LPE_ITEM(item) &&
1093          sp_lpe_item_has_path_effect(SP_LPE_ITEM(item))) {
1094         sp_lpe_item_remove_all_path_effects(SP_LPE_ITEM(item), false);
1095     }
1098 void sp_selection_remove_livepatheffect(SPDesktop *desktop)
1100     if (desktop == NULL) return;
1102     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1104     // check if something is selected
1105     if (selection->isEmpty()) {
1106         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove live path effects from."));
1107         return;
1108     }
1110     for ( GSList const *itemlist = selection->itemList(); itemlist != NULL; itemlist = g_slist_next(itemlist) ) {
1111         SPItem *item = reinterpret_cast<SPItem*>(itemlist->data);
1113         sp_selection_remove_livepatheffect_impl(item);
1115     }
1117     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_REMOVE_LIVEPATHEFFECT,
1118                      _("Remove live path effect"));
1121 void sp_selection_remove_filter(SPDesktop *desktop)
1123     if (desktop == NULL) return;
1125     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1127     // check if something is selected
1128     if (selection->isEmpty()) {
1129         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove filters from."));
1130         return;
1131     }
1133     SPCSSAttr *css = sp_repr_css_attr_new();
1134     sp_repr_css_unset_property(css, "filter");
1135     sp_desktop_set_style(desktop, css);
1136     sp_repr_css_attr_unref(css);
1138     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_REMOVE_FILTER,
1139                      _("Remove filter"));
1143 void sp_selection_paste_size(SPDesktop *desktop, bool apply_x, bool apply_y)
1145     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1146     if (cm->pasteSize(desktop, false, apply_x, apply_y)) {
1147         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_PASTE_SIZE,
1148                          _("Paste size"));
1149     }
1152 void sp_selection_paste_size_separately(SPDesktop *desktop, bool apply_x, bool apply_y)
1154     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
1155     if (cm->pasteSize(desktop, true, apply_x, apply_y)) {
1156         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_PASTE_SIZE_SEPARATELY,
1157                          _("Paste size separately"));
1158     }
1161 void sp_selection_to_next_layer(SPDesktop *dt, bool suppressDone)
1163     Inkscape::Selection *selection = sp_desktop_selection(dt);
1165     // check if something is selected
1166     if (selection->isEmpty()) {
1167         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer above."));
1168         return;
1169     }
1171     GSList const *items = g_slist_copy((GSList *) selection->itemList());
1173     bool no_more = false; // Set to true, if no more layers above
1174     SPObject *next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer());
1175     if (next) {
1176         GSList *temp_clip = NULL;
1177         sp_selection_copy_impl(items, &temp_clip, sp_document_repr_doc(dt->doc()));
1178         sp_selection_delete_impl(items, false, false);
1179         next=Inkscape::next_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1180         GSList *copied;
1181         if (next) {
1182             copied = sp_selection_paste_impl(sp_desktop_document(dt), next, &temp_clip);
1183         } else {
1184             copied = sp_selection_paste_impl(sp_desktop_document(dt), dt->currentLayer(), &temp_clip);
1185             no_more = true;
1186         }
1187         selection->setReprList((GSList const *) copied);
1188         g_slist_free(copied);
1189         if (temp_clip) g_slist_free(temp_clip);
1190         if (next) dt->setCurrentLayer(next);
1191         if ( !suppressDone ) {
1192             sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_MOVE_TO_NEXT,
1193                              _("Raise to next layer"));
1194         }
1195     } else {
1196         no_more = true;
1197     }
1199     if (no_more) {
1200         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers above."));
1201     }
1203     g_slist_free((GSList *) items);
1206 void sp_selection_to_prev_layer(SPDesktop *dt, bool suppressDone)
1208     Inkscape::Selection *selection = sp_desktop_selection(dt);
1210     // check if something is selected
1211     if (selection->isEmpty()) {
1212         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to move to the layer below."));
1213         return;
1214     }
1216     GSList const *items = g_slist_copy((GSList *) selection->itemList());
1218     bool no_more = false; // Set to true, if no more layers below
1219     SPObject *next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer());
1220     if (next) {
1221         GSList *temp_clip = NULL;
1222         sp_selection_copy_impl(items, &temp_clip, sp_document_repr_doc(dt->doc())); // we're in the same doc, so no need to copy defs
1223         sp_selection_delete_impl(items, false, false);
1224         next=Inkscape::previous_layer(dt->currentRoot(), dt->currentLayer()); // Fixes bug 1482973: crash while moving layers
1225         GSList *copied;
1226         if (next) {
1227             copied = sp_selection_paste_impl(sp_desktop_document(dt), next, &temp_clip);
1228         } else {
1229             copied = sp_selection_paste_impl(sp_desktop_document(dt), dt->currentLayer(), &temp_clip);
1230             no_more = true;
1231         }
1232         selection->setReprList((GSList const *) copied);
1233         g_slist_free(copied);
1234         if (temp_clip) g_slist_free(temp_clip);
1235         if (next) dt->setCurrentLayer(next);
1236         if ( !suppressDone ) {
1237             sp_document_done(sp_desktop_document(dt), SP_VERB_LAYER_MOVE_TO_PREV,
1238                              _("Lower to previous layer"));
1239         }
1240     } else {
1241         no_more = true;
1242     }
1244     if (no_more) {
1245         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("No more layers below."));
1246     }
1248     g_slist_free((GSList *) items);
1251 bool
1252 selection_contains_original(SPItem *item, Inkscape::Selection *selection)
1254     bool contains_original = false;
1256     bool is_use = SP_IS_USE(item);
1257     SPItem *item_use = item;
1258     SPItem *item_use_first = item;
1259     while (is_use && item_use && !contains_original)
1260     {
1261         item_use = sp_use_get_original(SP_USE(item_use));
1262         contains_original |= selection->includes(item_use);
1263         if (item_use == item_use_first)
1264             break;
1265         is_use = SP_IS_USE(item_use);
1266     }
1268     // If it's a tref, check whether the object containing the character
1269     // data is part of the selection
1270     if (!contains_original && SP_IS_TREF(item)) {
1271         contains_original = selection->includes(SP_TREF(item)->getObjectReferredTo());
1272     }
1274     return contains_original;
1278 bool
1279 selection_contains_both_clone_and_original(Inkscape::Selection *selection)
1281     bool clone_with_original = false;
1282     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1283         SPItem *item = SP_ITEM(l->data);
1284         clone_with_original |= selection_contains_original(item, selection);
1285         if (clone_with_original)
1286             break;
1287     }
1288     return clone_with_original;
1291 /** Apply matrix to the selection.  \a set_i2d is normally true, which means objects are in the
1292 original transform, synced with their reprs, and need to jump to the new transform in one go. A
1293 value of set_i2d==false is only used by seltrans when it's dragging objects live (not outlines); in
1294 that case, items are already in the new position, but the repr is in the old, and this function
1295 then simply updates the repr from item->transform.
1296  */
1297 void sp_selection_apply_affine(Inkscape::Selection *selection, Geom::Matrix const &affine, bool set_i2d, bool compensate)
1299     if (selection->isEmpty())
1300         return;
1302     // For each perspective with a box in selection, check whether all boxes are selected and
1303     // unlink all non-selected boxes.
1304     Persp3D *persp;
1305     Persp3D *transf_persp;
1306     std::list<Persp3D *> plist = selection->perspList();
1307     for (std::list<Persp3D *>::iterator i = plist.begin(); i != plist.end(); ++i) {
1308         persp = (Persp3D *) (*i);
1310         if (!persp3d_has_all_boxes_in_selection (persp, selection)) {
1311             std::list<SPBox3D *> selboxes = selection->box3DList(persp);
1313             // create a new perspective as a copy of the current one and link the selected boxes to it
1314             transf_persp = persp3d_create_xml_element (SP_OBJECT_DOCUMENT(persp), persp->perspective_impl);
1316             for (std::list<SPBox3D *>::iterator b = selboxes.begin(); b != selboxes.end(); ++b)
1317                 box3d_switch_perspectives(*b, persp, transf_persp);
1318         } else {
1319             transf_persp = persp;
1320         }
1322         persp3d_apply_affine_transformation(transf_persp, affine);
1323     }
1325     for (GSList const *l = selection->itemList(); l != NULL; l = l->next) {
1326         SPItem *item = SP_ITEM(l->data);
1328         Geom::Point old_center(0,0);
1329         if (set_i2d && item->isCenterSet())
1330             old_center = item->getCenter();
1332 #if 0 /* Re-enable this once persistent guides have a graphical indication.
1333          At the time of writing, this is the only place to re-enable. */
1334         sp_item_update_cns(*item, selection->desktop());
1335 #endif
1337         // we're moving both a clone and its original or any ancestor in clone chain?
1338         bool transform_clone_with_original = selection_contains_original(item, selection);
1339         // ...both a text-on-path and its path?
1340         bool transform_textpath_with_path = (SP_IS_TEXT_TEXTPATH(item) && selection->includes( sp_textpath_get_path_item(SP_TEXTPATH(sp_object_first_child(item))) ));
1341         // ...both a flowtext and its frame?
1342         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)
1343         // ...both an offset and its source?
1344         bool transform_offset_with_source = (SP_IS_OFFSET(item) && SP_OFFSET(item)->sourceHref) && selection->includes( sp_offset_get_source(SP_OFFSET(item)) );
1346         // If we're moving a connector, we want to detach it
1347         // from shapes that aren't part of the selection, but
1348         // leave it attached if they are
1349         if (cc_item_is_connector(item)) {
1350             SPItem *attItem[2];
1351             SP_PATH(item)->connEndPair.getAttachedItems(attItem);
1353             for (int n = 0; n < 2; ++n) {
1354                 if (!selection->includes(attItem[n])) {
1355                     sp_conn_end_detach(item, n);
1356                 }
1357             }
1358         }
1360         // "clones are unmoved when original is moved" preference
1361         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1362         int compensation = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
1363         bool prefs_unmoved = (compensation == SP_CLONE_COMPENSATION_UNMOVED);
1364         bool prefs_parallel = (compensation == SP_CLONE_COMPENSATION_PARALLEL);
1366         /* If this is a clone and it's selected along with its original, do not move it;
1367          * it will feel the transform of its original and respond to it itself.
1368          * Without this, a clone is doubly transformed, very unintuitive.
1369          *
1370          * Same for textpath if we are also doing ANY transform to its path: do not touch textpath,
1371          * letters cannot be squeezed or rotated anyway, they only refill the changed path.
1372          * Same for linked offset if we are also moving its source: do not move it. */
1373         if (transform_textpath_with_path || transform_offset_with_source) {
1374             // Restore item->transform field from the repr, in case it was changed by seltrans.
1375             sp_object_read_attr(item, "transform");
1376         } else if (transform_flowtext_with_frame) {
1377             // apply the inverse of the region's transform to the <use> so that the flow remains
1378             // the same (even though the output itself gets transformed)
1379             for (SPObject *region = item->firstChild() ; region ; region = SP_OBJECT_NEXT(region)) {
1380                 if (!SP_IS_FLOWREGION(region) && !SP_IS_FLOWREGIONEXCLUDE(region))
1381                     continue;
1382                 for (SPObject *use = region->firstChild() ; use ; use = SP_OBJECT_NEXT(use)) {
1383                     if (!SP_IS_USE(use)) continue;
1384                     sp_item_write_transform(SP_USE(use), SP_OBJECT_REPR(use), item->transform.inverse(), NULL, compensate);
1385                 }
1386             }
1387         } else if (transform_clone_with_original) {
1388             // We are transforming a clone along with its original. The below matrix juggling is
1389             // necessary to ensure that they transform as a whole, i.e. the clone's induced
1390             // transform and its move compensation are both cancelled out.
1392             // restore item->transform field from the repr, in case it was changed by seltrans
1393             sp_object_read_attr(item, "transform");
1395             // calculate the matrix we need to apply to the clone to cancel its induced transform from its original
1396             Geom::Matrix parent2dt = sp_item_i2d_affine(SP_ITEM(SP_OBJECT_PARENT(item)));
1397             Geom::Matrix t = parent2dt * affine * parent2dt.inverse();
1398             Geom::Matrix t_inv = t.inverse();
1399             Geom::Matrix result = t_inv * item->transform * t;
1401             if ((prefs_parallel || prefs_unmoved) && affine.isTranslation()) {
1402                 // we need to cancel out the move compensation, too
1404                 // find out the clone move, same as in sp_use_move_compensate
1405                 Geom::Matrix parent = sp_use_get_parent_transform(SP_USE(item));
1406                 Geom::Matrix clone_move = parent.inverse() * t * parent;
1408                 if (prefs_parallel) {
1409                     Geom::Matrix move = result * clone_move * t_inv;
1410                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &move, compensate);
1412                 } else if (prefs_unmoved) {
1413                     //if (SP_IS_USE(sp_use_get_original(SP_USE(item))))
1414                     //    clone_move = Geom::identity();
1415                     Geom::Matrix move = result * clone_move;
1416                     sp_item_write_transform(item, SP_OBJECT_REPR(item), move, &t, compensate);
1417                 }
1419             } else {
1420                 // just apply the result
1421                 sp_item_write_transform(item, SP_OBJECT_REPR(item), result, &t, compensate);
1422             }
1424         } else {
1425             if (set_i2d) {
1426                 sp_item_set_i2d_affine(item, sp_item_i2d_affine(item) * (Geom::Matrix)affine);
1427             }
1428             sp_item_write_transform(item, SP_OBJECT_REPR(item), item->transform, NULL, compensate);
1429         }
1431         // if we're moving the actual object, not just updating the repr, we can transform the
1432         // center by the same matrix (only necessary for non-translations)
1433         if (set_i2d && item->isCenterSet() && !(affine.isTranslation() || affine.isIdentity())) {
1434             item->setCenter(old_center * affine);
1435             item->updateRepr();
1436         }
1437     }
1440 void sp_selection_remove_transform(SPDesktop *desktop)
1442     if (desktop == NULL)
1443         return;
1445     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1447     GSList const *l = (GSList *) selection->reprList();
1448     while (l != NULL) {
1449         ((Inkscape::XML::Node*)l->data)->setAttribute("transform", NULL, false);
1450         l = l->next;
1451     }
1453     sp_document_done(sp_desktop_document(desktop), SP_VERB_OBJECT_FLATTEN,
1454                      _("Remove transform"));
1457 void
1458 sp_selection_scale_absolute(Inkscape::Selection *selection,
1459                             double const x0, double const x1,
1460                             double const y0, double const y1)
1462     if (selection->isEmpty())
1463         return;
1465     Geom::OptRect const bbox(selection->bounds());
1466     if ( !bbox ) {
1467         return;
1468     }
1470     Geom::Translate const p2o(-bbox->min());
1472     Geom::Scale const newSize(x1 - x0,
1473                               y1 - y0);
1474     Geom::Scale const scale( newSize * Geom::Scale(bbox->dimensions()).inverse() );
1475     Geom::Translate const o2n(x0, y0);
1476     Geom::Matrix const final( p2o * scale * o2n );
1478     sp_selection_apply_affine(selection, final);
1482 void sp_selection_scale_relative(Inkscape::Selection *selection, Geom::Point const &align, Geom::Scale const &scale)
1484     if (selection->isEmpty())
1485         return;
1487     Geom::OptRect const bbox(selection->bounds());
1489     if ( !bbox ) {
1490         return;
1491     }
1493     // FIXME: ARBITRARY LIMIT: don't try to scale above 1 Mpx, it won't display properly and will crash sooner or later anyway
1494     if ( bbox->dimensions()[Geom::X] * scale[Geom::X] > 1e6  ||
1495          bbox->dimensions()[Geom::Y] * scale[Geom::Y] > 1e6 )
1496     {
1497         return;
1498     }
1500     Geom::Translate const n2d(-align);
1501     Geom::Translate const d2n(align);
1502     Geom::Matrix const final( n2d * scale * d2n );
1503     sp_selection_apply_affine(selection, final);
1506 void
1507 sp_selection_rotate_relative(Inkscape::Selection *selection, Geom::Point const &center, gdouble const angle_degrees)
1509     Geom::Translate const d2n(center);
1510     Geom::Translate const n2d(-center);
1511     Geom::Rotate const rotate(Geom::Rotate::from_degrees(angle_degrees));
1512     Geom::Matrix const final( Geom::Matrix(n2d) * rotate * d2n );
1513     sp_selection_apply_affine(selection, final);
1516 void
1517 sp_selection_skew_relative(Inkscape::Selection *selection, Geom::Point const &align, double dx, double dy)
1519     Geom::Translate const d2n(align);
1520     Geom::Translate const n2d(-align);
1521     Geom::Matrix const skew(1, dy,
1522                             dx, 1,
1523                             0, 0);
1524     Geom::Matrix const final( n2d * skew * d2n );
1525     sp_selection_apply_affine(selection, final);
1528 void sp_selection_move_relative(Inkscape::Selection *selection, Geom::Point const &move, bool compensate)
1530     sp_selection_apply_affine(selection, Geom::Matrix(Geom::Translate(move)), true, compensate);
1533 void sp_selection_move_relative(Inkscape::Selection *selection, double dx, double dy)
1535     sp_selection_apply_affine(selection, Geom::Matrix(Geom::Translate(dx, dy)));
1538 /**
1539  * @brief Rotates selected objects 90 degrees, either clock-wise or counter-clockwise, depending on the value of ccw
1540  */
1541 void sp_selection_rotate_90(SPDesktop *desktop, bool ccw)
1543     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1545     if (selection->isEmpty())
1546         return;
1548     GSList const *l = selection->itemList();
1549     Geom::Rotate const rot_90(Geom::Point(0, ccw ? 1 : -1)); // pos. or neg. rotation, depending on the value of ccw
1550     for (GSList const *l2 = l ; l2 != NULL ; l2 = l2->next) {
1551         SPItem *item = SP_ITEM(l2->data);
1552         sp_item_rotate_rel(item, rot_90);
1553     }
1555     sp_document_done(sp_desktop_document(desktop),
1556                      ccw ? SP_VERB_OBJECT_ROTATE_90_CCW : SP_VERB_OBJECT_ROTATE_90_CW,
1557                      ccw ? _("Rotate 90&#176; CCW") : _("Rotate 90&#176; CW"));
1560 void
1561 sp_selection_rotate(Inkscape::Selection *selection, gdouble const angle_degrees)
1563     if (selection->isEmpty())
1564         return;
1566     boost::optional<Geom::Point> center = selection->center();
1567     if (!center) {
1568         return;
1569     }
1571     sp_selection_rotate_relative(selection, *center, angle_degrees);
1573     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1574                            ( ( angle_degrees > 0 )
1575                              ? "selector:rotate:ccw"
1576                              : "selector:rotate:cw" ),
1577                            SP_VERB_CONTEXT_SELECT,
1578                            _("Rotate"));
1581 // helper function:
1582 static
1583 Geom::Point
1584 cornerFarthestFrom(Geom::Rect const &r, Geom::Point const &p){
1585     Geom::Point m = r.midpoint();
1586     unsigned i = 0;
1587     if (p[X] < m[X]) {
1588         i = 1;
1589     }
1590     if (p[Y] < m[Y]) {
1591         i = 3 - i;
1592     }
1593     return r.corner(i);
1596 /**
1597 \param  angle   the angle in "angular pixels", i.e. how many visible pixels must move the outermost point of the rotated object
1598 */
1599 void
1600 sp_selection_rotate_screen(Inkscape::Selection *selection, gdouble angle)
1602     if (selection->isEmpty())
1603         return;
1605     Geom::OptRect const bbox(selection->bounds());
1606     boost::optional<Geom::Point> center = selection->center();
1608     if ( !bbox || !center ) {
1609         return;
1610     }
1612     gdouble const zoom = selection->desktop()->current_zoom();
1613     gdouble const zmove = angle / zoom;
1614     gdouble const r = Geom::L2(cornerFarthestFrom(*bbox, *center) - *center);
1616     gdouble const zangle = 180 * atan2(zmove, r) / M_PI;
1618     sp_selection_rotate_relative(selection, *center, zangle);
1620     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1621                            ( (angle > 0)
1622                              ? "selector:rotate:ccw"
1623                              : "selector:rotate:cw" ),
1624                            SP_VERB_CONTEXT_SELECT,
1625                            _("Rotate by pixels"));
1628 void
1629 sp_selection_scale(Inkscape::Selection *selection, gdouble grow)
1631     if (selection->isEmpty())
1632         return;
1634     Geom::OptRect const bbox(selection->bounds());
1635     if (!bbox) {
1636         return;
1637     }
1639     Geom::Point const center(bbox->midpoint());
1641     // you can't scale "do nizhe pola" (below zero)
1642     double const max_len = bbox->maxExtent();
1643     if ( max_len + grow <= 1e-3 ) {
1644         return;
1645     }
1647     double const times = 1.0 + grow / max_len;
1648     sp_selection_scale_relative(selection, center, Geom::Scale(times, times));
1650     sp_document_maybe_done(sp_desktop_document(selection->desktop()),
1651                            ( (grow > 0)
1652                              ? "selector:scale:larger"
1653                              : "selector:scale:smaller" ),
1654                            SP_VERB_CONTEXT_SELECT,
1655                            _("Scale"));
1658 void
1659 sp_selection_scale_screen(Inkscape::Selection *selection, gdouble grow_pixels)
1661     sp_selection_scale(selection,
1662                        grow_pixels / selection->desktop()->current_zoom());
1665 void
1666 sp_selection_scale_times(Inkscape::Selection *selection, gdouble times)
1668     if (selection->isEmpty())
1669         return;
1671     Geom::OptRect sel_bbox = selection->bounds();
1673     if (!sel_bbox) {
1674         return;
1675     }
1677     Geom::Point const center(sel_bbox->midpoint());
1678     sp_selection_scale_relative(selection, center, Geom::Scale(times, times));
1679     sp_document_done(sp_desktop_document(selection->desktop()), SP_VERB_CONTEXT_SELECT,
1680                      _("Scale by whole factor"));
1683 void
1684 sp_selection_move(SPDesktop *desktop, gdouble dx, gdouble dy)
1686     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1687     if (selection->isEmpty()) {
1688         return;
1689     }
1691     sp_selection_move_relative(selection, dx, dy);
1693     if (dx == 0) {
1694         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT,
1695                                _("Move vertically"));
1696     } else if (dy == 0) {
1697         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT,
1698                                _("Move horizontally"));
1699     } else {
1700         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT,
1701                          _("Move"));
1702     }
1705 void
1706 sp_selection_move_screen(SPDesktop *desktop, gdouble dx, gdouble dy)
1708     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1709     if (selection->isEmpty()) {
1710         return;
1711     }
1713     // same as sp_selection_move but divide deltas by zoom factor
1714     gdouble const zoom = desktop->current_zoom();
1715     gdouble const zdx = dx / zoom;
1716     gdouble const zdy = dy / zoom;
1717     sp_selection_move_relative(selection, zdx, zdy);
1719     if (dx == 0) {
1720         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT,
1721                                _("Move vertically by pixels"));
1722     } else if (dy == 0) {
1723         sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT,
1724                                _("Move horizontally by pixels"));
1725     } else {
1726         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT,
1727                          _("Move"));
1728     }
1731 namespace {
1733 template <typename D>
1734 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1735                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1737 template <typename D>
1738 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items, SPObject *root,
1739                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive);
1741 struct Forward {
1742     typedef SPObject *Iterator;
1744     static Iterator children(SPObject *o) { return sp_object_first_child(o); }
1745     static Iterator siblings_after(SPObject *o) { return SP_OBJECT_NEXT(o); }
1746     static void dispose(Iterator /*i*/) {}
1748     static SPObject *object(Iterator i) { return i; }
1749     static Iterator next(Iterator i) { return SP_OBJECT_NEXT(i); }
1750 };
1752 struct Reverse {
1753     typedef GSList *Iterator;
1755     static Iterator children(SPObject *o) {
1756         return make_list(o->firstChild(), NULL);
1757     }
1758     static Iterator siblings_after(SPObject *o) {
1759         return make_list(SP_OBJECT_PARENT(o)->firstChild(), o);
1760     }
1761     static void dispose(Iterator i) {
1762         g_slist_free(i);
1763     }
1765     static SPObject *object(Iterator i) {
1766         return reinterpret_cast<SPObject *>(i->data);
1767     }
1768     static Iterator next(Iterator i) { return i->next; }
1770 private:
1771     static GSList *make_list(SPObject *object, SPObject *limit) {
1772         GSList *list=NULL;
1773         while ( object != limit ) {
1774             list = g_slist_prepend(list, object);
1775             object = SP_OBJECT_NEXT(object);
1776         }
1777         return list;
1778     }
1779 };
1783 void
1784 sp_selection_item_next(SPDesktop *desktop)
1786     g_return_if_fail(desktop != NULL);
1787     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1789     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1790     PrefsSelectionContext inlayer = (PrefsSelectionContext)prefs->getInt("/options/kbselection/inlayer", PREFS_SELECTION_LAYER);
1791     bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
1792     bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive", true);
1794     SPObject *root;
1795     if (PREFS_SELECTION_ALL != inlayer) {
1796         root = selection->activeContext();
1797     } else {
1798         root = desktop->currentRoot();
1799     }
1801     SPItem *item=next_item_from_list<Forward>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1803     if (item) {
1804         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1805         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1806             scroll_to_show_item(desktop, item);
1807         }
1808     }
1811 void
1812 sp_selection_item_prev(SPDesktop *desktop)
1814     SPDocument *document = sp_desktop_document(desktop);
1815     g_return_if_fail(document != NULL);
1816     g_return_if_fail(desktop != NULL);
1817     Inkscape::Selection *selection = sp_desktop_selection(desktop);
1819     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
1820     PrefsSelectionContext inlayer = (PrefsSelectionContext) prefs->getInt("/options/kbselection/inlayer", PREFS_SELECTION_LAYER);
1821     bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
1822     bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive", true);
1824     SPObject *root;
1825     if (PREFS_SELECTION_ALL != inlayer) {
1826         root = selection->activeContext();
1827     } else {
1828         root = desktop->currentRoot();
1829     }
1831     SPItem *item=next_item_from_list<Reverse>(desktop, selection->itemList(), root, SP_CYCLING == SP_CYCLE_VISIBLE, inlayer, onlyvisible, onlysensitive);
1833     if (item) {
1834         selection->set(item, PREFS_SELECTION_LAYER_RECURSIVE == inlayer);
1835         if ( SP_CYCLING == SP_CYCLE_FOCUS ) {
1836             scroll_to_show_item(desktop, item);
1837         }
1838     }
1841 void sp_selection_next_patheffect_param(SPDesktop * dt)
1843     if (!dt) return;
1845     Inkscape::Selection *selection = sp_desktop_selection(dt);
1846     if ( selection && !selection->isEmpty() ) {
1847         SPItem *item = selection->singleItem();
1848         if ( item && SP_IS_SHAPE(item)) {
1849             if (sp_lpe_item_has_path_effect(SP_LPE_ITEM(item))) {
1850                 sp_lpe_item_edit_next_param_oncanvas(SP_LPE_ITEM(item), dt);
1851             } else {
1852                 dt->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("The selection has no applied path effect."));
1853             }
1854         }
1855     }
1858 /*bool has_path_recursive(SPObject *obj)
1860     if (!obj) return false;
1861     if (SP_IS_PATH(obj)) {
1862         return true;
1863     }
1864     if (SP_IS_GROUP(obj) || SP_IS_OBJECTGROUP(obj)) {
1865         for (SPObject *c = obj->children; c; c = c->next) {
1866             if (has_path_recursive(c)) return true;
1867         }
1868     }
1869     return false;
1870 }*/
1872 void sp_selection_edit_clip_or_mask(SPDesktop * /*dt*/, bool /*clip*/)
1874     return;
1875     /*if (!dt) return;
1876     using namespace Inkscape::UI;
1878     Inkscape::Selection *selection = sp_desktop_selection(dt);
1879     if (!selection || selection->isEmpty()) return;
1881     GSList const *items = selection->itemList();
1882     bool has_path = false;
1883     for (GSList *i = const_cast<GSList*>(items); i; i= i->next) {
1884         SPItem *item = SP_ITEM(i->data);
1885         SPObject *search = clip
1886             ? SP_OBJECT(item->clip_ref ? item->clip_ref->getObject() : NULL)
1887             : SP_OBJECT(item->mask_ref ? item->mask_ref->getObject() : NULL);
1888         has_path |= has_path_recursive(search);
1889         if (has_path) break;
1890     }
1891     if (has_path) {
1892         if (!tools_isactive(dt, TOOLS_NODES)) {
1893             tools_switch(dt, TOOLS_NODES);
1894         }
1895         ink_node_tool_set_mode(INK_NODE_TOOL(dt->event_context),
1896             clip ? NODE_TOOL_EDIT_CLIPPING_PATHS : NODE_TOOL_EDIT_MASKS);
1897     } else if (clip) {
1898         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE,
1899             _("The selection has no applied clip path."));
1900     } else {
1901         dt->messageStack()->flash(Inkscape::WARNING_MESSAGE,
1902             _("The selection has no applied mask."));
1903     }*/
1907 namespace {
1909 template <typename D>
1910 SPItem *next_item_from_list(SPDesktop *desktop, GSList const *items,
1911                             SPObject *root, bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1913     SPObject *current=root;
1914     while (items) {
1915         SPItem *item=SP_ITEM(items->data);
1916         if ( root->isAncestorOf(item) &&
1917              ( !only_in_viewport || desktop->isWithinViewport(item) ) )
1918         {
1919             current = item;
1920             break;
1921         }
1922         items = items->next;
1923     }
1925     GSList *path=NULL;
1926     while ( current != root ) {
1927         path = g_slist_prepend(path, current);
1928         current = SP_OBJECT_PARENT(current);
1929     }
1931     SPItem *next;
1932     // first, try from the current object
1933     next = next_item<D>(desktop, path, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1934     g_slist_free(path);
1936     if (!next) { // if we ran out of objects, start over at the root
1937         next = next_item<D>(desktop, NULL, root, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1938     }
1940     return next;
1943 template <typename D>
1944 SPItem *next_item(SPDesktop *desktop, GSList *path, SPObject *root,
1945                   bool only_in_viewport, PrefsSelectionContext inlayer, bool onlyvisible, bool onlysensitive)
1947     typename D::Iterator children;
1948     typename D::Iterator iter;
1950     SPItem *found=NULL;
1952     if (path) {
1953         SPObject *object=reinterpret_cast<SPObject *>(path->data);
1954         g_assert(SP_OBJECT_PARENT(object) == root);
1955         if (desktop->isLayer(object)) {
1956             found = next_item<D>(desktop, path->next, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1957         }
1958         iter = children = D::siblings_after(object);
1959     } else {
1960         iter = children = D::children(root);
1961     }
1963     while ( iter && !found ) {
1964         SPObject *object=D::object(iter);
1965         if (desktop->isLayer(object)) {
1966             if (PREFS_SELECTION_LAYER != inlayer) { // recurse into sublayers
1967                 found = next_item<D>(desktop, NULL, object, only_in_viewport, inlayer, onlyvisible, onlysensitive);
1968             }
1969         } else if ( SP_IS_ITEM(object) &&
1970                     ( !only_in_viewport || desktop->isWithinViewport(SP_ITEM(object)) ) &&
1971                     ( !onlyvisible || !desktop->itemIsHidden(SP_ITEM(object))) &&
1972                     ( !onlysensitive || !SP_ITEM(object)->isLocked()) &&
1973                     !desktop->isLayer(SP_ITEM(object)) )
1974         {
1975             found = SP_ITEM(object);
1976         }
1977         iter = D::next(iter);
1978     }
1980     D::dispose(children);
1982     return found;
1987 /**
1988  * If \a item is not entirely visible then adjust visible area to centre on the centre on of
1989  * \a item.
1990  */
1991 void scroll_to_show_item(SPDesktop *desktop, SPItem *item)
1993     Geom::Rect dbox = desktop->get_display_area();
1994     Geom::OptRect sbox = sp_item_bbox_desktop(item);
1996     if ( sbox && dbox.contains(*sbox) == false ) {
1997         Geom::Point const s_dt = sbox->midpoint();
1998         Geom::Point const s_w = desktop->d2w(s_dt);
1999         Geom::Point const d_dt = dbox.midpoint();
2000         Geom::Point const d_w = desktop->d2w(d_dt);
2001         Geom::Point const moved_w( d_w - s_w );
2002         gint const dx = (gint) moved_w[X];
2003         gint const dy = (gint) moved_w[Y];
2004         desktop->scroll_world(dx, dy);
2005     }
2009 void
2010 sp_selection_clone(SPDesktop *desktop)
2012     if (desktop == NULL)
2013         return;
2015     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2017     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(desktop->doc());
2019     // check if something is selected
2020     if (selection->isEmpty()) {
2021         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object</b> to clone."));
2022         return;
2023     }
2025     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
2027     selection->clear();
2029     // sorting items from different parents sorts each parent's subset without possibly mixing them, just what we need
2030     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
2032     GSList *newsel = NULL;
2034     while (reprs) {
2035         Inkscape::XML::Node *sel_repr = (Inkscape::XML::Node *) reprs->data;
2036         Inkscape::XML::Node *parent = sp_repr_parent(sel_repr);
2038         Inkscape::XML::Node *clone = xml_doc->createElement("svg:use");
2039         clone->setAttribute("x", "0", false);
2040         clone->setAttribute("y", "0", false);
2041         clone->setAttribute("xlink:href", g_strdup_printf("#%s", sel_repr->attribute("id")), false);
2043         clone->setAttribute("inkscape:transform-center-x", sel_repr->attribute("inkscape:transform-center-x"), false);
2044         clone->setAttribute("inkscape:transform-center-y", sel_repr->attribute("inkscape:transform-center-y"), false);
2046         // add the new clone to the top of the original's parent
2047         parent->appendChild(clone);
2049         newsel = g_slist_prepend(newsel, clone);
2050         reprs = g_slist_remove(reprs, sel_repr);
2051         Inkscape::GC::release(clone);
2052     }
2054     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_CLONE,
2055                      C_("Action","Clone"));
2057     selection->setReprList(newsel);
2059     g_slist_free(newsel);
2062 void
2063 sp_selection_relink(SPDesktop *desktop)
2065     if (!desktop)
2066         return;
2068     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2070     if (selection->isEmpty()) {
2071         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>clones</b> to relink."));
2072         return;
2073     }
2075     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
2076     const gchar *newid = cm->getFirstObjectID();
2077     if (!newid) {
2078         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Copy an <b>object</b> to clipboard to relink clones to."));
2079         return;
2080     }
2081     gchar *newref = g_strdup_printf("#%s", newid);
2083     // Get a copy of current selection.
2084     bool relinked = false;
2085     for (GSList *items = (GSList *) selection->itemList();
2086          items != NULL;
2087          items = items->next)
2088     {
2089         SPItem *item = (SPItem *) items->data;
2091         if (!SP_IS_USE(item))
2092             continue;
2094         SP_OBJECT_REPR(item)->setAttribute("xlink:href", newref);
2095         item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
2096         relinked = true;
2097     }
2099     g_free(newref);
2101     if (!relinked) {
2102         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to relink</b> in the selection."));
2103     } else {
2104         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2105                          _("Relink clone"));
2106     }
2110 void
2111 sp_selection_unlink(SPDesktop *desktop)
2113     if (!desktop)
2114         return;
2116     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2118     if (selection->isEmpty()) {
2119         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>clones</b> to unlink."));
2120         return;
2121     }
2123     // Get a copy of current selection.
2124     GSList *new_select = NULL;
2125     bool unlinked = false;
2126     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2127          items != NULL;
2128          items = items->next)
2129     {
2130         SPItem *item = (SPItem *) items->data;
2132         if (SP_IS_TEXT(item)) {
2133             SPObject *tspan = sp_tref_convert_to_tspan(item);
2135             if (tspan) {
2136                 item->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
2137             }
2139             // Set unlink to true, and fall into the next if which
2140             // will include this text item in the new selection
2141             unlinked = true;
2142         }
2144         if (!(SP_IS_USE(item) || SP_IS_TREF(item))) {
2145             // keep the non-use item in the new selection
2146             new_select = g_slist_prepend(new_select, item);
2147             continue;
2148         }
2150         SPItem *unlink;
2151         if (SP_IS_USE(item)) {
2152             unlink = sp_use_unlink(SP_USE(item));
2153             // Unable to unlink use (external or invalid href?)
2154             if (!unlink) {
2155                 new_select = g_slist_prepend(new_select, item);
2156                 continue;
2157             }
2158         } else /*if (SP_IS_TREF(use))*/ {
2159             unlink = SP_ITEM(sp_tref_convert_to_tspan(item));
2160         }
2162         unlinked = true;
2163         // Add ungrouped items to the new selection.
2164         new_select = g_slist_prepend(new_select, unlink);
2165     }
2167     if (new_select) { // set new selection
2168         selection->clear();
2169         selection->setList(new_select);
2170         g_slist_free(new_select);
2171     }
2172     if (!unlinked) {
2173         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to unlink</b> in the selection."));
2174     }
2176     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2177                      _("Unlink clone"));
2180 void
2181 sp_select_clone_original(SPDesktop *desktop)
2183     if (desktop == NULL)
2184         return;
2186     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2188     SPItem *item = selection->singleItem();
2190     gchar const *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.");
2192     // Check if other than two objects are selected
2193     if (g_slist_length((GSList *) selection->itemList()) != 1 || !item) {
2194         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2195         return;
2196     }
2198     SPItem *original = NULL;
2199     if (SP_IS_USE(item)) {
2200         original = sp_use_get_original(SP_USE(item));
2201     } else if (SP_IS_OFFSET(item) && SP_OFFSET(item)->sourceHref) {
2202         original = sp_offset_get_source(SP_OFFSET(item));
2203     } else if (SP_IS_TEXT_TEXTPATH(item)) {
2204         original = sp_textpath_get_path_item(SP_TEXTPATH(sp_object_first_child(item)));
2205     } else if (SP_IS_FLOWTEXT(item)) {
2206         original = SP_FLOWTEXT(item)->get_frame(NULL); // first frame only
2207     } else { // it's an object that we don't know what to do with
2208         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2209         return;
2210     }
2212     if (!original) {
2213         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)"));
2214         return;
2215     }
2217     for (SPObject *o = original; o && !SP_IS_ROOT(o); o = SP_OBJECT_PARENT(o)) {
2218         if (SP_IS_DEFS(o)) {
2219             desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("The object you're trying to select is <b>not visible</b> (it is in &lt;defs&gt;)"));
2220             return;
2221         }
2222     }
2224     if (original) {
2225         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2226         bool highlight = prefs->getBool("/options/highlightoriginal/value");
2227         if (highlight) {
2228             Geom::OptRect a = item->getBounds(sp_item_i2d_affine(item));
2229             Geom::OptRect b = original->getBounds(sp_item_i2d_affine(original));
2230             if ( a && b ) {
2231                 // draw a flashing line between the objects
2232                 SPCurve *curve = new SPCurve();
2233                 curve->moveto(a->midpoint());
2234                 curve->lineto(b->midpoint());
2236                 SPCanvasItem * canvasitem = sp_canvas_bpath_new(sp_desktop_tempgroup(desktop), curve);
2237                 sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(canvasitem), 0x0000ddff, 1.0, SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT, 5, 3);
2238                 sp_canvas_item_show(canvasitem);
2239                 curve->unref();
2240                 desktop->add_temporary_canvasitem(canvasitem, 1000);
2241             }
2242         }
2244         selection->clear();
2245         selection->set(original);
2246         if (SP_CYCLING == SP_CYCLE_FOCUS) {
2247             scroll_to_show_item(desktop, original);
2248         }
2249     }
2253 void sp_selection_to_marker(SPDesktop *desktop, bool apply)
2255     if (desktop == NULL)
2256         return;
2258     SPDocument *doc = sp_desktop_document(desktop);
2259     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2261     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2263     // check if something is selected
2264     if (selection->isEmpty()) {
2265         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to marker."));
2266         return;
2267     }
2269     sp_document_ensure_up_to_date(doc);
2270     Geom::OptRect r = selection->bounds(SPItem::RENDERING_BBOX);
2271     boost::optional<Geom::Point> c = selection->center();
2272     if ( !r || !c ) {
2273         return;
2274     }
2276     // calculate the transform to be applied to objects to move them to 0,0
2277     Geom::Point move_p = Geom::Point(0, sp_document_height(doc)) - *c;
2278     move_p[Geom::Y] = -move_p[Geom::Y];
2279     Geom::Matrix move = Geom::Matrix(Geom::Translate(move_p));
2281     GSList *items = g_slist_copy((GSList *) selection->itemList());
2283     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2285     // bottommost object, after sorting
2286     SPObject *parent = SP_OBJECT_PARENT(items->data);
2288     Geom::Matrix parent_transform(sp_item_i2doc_affine(SP_ITEM(parent)));
2290     // remember the position of the first item
2291     gint pos = SP_OBJECT_REPR(items->data)->position();
2292     (void)pos; // TODO check why this was remembered
2294     // create a list of duplicates
2295     GSList *repr_copies = NULL;
2296     for (GSList *i = items; i != NULL; i = i->next) {
2297         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2298         repr_copies = g_slist_prepend(repr_copies, dup);
2299     }
2301     Geom::Rect bounds(desktop->dt2doc(r->min()), desktop->dt2doc(r->max()));
2303     if (apply) {
2304         // delete objects so that their clones don't get alerted; this object will be restored shortly
2305         for (GSList *i = items; i != NULL; i = i->next) {
2306             SPObject *item = reinterpret_cast<SPObject*>(i->data);
2307             item->deleteObject(false);
2308         }
2309     }
2311     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2312     // without disturbing clones.
2313     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2314     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2315     int saved_compensation = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2316     prefs->setInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2318     gchar const *mark_id = generate_marker(repr_copies, bounds, doc,
2319                                            ( Geom::Matrix(Geom::Translate(desktop->dt2doc(
2320                                                                               Geom::Point(r->min()[Geom::X],
2321                                                                                           r->max()[Geom::Y]))))
2322                                              * parent_transform.inverse() ),
2323                                            parent_transform * move);
2324     (void)mark_id;
2326     // restore compensation setting
2327     prefs->setInt("/options/clonecompensation/value", saved_compensation);
2330     g_slist_free(items);
2332     sp_document_done(doc, SP_VERB_EDIT_SELECTION_2_MARKER,
2333                      _("Objects to marker"));
2336 static void sp_selection_to_guides_recursive(SPItem *item, bool deleteitem, bool wholegroups) {
2337     if (SP_IS_GROUP(item) && !SP_IS_BOX3D(item) && !wholegroups) {
2338         for (GSList *i = sp_item_group_item_list(SP_GROUP(item)); i != NULL; i = i->next) {
2339             sp_selection_to_guides_recursive(SP_ITEM(i->data), deleteitem, wholegroups);
2340         }
2341     } else {
2342         sp_item_convert_item_to_guides(item);
2344         if (deleteitem) {
2345             item->deleteObject(true);
2346         }
2347     }
2350 void sp_selection_to_guides(SPDesktop *desktop)
2352     if (desktop == NULL)
2353         return;
2355     SPDocument *doc = sp_desktop_document(desktop);
2356     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2357     // we need to copy the list because it gets reset when objects are deleted
2358     GSList *items = g_slist_copy((GSList *) selection->itemList());
2360     if (!items) {
2361         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to guides."));
2362         return;
2363     }
2365     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2366     bool deleteitem = !prefs->getBool("/tools/cvg_keep_objects", 0);
2367     bool wholegroups = prefs->getBool("/tools/cvg_convert_whole_groups", 0);
2369     for (GSList const *i = items; i != NULL; i = i->next) {
2370         sp_selection_to_guides_recursive(SP_ITEM(i->data), deleteitem, wholegroups);
2371     }
2373     sp_document_done(doc, SP_VERB_EDIT_SELECTION_2_GUIDES, _("Objects to guides"));
2376 void
2377 sp_selection_tile(SPDesktop *desktop, bool apply)
2379     if (desktop == NULL)
2380         return;
2382     SPDocument *doc = sp_desktop_document(desktop);
2383     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2385     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2387     // check if something is selected
2388     if (selection->isEmpty()) {
2389         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to pattern."));
2390         return;
2391     }
2393     sp_document_ensure_up_to_date(doc);
2394     Geom::OptRect r = selection->bounds(SPItem::RENDERING_BBOX);
2395     if ( !r ) {
2396         return;
2397     }
2399     // calculate the transform to be applied to objects to move them to 0,0
2400     Geom::Point move_p = Geom::Point(0, sp_document_height(doc)) - (r->min() + Geom::Point(0, r->dimensions()[Geom::Y]));
2401     move_p[Geom::Y] = -move_p[Geom::Y];
2402     Geom::Matrix move = Geom::Matrix(Geom::Translate(move_p));
2404     GSList *items = g_slist_copy((GSList *) selection->itemList());
2406     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2408     // bottommost object, after sorting
2409     SPObject *parent = SP_OBJECT_PARENT(items->data);
2411     Geom::Matrix parent_transform(sp_item_i2doc_affine(SP_ITEM(parent)));
2413     // remember the position of the first item
2414     gint pos = SP_OBJECT_REPR(items->data)->position();
2416     // create a list of duplicates
2417     GSList *repr_copies = NULL;
2418     for (GSList *i = items; i != NULL; i = i->next) {
2419         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2420         repr_copies = g_slist_prepend(repr_copies, dup);
2421     }
2422     // restore the z-order after prepends
2423     repr_copies = g_slist_reverse(repr_copies);
2425     Geom::Rect bounds(desktop->dt2doc(r->min()), desktop->dt2doc(r->max()));
2427     if (apply) {
2428         // delete objects so that their clones don't get alerted; this object will be restored shortly
2429         for (GSList *i = items; i != NULL; i = i->next) {
2430             SPObject *item = reinterpret_cast<SPObject*>(i->data);
2431             item->deleteObject(false);
2432         }
2433     }
2435     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2436     // without disturbing clones.
2437     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2438     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2439     int saved_compensation = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2440     prefs->setInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2442     gchar const *pat_id = pattern_tile(repr_copies, bounds, doc,
2443                                        ( Geom::Matrix(Geom::Translate(desktop->dt2doc(Geom::Point(r->min()[Geom::X],
2444                                                                                             r->max()[Geom::Y]))))
2445                                          * to_2geom(parent_transform.inverse()) ),
2446                                        parent_transform * move);
2448     // restore compensation setting
2449     prefs->setInt("/options/clonecompensation/value", saved_compensation);
2451     if (apply) {
2452         Inkscape::XML::Node *rect = xml_doc->createElement("svg:rect");
2453         rect->setAttribute("style", g_strdup_printf("stroke:none;fill:url(#%s)", pat_id));
2455         Geom::Point min = bounds.min() * to_2geom(parent_transform.inverse());
2456         Geom::Point max = bounds.max() * to_2geom(parent_transform.inverse());
2458         sp_repr_set_svg_double(rect, "width", max[Geom::X] - min[Geom::X]);
2459         sp_repr_set_svg_double(rect, "height", max[Geom::Y] - min[Geom::Y]);
2460         sp_repr_set_svg_double(rect, "x", min[Geom::X]);
2461         sp_repr_set_svg_double(rect, "y", min[Geom::Y]);
2463         // restore parent and position
2464         SP_OBJECT_REPR(parent)->appendChild(rect);
2465         rect->setPosition(pos > 0 ? pos : 0);
2466         SPItem *rectangle = (SPItem *) sp_desktop_document(desktop)->getObjectByRepr(rect);
2468         Inkscape::GC::release(rect);
2470         selection->clear();
2471         selection->set(rectangle);
2472     }
2474     g_slist_free(items);
2476     sp_document_done(doc, SP_VERB_EDIT_TILE,
2477                      _("Objects to pattern"));
2480 void
2481 sp_selection_untile(SPDesktop *desktop)
2483     if (desktop == NULL)
2484         return;
2486     SPDocument *doc = sp_desktop_document(desktop);
2487     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2489     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2491     // check if something is selected
2492     if (selection->isEmpty()) {
2493         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object with pattern fill</b> to extract objects from."));
2494         return;
2495     }
2497     GSList *new_select = NULL;
2499     bool did = false;
2501     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2502          items != NULL;
2503          items = items->next) {
2505         SPItem *item = (SPItem *) items->data;
2507         SPStyle *style = item->style;
2509         if (!style || !style->fill.isPaintserver())
2510             continue;
2512         SPPaintServer *server = item->style->getFillPaintServer();
2514         if (!SP_IS_PATTERN(server))
2515             continue;
2517         did = true;
2519         SPPattern *pattern = pattern_getroot(SP_PATTERN(server));
2521         Geom::Matrix pat_transform = to_2geom(pattern_patternTransform(SP_PATTERN(server)));
2522         pat_transform *= item->transform;
2524         for (SPObject *child = sp_object_first_child(pattern) ; child != NULL; child = child->next ) {
2525             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate(xml_doc);
2526             SPItem *i = SP_ITEM(desktop->currentLayer()->appendChildRepr(copy));
2528            // FIXME: relink clones to the new canvas objects
2529            // use SPObject::setid when mental finishes it to steal ids of
2531             // this is needed to make sure the new item has curve (simply requestDisplayUpdate does not work)
2532             sp_document_ensure_up_to_date(doc);
2534             Geom::Matrix transform( i->transform * pat_transform );
2535             sp_item_write_transform(i, SP_OBJECT_REPR(i), transform);
2537             new_select = g_slist_prepend(new_select, i);
2538         }
2540         SPCSSAttr *css = sp_repr_css_attr_new();
2541         sp_repr_css_set_property(css, "fill", "none");
2542         sp_repr_css_change(SP_OBJECT_REPR(item), css, "style");
2543     }
2545     if (!did) {
2546         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No pattern fills</b> in the selection."));
2547     } else {
2548         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNTILE,
2549                          _("Pattern to objects"));
2550         selection->setList(new_select);
2551     }
2554 void
2555 sp_selection_get_export_hints(Inkscape::Selection *selection, char const **filename, float *xdpi, float *ydpi)
2557     if (selection->isEmpty()) {
2558         return;
2559     }
2561     GSList const *reprlst = selection->reprList();
2562     bool filename_search = TRUE;
2563     bool xdpi_search = TRUE;
2564     bool ydpi_search = TRUE;
2566     for (; reprlst != NULL &&
2567             filename_search &&
2568             xdpi_search &&
2569             ydpi_search;
2570         reprlst = reprlst->next) {
2571         gchar const *dpi_string;
2572         Inkscape::XML::Node * repr = (Inkscape::XML::Node *)reprlst->data;
2574         if (filename_search) {
2575             *filename = repr->attribute("inkscape:export-filename");
2576             if (*filename != NULL)
2577                 filename_search = FALSE;
2578         }
2580         if (xdpi_search) {
2581             dpi_string = NULL;
2582             dpi_string = repr->attribute("inkscape:export-xdpi");
2583             if (dpi_string != NULL) {
2584                 *xdpi = atof(dpi_string);
2585                 xdpi_search = FALSE;
2586             }
2587         }
2589         if (ydpi_search) {
2590             dpi_string = NULL;
2591             dpi_string = repr->attribute("inkscape:export-ydpi");
2592             if (dpi_string != NULL) {
2593                 *ydpi = atof(dpi_string);
2594                 ydpi_search = FALSE;
2595             }
2596         }
2597     }
2600 void
2601 sp_document_get_export_hints(SPDocument *doc, char const **filename, float *xdpi, float *ydpi)
2603     Inkscape::XML::Node * repr = sp_document_repr_root(doc);
2604     gchar const *dpi_string;
2606     *filename = repr->attribute("inkscape:export-filename");
2608     dpi_string = NULL;
2609     dpi_string = repr->attribute("inkscape:export-xdpi");
2610     if (dpi_string != NULL) {
2611         *xdpi = atof(dpi_string);
2612     }
2614     dpi_string = NULL;
2615     dpi_string = repr->attribute("inkscape:export-ydpi");
2616     if (dpi_string != NULL) {
2617         *ydpi = atof(dpi_string);
2618     }
2621 void
2622 sp_selection_create_bitmap_copy(SPDesktop *desktop)
2624     if (desktop == NULL)
2625         return;
2627     SPDocument *document = sp_desktop_document(desktop);
2628     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(document);
2630     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2632     // check if something is selected
2633     if (selection->isEmpty()) {
2634         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to make a bitmap copy."));
2635         return;
2636     }
2638     desktop->messageStack()->flash(Inkscape::IMMEDIATE_MESSAGE, _("Rendering bitmap..."));
2639     // set "busy" cursor
2640     desktop->setWaitingCursor();
2642     // Get the bounding box of the selection
2643     NRRect bbox;
2644     sp_document_ensure_up_to_date(document);
2645     selection->bounds(&bbox);
2646     if (NR_RECT_DFLS_TEST_EMPTY(&bbox)) {
2647         desktop->clearWaitingCursor();
2648         return; // exceptional situation, so not bother with a translatable error message, just quit quietly
2649     }
2651     // List of the items to show; all others will be hidden
2652     GSList *items = g_slist_copy((GSList *) selection->itemList());
2654     // Sort items so that the topmost comes last
2655     items = g_slist_sort(items, (GCompareFunc) sp_item_repr_compare_position);
2657     // Generate a random value from the current time (you may create bitmap from the same object(s)
2658     // multiple times, and this is done so that they don't clash)
2659     GTimeVal cu;
2660     g_get_current_time(&cu);
2661     guint current = (int) (cu.tv_sec * 1000000 + cu.tv_usec) % 1024;
2663     // Create the filename.
2664     gchar *const basename = g_strdup_printf("%s-%s-%u.png",
2665                                             document->name,
2666                                             SP_OBJECT_REPR(items->data)->attribute("id"),
2667                                             current);
2668     // Imagemagick is known not to handle spaces in filenames, so we replace anything but letters,
2669     // digits, and a few other chars, with "_"
2670     g_strcanon(basename, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.=+~$#@^&!?", '_');
2672     // Build the complete path by adding document base dir, if set, otherwise home dir
2673     gchar * directory = NULL;
2674     if (SP_DOCUMENT_URI(document)) {
2675         directory = g_dirname(SP_DOCUMENT_URI(document));
2676     }
2677     if (directory == NULL) {
2678         directory = homedir_path(NULL);
2679     }
2680     gchar *filepath = g_build_filename(directory, basename, NULL);
2682     //g_print("%s\n", filepath);
2684     // Remember parent and z-order of the topmost one
2685     gint pos = SP_OBJECT_REPR(g_slist_last(items)->data)->position();
2686     SPObject *parent_object = SP_OBJECT_PARENT(g_slist_last(items)->data);
2687     Inkscape::XML::Node *parent = SP_OBJECT_REPR(parent_object);
2689     // Calculate resolution
2690     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2691     double res;
2692     int const prefs_res = prefs->getInt("/options/createbitmap/resolution", 0);
2693     int const prefs_min = prefs->getInt("/options/createbitmap/minsize", 0);
2694     if (0 < prefs_res) {
2695         // If it's given explicitly in prefs, take it
2696         res = prefs_res;
2697     } else if (0 < prefs_min) {
2698         // If minsize is given, look up minimum bitmap size (default 250 pixels) and calculate resolution from it
2699         res = PX_PER_IN * prefs_min / MIN((bbox.x1 - bbox.x0), (bbox.y1 - bbox.y0));
2700     } else {
2701         float hint_xdpi = 0, hint_ydpi = 0;
2702         char const *hint_filename;
2703         // take resolution hint from the selected objects
2704         sp_selection_get_export_hints(selection, &hint_filename, &hint_xdpi, &hint_ydpi);
2705         if (hint_xdpi != 0) {
2706             res = hint_xdpi;
2707         } else {
2708             // take resolution hint from the document
2709             sp_document_get_export_hints(document, &hint_filename, &hint_xdpi, &hint_ydpi);
2710             if (hint_xdpi != 0) {
2711                 res = hint_xdpi;
2712             } else {
2713                 // if all else fails, take the default 90 dpi
2714                 res = PX_PER_IN;
2715             }
2716         }
2717     }
2719     // The width and height of the bitmap in pixels
2720     unsigned width = (unsigned) floor((bbox.x1 - bbox.x0) * res / PX_PER_IN);
2721     unsigned height =(unsigned) floor((bbox.y1 - bbox.y0) * res / PX_PER_IN);
2723     // Find out if we have to run an external filter
2724     gchar const *run = NULL;
2725     Glib::ustring filter = prefs->getString("/options/createbitmap/filter");
2726     if (!filter.empty()) {
2727         // filter command is given;
2728         // see if we have a parameter to pass to it
2729         Glib::ustring param1 = prefs->getString("/options/createbitmap/filter_param1");
2730         if (!param1.empty()) {
2731             if (param1[param1.length() - 1] == '%') {
2732                 // if the param string ends with %, interpret it as a percentage of the image's max dimension
2733                 gchar p1[256];
2734                 g_ascii_dtostr(p1, 256, ceil(g_ascii_strtod(param1.data(), NULL) * MAX(width, height) / 100));
2735                 // the first param is always the image filename, the second is param1
2736                 run = g_strdup_printf("%s \"%s\" %s", filter.data(), filepath, p1);
2737             } else {
2738                 // otherwise pass the param1 unchanged
2739                 run = g_strdup_printf("%s \"%s\" %s", filter.data(), filepath, param1.data());
2740             }
2741         } else {
2742             // run without extra parameter
2743             run = g_strdup_printf("%s \"%s\"", filter.data(), filepath);
2744         }
2745     }
2747     // Calculate the matrix that will be applied to the image so that it exactly overlaps the source objects
2748     Geom::Matrix eek(sp_item_i2d_affine(SP_ITEM(parent_object)));
2749     Geom::Matrix t;
2751     double shift_x = bbox.x0;
2752     double shift_y = bbox.y1;
2753     if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2754         shift_x = round(shift_x);
2755         shift_y = -round(-shift_y); // this gets correct rounding despite coordinate inversion, remove the negations when the inversion is gone
2756     }
2757     t = Geom::Scale(1, -1) * Geom::Translate(shift_x, shift_y) * eek.inverse();
2759     // Do the export
2760     sp_export_png_file(document, filepath,
2761                        bbox.x0, bbox.y0, bbox.x1, bbox.y1,
2762                        width, height, res, res,
2763                        (guint32) 0xffffff00,
2764                        NULL, NULL,
2765                        true,  /*bool force_overwrite,*/
2766                        items);
2768     g_slist_free(items);
2770     // Run filter, if any
2771     if (run) {
2772         g_print("Running external filter: %s\n", run);
2773         int retval;
2774         retval = system(run);
2775     }
2777     // Import the image back
2778     GdkPixbuf *pb = gdk_pixbuf_new_from_file(filepath, NULL);
2779     if (pb) {
2780         // Create the repr for the image
2781         Inkscape::XML::Node * repr = xml_doc->createElement("svg:image");
2782         sp_embed_image(repr, pb, "image/png");
2783         if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2784             sp_repr_set_svg_double(repr, "width", width);
2785             sp_repr_set_svg_double(repr, "height", height);
2786         } else {
2787             sp_repr_set_svg_double(repr, "width", (bbox.x1 - bbox.x0));
2788             sp_repr_set_svg_double(repr, "height", (bbox.y1 - bbox.y0));
2789         }
2791         // Write transform
2792         gchar *c=sp_svg_transform_write(t);
2793         repr->setAttribute("transform", c);
2794         g_free(c);
2796         // add the new repr to the parent
2797         parent->appendChild(repr);
2799         // move to the saved position
2800         repr->setPosition(pos > 0 ? pos + 1 : 1);
2802         // Set selection to the new image
2803         selection->clear();
2804         selection->add(repr);
2806         // Clean up
2807         Inkscape::GC::release(repr);
2808         gdk_pixbuf_unref(pb);
2810         // Complete undoable transaction
2811         sp_document_done(document, SP_VERB_SELECTION_CREATE_BITMAP,
2812                          _("Create bitmap"));
2813     }
2815     desktop->clearWaitingCursor();
2817     g_free(basename);
2818     g_free(filepath);
2821 /**
2822  * \brief Creates a mask or clipPath from selection
2823  * Two different modes:
2824  *  if applyToLayer, all selection is moved to DEFS as mask/clippath
2825  *       and is applied to current layer
2826  *  otherwise, topmost object is used as mask for other objects
2827  * If \a apply_clip_path parameter is true, clipPath is created, otherwise mask
2828  *
2829  */
2830 void
2831 sp_selection_set_mask(SPDesktop *desktop, bool apply_clip_path, bool apply_to_layer)
2833     if (desktop == NULL)
2834         return;
2836     SPDocument *doc = sp_desktop_document(desktop);
2837     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2839     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2841     // check if something is selected
2842     bool is_empty = selection->isEmpty();
2843     if ( apply_to_layer && is_empty) {
2844         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to create clippath or mask from."));
2845         return;
2846     } else if (!apply_to_layer && ( is_empty || NULL == selection->itemList()->next )) {
2847         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select mask object and <b>object(s)</b> to apply clippath or mask to."));
2848         return;
2849     }
2851     // FIXME: temporary patch to prevent crash!
2852     // Remove this when bboxes are fixed to not blow up on an item clipped/masked with its own clone
2853     bool clone_with_original = selection_contains_both_clone_and_original(selection);
2854     if (clone_with_original) {
2855         return; // in this version, you cannot clip/mask an object with its own clone
2856     }
2857     // /END FIXME
2859     sp_document_ensure_up_to_date(doc);
2861     GSList *items = g_slist_copy((GSList *) selection->itemList());
2863     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2865     // See lp bug #542004
2866     selection->clear();
2868     // create a list of duplicates
2869     GSList *mask_items = NULL;
2870     GSList *apply_to_items = NULL;
2871     GSList *items_to_delete = NULL;
2872     GSList *items_to_select = NULL;
2874     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2875     bool topmost = prefs->getBool("/options/maskobject/topmost", true);
2876     bool remove_original = prefs->getBool("/options/maskobject/remove", true);
2877     int grouping = prefs->getInt("/options/maskobject/grouping", PREFS_MASKOBJECT_GROUPING_NONE);
2879     if (apply_to_layer) {
2880         // all selected items are used for mask, which is applied to a layer
2881         apply_to_items = g_slist_prepend(apply_to_items, desktop->currentLayer());
2883         for (GSList *i = items; i != NULL; i = i->next) {
2884             Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2885             mask_items = g_slist_prepend(mask_items, dup);
2887             SPObject *item = reinterpret_cast<SPObject*>(i->data);
2888             if (remove_original) {
2889                 items_to_delete = g_slist_prepend(items_to_delete, item);
2890             }
2891             else {
2892                 items_to_select = g_slist_prepend(items_to_select, item);
2893             }
2894         }
2895     } else if (!topmost) {
2896         // topmost item is used as a mask, which is applied to other items in a selection
2897         GSList *i = items;
2898         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2899         mask_items = g_slist_prepend(mask_items, dup);
2901         if (remove_original) {
2902             SPObject *item = reinterpret_cast<SPObject*>(i->data);
2903             items_to_delete = g_slist_prepend(items_to_delete, item);
2904         }
2906         for (i = i->next; i != NULL; i = i->next) {
2907             apply_to_items = g_slist_prepend(apply_to_items, i->data);
2908             items_to_select = g_slist_prepend(items_to_select, i->data);
2909         }
2910     } else {
2911         GSList *i = NULL;
2912         for (i = items; NULL != i->next; i = i->next) {
2913             apply_to_items = g_slist_prepend(apply_to_items, i->data);
2914             items_to_select = g_slist_prepend(items_to_select, i->data);
2915         }
2917         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2918         mask_items = g_slist_prepend(mask_items, dup);
2920         if (remove_original) {
2921             SPObject *item = reinterpret_cast<SPObject*>(i->data);
2922             items_to_delete = g_slist_prepend(items_to_delete, item);
2923         }
2924     }
2926     g_slist_free(items);
2927     items = NULL;
2929     if (apply_to_items && grouping == PREFS_MASKOBJECT_GROUPING_ALL) {
2930         // group all those objects into one group
2931         // and apply mask to that
2932         Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
2934         // make a note we should ungroup this when unsetting mask
2935         group->setAttribute("inkscape:groupmode", "maskhelper");
2937         GSList *reprs_to_group = NULL;
2939         for (GSList *i = apply_to_items ; NULL != i ; i = i->next) {
2940                 reprs_to_group = g_slist_prepend(reprs_to_group, SP_OBJECT_REPR(i->data));
2941                 items_to_select = g_slist_remove(items_to_select, i->data);
2942         }
2943         reprs_to_group = g_slist_reverse(reprs_to_group);
2945         sp_selection_group_impl(reprs_to_group, group, xml_doc, doc);
2947         reprs_to_group = NULL;
2949         // apply clip/mask only to newly created group
2950         g_slist_free(apply_to_items);
2951         apply_to_items = NULL;
2952         apply_to_items = g_slist_prepend(apply_to_items, doc->getObjectByRepr(group));
2954         items_to_select = g_slist_prepend(items_to_select, doc->getObjectByRepr(group));
2956         Inkscape::GC::release(group);
2957     }
2959     gchar const *attributeName = apply_clip_path ? "clip-path" : "mask";
2960     for (GSList *i = apply_to_items; NULL != i; i = i->next) {
2961         SPItem *item = reinterpret_cast<SPItem *>(i->data);
2962         // inverted object transform should be applied to a mask object,
2963         // as mask is calculated in user space (after applying transform)
2964         Geom::Matrix maskTransform(item->transform.inverse());
2966         GSList *mask_items_dup = NULL;
2967         for (GSList *mask_item = mask_items; NULL != mask_item; mask_item = mask_item->next) {
2968             Inkscape::XML::Node *dup = reinterpret_cast<Inkscape::XML::Node *>(mask_item->data)->duplicate(xml_doc);
2969             mask_items_dup = g_slist_prepend(mask_items_dup, dup);
2970         }
2972         gchar const *mask_id = NULL;
2973         if (apply_clip_path) {
2974             mask_id = sp_clippath_create(mask_items_dup, doc, &maskTransform);
2975         } else {
2976             mask_id = sp_mask_create(mask_items_dup, doc, &maskTransform);
2977         }
2979         g_slist_free(mask_items_dup);
2980         mask_items_dup = NULL;
2982         Inkscape::XML::Node *current = SP_OBJECT_REPR(i->data);
2983         // Node to apply mask to
2984         Inkscape::XML::Node *apply_mask_to = current;
2986         if (grouping == PREFS_MASKOBJECT_GROUPING_SEPARATE) {
2987             // enclose current node in group, and apply crop/mask on that
2988             Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
2989             // make a note we should ungroup this when unsetting mask
2990             group->setAttribute("inkscape:groupmode", "maskhelper");
2992             Inkscape::XML::Node *spnew = current->duplicate(xml_doc);
2993             gint position = current->position();
2994             items_to_select = g_slist_remove(items_to_select, item);
2995             current->parent()->appendChild(group);
2996             sp_repr_unparent(current);
2997             group->appendChild(spnew);
2998             group->setPosition(position);
3000             // Apply clip/mask to group instead
3001             apply_mask_to = group;
3003             items_to_select = g_slist_prepend(items_to_select, doc->getObjectByRepr(group));
3004             Inkscape::GC::release(spnew);
3005             Inkscape::GC::release(group);
3006         }
3008         apply_mask_to->setAttribute(attributeName, g_strdup_printf("url(#%s)", mask_id));
3010     }
3012     g_slist_free(mask_items);
3013     g_slist_free(apply_to_items);
3015     for (GSList *i = items_to_delete; NULL != i; i = i->next) {
3016         SPObject *item = reinterpret_cast<SPObject*>(i->data);
3017         item->deleteObject(false);
3018         items_to_select = g_slist_remove(items_to_select, item);
3019     }
3020     g_slist_free(items_to_delete);
3022     items_to_select = g_slist_reverse(items_to_select);
3024     selection->addList(items_to_select);
3025     g_slist_free(items_to_select);
3027     if (apply_clip_path)
3028         sp_document_done(doc, SP_VERB_OBJECT_SET_CLIPPATH, _("Set clipping path"));
3029     else
3030         sp_document_done(doc, SP_VERB_OBJECT_SET_MASK, _("Set mask"));
3033 void sp_selection_unset_mask(SPDesktop *desktop, bool apply_clip_path) {
3034     if (desktop == NULL)
3035         return;
3037     SPDocument *doc = sp_desktop_document(desktop);
3038     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
3039     Inkscape::Selection *selection = sp_desktop_selection(desktop);
3041     // check if something is selected
3042     if (selection->isEmpty()) {
3043         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove clippath or mask from."));
3044         return;
3045     }
3047     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
3048     bool remove_original = prefs->getBool("/options/maskobject/remove", true);
3049     bool ungroup_masked = prefs->getBool("/options/maskobject/ungrouping", true);
3050     sp_document_ensure_up_to_date(doc);
3052     gchar const *attributeName = apply_clip_path ? "clip-path" : "mask";
3053     std::map<SPObject*,SPItem*> referenced_objects;
3055     GSList *items = g_slist_copy((GSList *) selection->itemList());
3056     selection->clear();
3058     GSList *items_to_ungroup = NULL;
3059     GSList *items_to_select = g_slist_copy(items);
3060     items_to_select = g_slist_reverse(items_to_select);
3063     // SPObject* refers to a group containing the clipped path or mask itself,
3064     // whereas SPItem* refers to the item being clipped or masked
3065     for (GSList const *i = items; NULL != i; i = i->next) {
3066         if (remove_original) {
3067             // remember referenced mask/clippath, so orphaned masks can be moved back to document
3068             SPItem *item = reinterpret_cast<SPItem *>(i->data);
3069             Inkscape::URIReference *uri_ref = NULL;
3071             if (apply_clip_path) {
3072                 uri_ref = item->clip_ref;
3073             } else {
3074                 uri_ref = item->mask_ref;
3075             }
3077             // collect distinct mask object (and associate with item to apply transform)
3078             if (NULL != uri_ref && NULL != uri_ref->getObject()) {
3079                 referenced_objects[uri_ref->getObject()] = item;
3080             }
3081         }
3083         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, "none");
3085         if (ungroup_masked && SP_IS_GROUP(i->data)) {
3086                 // if we had previously enclosed masked object in group,
3087                 // add it to list so we can ungroup it later
3088                 SPGroup *item = SP_GROUP(i->data);
3090                 // ungroup only groups we created when setting clip/mask
3091                 if (item->layerMode() == SPGroup::MASK_HELPER) {
3092                     items_to_ungroup = g_slist_prepend(items_to_ungroup, item);
3093                 }
3095         }
3096     }
3097     g_slist_free(items);
3099     // restore mask objects into a document
3100     for ( std::map<SPObject*,SPItem*>::iterator it = referenced_objects.begin() ; it != referenced_objects.end() ; ++it) {
3101         SPObject *obj = (*it).first; // Group containing the clipped paths or masks
3102         GSList *items_to_move = NULL;
3103         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
3104             // Collect all clipped paths and masks within a single group
3105             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate(xml_doc);
3106             items_to_move = g_slist_prepend(items_to_move, copy);
3107         }
3109         if (!obj->isReferenced()) {
3110             // delete from defs if no other object references this mask
3111             obj->deleteObject(false);
3112         }
3114         // remember parent and position of the item to which the clippath/mask was applied
3115         Inkscape::XML::Node *parent = SP_OBJECT_REPR((*it).second)->parent();
3116         gint pos = SP_OBJECT_REPR((*it).second)->position();
3118         // Iterate through all clipped paths / masks
3119         for (GSList *i = items_to_move; NULL != i; i = i->next) {
3120             Inkscape::XML::Node *repr = (Inkscape::XML::Node *)i->data;
3122             // insert into parent, restore pos
3123             parent->appendChild(repr);
3124             repr->setPosition((pos + 1) > 0 ? (pos + 1) : 0);
3126             SPItem *mask_item = (SPItem *) sp_desktop_document(desktop)->getObjectByRepr(repr);
3127             items_to_select = g_slist_prepend(items_to_select, mask_item);
3129             // transform mask, so it is moved the same spot where mask was applied
3130             Geom::Matrix transform(mask_item->transform);
3131             transform *= (*it).second->transform;
3132             sp_item_write_transform(mask_item, SP_OBJECT_REPR(mask_item), transform);
3133         }
3135         g_slist_free(items_to_move);
3136     }
3138     // ungroup marked groups added when setting mask
3139     for (GSList *i = items_to_ungroup ; NULL != i ; i = i->next) {
3140         items_to_select = g_slist_remove(items_to_select, SP_GROUP(i->data));
3141         GSList *children = NULL;
3142         sp_item_group_ungroup(SP_GROUP(i->data), &children, false);
3143         items_to_select = g_slist_concat(children, items_to_select);
3144     }
3146     g_slist_free(items_to_ungroup);
3148     // rebuild selection
3149     items_to_select = g_slist_reverse(items_to_select);
3150     selection->addList(items_to_select);
3151     g_slist_free(items_to_select);
3153     if (apply_clip_path)
3154         sp_document_done(doc, SP_VERB_OBJECT_UNSET_CLIPPATH, _("Release clipping path"));
3155     else
3156         sp_document_done(doc, SP_VERB_OBJECT_UNSET_MASK, _("Release mask"));
3159 /**
3160  * \param with_margins margins defined in the xml under <sodipodi:namedview>
3161  *                     "fit-margin-..." attributes.  See SPDocument::fitToRect.
3162  * \return true if an undoable change should be recorded.
3163  */
3164 bool
3165 fit_canvas_to_selection(SPDesktop *desktop, bool with_margins)
3167     g_return_val_if_fail(desktop != NULL, false);
3168     SPDocument *doc = sp_desktop_document(desktop);
3170     g_return_val_if_fail(doc != NULL, false);
3171     g_return_val_if_fail(desktop->selection != NULL, false);
3173     if (desktop->selection->isEmpty()) {
3174         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to fit canvas to."));
3175         return false;
3176     }
3177     Geom::OptRect const bbox(desktop->selection->bounds(SPItem::RENDERING_BBOX));
3178     if (bbox) {
3179         doc->fitToRect(*bbox, with_margins);
3180         return true;
3181     } else {
3182         return false;
3183     }
3186 /**
3187  * Fit canvas to the bounding box of the selection, as an undoable action.
3188  */
3189 void
3190 verb_fit_canvas_to_selection(SPDesktop *const desktop)
3192     if (fit_canvas_to_selection(desktop)) {
3193         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_SELECTION,
3194                          _("Fit Page to Selection"));
3195     }
3198 /**
3199  * \param with_margins margins defined in the xml under <sodipodi:namedview>
3200  *                     "fit-margin-..." attributes.  See SPDocument::fitToRect.
3201  */
3202 bool
3203 fit_canvas_to_drawing(SPDocument *doc, bool with_margins)
3205     g_return_val_if_fail(doc != NULL, false);
3207     sp_document_ensure_up_to_date(doc);
3208     SPItem const *const root = SP_ITEM(doc->root);
3209     Geom::OptRect const bbox(root->getBounds(sp_item_i2d_affine(root)));
3210     if (bbox) {
3211         doc->fitToRect(*bbox, with_margins);
3212         return true;
3213     } else {
3214         return false;
3215     }
3218 void
3219 verb_fit_canvas_to_drawing(SPDesktop *desktop)
3221     if (fit_canvas_to_drawing(sp_desktop_document(desktop))) {
3222         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_DRAWING,
3223                          _("Fit Page to Drawing"));
3224     }
3227 /**
3228  * Fits canvas to selection or drawing with margins from <sodipodi:namedview>
3229  * "fit-margin-..." attributes.  See SPDocument::fitToRect and
3230  * ui/dialog/page-sizer.
3231  */
3232 void fit_canvas_to_selection_or_drawing(SPDesktop *desktop) {
3233     g_return_if_fail(desktop != NULL);
3234     SPDocument *doc = sp_desktop_document(desktop);
3236     g_return_if_fail(doc != NULL);
3237     g_return_if_fail(desktop->selection != NULL);
3239     bool const changed = ( desktop->selection->isEmpty()
3240                            ? fit_canvas_to_drawing(doc, true)
3241                            : fit_canvas_to_selection(desktop, true) );
3242     if (changed) {
3243         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING,
3244                          _("Fit Page to Selection or Drawing"));
3245     }
3246 };
3248 static void itemtree_map(void (*f)(SPItem *, SPDesktop *), SPObject *root, SPDesktop *desktop) {
3249     // don't operate on layers
3250     if (SP_IS_ITEM(root) && !desktop->isLayer(SP_ITEM(root))) {
3251         f(SP_ITEM(root), desktop);
3252     }
3253     for ( SPObject::SiblingIterator iter = root->firstChild() ; iter ; ++iter ) {
3254         //don't recurse into locked layers
3255         if (!(SP_IS_ITEM(&*iter) && desktop->isLayer(SP_ITEM(&*iter)) && SP_ITEM(&*iter)->isLocked())) {
3256             itemtree_map(f, iter, desktop);
3257         }
3258     }
3261 static void unlock(SPItem *item, SPDesktop */*desktop*/) {
3262     if (item->isLocked()) {
3263         item->setLocked(FALSE);
3264     }
3267 static void unhide(SPItem *item, SPDesktop *desktop) {
3268     if (desktop->itemIsHidden(item)) {
3269         item->setExplicitlyHidden(FALSE);
3270     }
3273 static void process_all(void (*f)(SPItem *, SPDesktop *), SPDesktop *dt, bool layer_only) {
3274     if (!dt) return;
3276     SPObject *root;
3277     if (layer_only) {
3278         root = dt->currentLayer();
3279     } else {
3280         root = dt->currentRoot();
3281     }
3283     itemtree_map(f, root, dt);
3286 void unlock_all(SPDesktop *dt) {
3287     process_all(&unlock, dt, true);
3290 void unlock_all_in_all_layers(SPDesktop *dt) {
3291     process_all(&unlock, dt, false);
3294 void unhide_all(SPDesktop *dt) {
3295     process_all(&unhide, dt, true);
3298 void unhide_all_in_all_layers(SPDesktop *dt) {
3299     process_all(&unhide, dt, false);
3303 /*
3304   Local Variables:
3305   mode:c++
3306   c-file-style:"stroustrup"
3307   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
3308   indent-tabs-mode:nil
3309   fill-column:99
3310   End:
3311 */
3312 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :