Code

17875075e0d5d2d8008152d012db00d762c05c91
[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  *
12  * Copyright (C) 1999-2010 authors
13  * Copyright (C) 2001-2002 Ximian, Inc.
14  *
15  * Released under GNU GPL, read the file 'COPYING' for more information
16  */
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
22 #include "selection-chemistry.h"
24 // TOOD fixme: This should be moved into preference repr
25 SPCycleType SP_CYCLING = SP_CYCLE_FOCUS;
28 #include <gtkmm/clipboard.h>
30 #include "svg/svg.h"
31 #include "desktop.h"
32 #include "desktop-style.h"
33 #include "dir-util.h"
34 #include "selection.h"
35 #include "tools-switch.h"
36 #include "desktop-handles.h"
37 #include "message-stack.h"
38 #include "sp-item-transform.h"
39 #include "marker.h"
40 #include "sp-use.h"
41 #include "sp-textpath.h"
42 #include "sp-tspan.h"
43 #include "sp-tref.h"
44 #include "sp-flowtext.h"
45 #include "sp-flowregion.h"
46 #include "sp-image.h"
47 #include "text-editing.h"
48 #include "text-context.h"
49 #include "connector-context.h"
50 #include "sp-path.h"
51 #include "sp-conn-end.h"
52 #include "dropper-context.h"
53 #include <glibmm/i18n.h>
54 #include "libnr/nr-matrix-rotate-ops.h"
55 #include "libnr/nr-matrix-translate-ops.h"
56 #include "libnr/nr-scale-ops.h"
57 #include <libnr/nr-matrix-ops.h>
58 #include <2geom/transforms.h>
59 #include "xml/repr.h"
60 #include "xml/rebase-hrefs.h"
61 #include "style.h"
62 #include "document-private.h"
63 #include "sp-gradient.h"
64 #include "sp-gradient-reference.h"
65 #include "sp-linear-gradient-fns.h"
66 #include "sp-pattern.h"
67 #include "sp-radial-gradient-fns.h"
68 #include "gradient-context.h"
69 #include "sp-namedview.h"
70 #include "preferences.h"
71 #include "sp-offset.h"
72 #include "sp-clippath.h"
73 #include "sp-mask.h"
74 #include "file.h"
75 #include "helper/png-write.h"
76 #include "layer-fns.h"
77 #include "context-fns.h"
78 #include <map>
79 #include <cstring>
80 #include <string>
81 #include "helper/units.h"
82 #include "sp-item.h"
83 #include "box3d.h"
84 #include "persp3d.h"
85 #include "unit-constants.h"
86 #include "xml/simple-document.h"
87 #include "sp-filter-reference.h"
88 #include "gradient-drag.h"
89 #include "uri-references.h"
90 #include "libnr/nr-convert2geom.h"
91 #include "display/curve.h"
92 #include "display/canvas-bpath.h"
93 #include "inkscape-private.h"
94 #include "path-chemistry.h"
95 #include "ui/tool/control-point-selection.h"
96 #include "ui/tool/multi-path-manipulator.h"
98 #include "enums.h"
99 #include "sp-item-group.h"
101 // For clippath editing
102 #include "tools-switch.h"
103 #include "ui/tool/node-tool.h"
105 #include "ui/clipboard.h"
107 using Geom::X;
108 using Geom::Y;
110 /* The clipboard handling is in ui/clipboard.cpp now. There are some legacy functions left here,
111 because the layer manipulation code uses them. It should be rewritten specifically
112 for that purpose. */
116 namespace Inkscape {
118 void SelectionHelper::selectAll(SPDesktop *dt)
120     if (tools_isactive(dt, TOOLS_NODES)) {
121         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
122         if (!nt->_multipath->empty()) {
123             nt->_multipath->selectSubpaths();
124             return;
125         }
126     }
127     sp_edit_select_all(dt);
130 void SelectionHelper::selectAllInAll(SPDesktop *dt)
132     if (tools_isactive(dt, TOOLS_NODES)) {
133         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
134         nt->_selected_nodes->selectAll();
135     } else {
136         sp_edit_select_all_in_all_layers(dt);
137     }
140 void SelectionHelper::selectNone(SPDesktop *dt)
142     if (tools_isactive(dt, TOOLS_NODES)) {
143         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
144         nt->_selected_nodes->clear();
145     } else {
146         sp_desktop_selection(dt)->clear();
147     }
150 void SelectionHelper::invert(SPDesktop *dt)
152     if (tools_isactive(dt, TOOLS_NODES)) {
153         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
154         nt->_multipath->invertSelectionInSubpaths();
155     } else {
156         sp_edit_invert(dt);
157     }
160 void SelectionHelper::invertAllInAll(SPDesktop *dt)
162     if (tools_isactive(dt, TOOLS_NODES)) {
163         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
164         nt->_selected_nodes->invertSelection();
165     } else {
166         sp_edit_invert_in_all_layers(dt);
167     }
170 void SelectionHelper::reverse(SPDesktop *dt)
172     // TODO make this a virtual method of event context!
173     if (tools_isactive(dt, TOOLS_NODES)) {
174         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
175         nt->_multipath->reverseSubpaths();
176     } else {
177         sp_selected_path_reverse(dt);
178     }
181 void SelectionHelper::selectNext(SPDesktop *dt)
183     SPEventContext *ec = dt->event_context;
184     if (tools_isactive(dt, TOOLS_NODES)) {
185         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
186         nt->_multipath->shiftSelection(1);
187     } else if (tools_isactive(dt, TOOLS_GRADIENT)
188                && ec->_grdrag->isNonEmpty()) {
189         sp_gradient_context_select_next(ec);
190     } else {
191         sp_selection_item_next(dt);
192     }
195 void SelectionHelper::selectPrev(SPDesktop *dt)
197     SPEventContext *ec = dt->event_context;
198     if (tools_isactive(dt, TOOLS_NODES)) {
199         InkNodeTool *nt = static_cast<InkNodeTool*>(dt->event_context);
200         nt->_multipath->shiftSelection(-1);
201     } else if (tools_isactive(dt, TOOLS_GRADIENT)
202                && ec->_grdrag->isNonEmpty()) {
203         sp_gradient_context_select_prev(ec);
204     } else {
205         sp_selection_item_prev(dt);
206     }
209 } // namespace Inkscape
212 /**
213  * Copies repr and its inherited css style elements, along with the accumulated transform 'full_t',
214  * then prepends the copy to 'clip'.
215  */
216 void sp_selection_copy_one(Inkscape::XML::Node *repr, Geom::Matrix full_t, GSList **clip, Inkscape::XML::Document* xml_doc)
218     Inkscape::XML::Node *copy = repr->duplicate(xml_doc);
220     // copy complete inherited style
221     SPCSSAttr *css = sp_repr_css_attr_inherited(repr, "style");
222     sp_repr_css_set(copy, css, "style");
223     sp_repr_css_attr_unref(css);
225     // write the complete accumulated transform passed to us
226     // (we're dealing with unattached repr, so we write to its attr
227     // instead of using sp_item_set_transform)
228     gchar *affinestr=sp_svg_transform_write(full_t);
229     copy->setAttribute("transform", affinestr);
230     g_free(affinestr);
232     *clip = g_slist_prepend(*clip, copy);
235 void sp_selection_copy_impl(GSList const *items, GSList **clip, Inkscape::XML::Document* xml_doc)
237     // Sort items:
238     GSList *sorted_items = g_slist_copy((GSList *) items);
239     sorted_items = g_slist_sort((GSList *) sorted_items, (GCompareFunc) sp_object_compare_position);
241     // Copy item reprs:
242     for (GSList *i = (GSList *) sorted_items; i != NULL; i = i->next) {
243         sp_selection_copy_one(SP_OBJECT_REPR(i->data), sp_item_i2doc_affine(SP_ITEM(i->data)), clip, xml_doc);
244     }
246     *clip = g_slist_reverse(*clip);
247     g_slist_free((GSList *) sorted_items);
250 GSList *sp_selection_paste_impl(SPDocument *doc, SPObject *parent, GSList **clip)
252     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
254     GSList *copied = NULL;
255     // add objects to document
256     for (GSList *l = *clip; l != NULL; l = l->next) {
257         Inkscape::XML::Node *repr = (Inkscape::XML::Node *) l->data;
258         Inkscape::XML::Node *copy = repr->duplicate(xml_doc);
260         // premultiply the item transform by the accumulated parent transform in the paste layer
261         Geom::Matrix local(sp_item_i2doc_affine(SP_ITEM(parent)));
262         if (!local.isIdentity()) {
263             gchar const *t_str = copy->attribute("transform");
264             Geom::Matrix item_t(Geom::identity());
265             if (t_str)
266                 sp_svg_transform_read(t_str, &item_t);
267             item_t *= local.inverse();
268             // (we're dealing with unattached repr, so we write to its attr instead of using sp_item_set_transform)
269             gchar *affinestr=sp_svg_transform_write(item_t);
270             copy->setAttribute("transform", affinestr);
271             g_free(affinestr);
272         }
274         parent->appendChildRepr(copy);
275         copied = g_slist_prepend(copied, copy);
276         Inkscape::GC::release(copy);
277     }
278     return copied;
281 void sp_selection_delete_impl(GSList const *items, bool propagate = true, bool propagate_descendants = true)
283     for (GSList const *i = items ; i ; i = i->next ) {
284         sp_object_ref((SPObject *)i->data, NULL);
285     }
286     for (GSList const *i = items; i != NULL; i = i->next) {
287         SPItem *item = (SPItem *) i->data;
288         SP_OBJECT(item)->deleteObject(propagate, propagate_descendants);
289         sp_object_unref((SPObject *)item, NULL);
290     }
294 void sp_selection_delete(SPDesktop *desktop)
296     if (desktop == NULL) {
297         return;
298     }
300     if (tools_isactive(desktop, TOOLS_TEXT))
301         if (sp_text_delete_selection(desktop->event_context)) {
302             sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_TEXT,
303                              _("Delete text"));
304             return;
305         }
307     Inkscape::Selection *selection = sp_desktop_selection(desktop);
309     // check if something is selected
310     if (selection->isEmpty()) {
311         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("<b>Nothing</b> was deleted."));
312         return;
313     }
315     GSList const *selected = g_slist_copy(const_cast<GSList *>(selection->itemList()));
316     selection->clear();
317     sp_selection_delete_impl(selected);
318     g_slist_free((GSList *) selected);
320     /* a tool may have set up private information in it's selection context
321      * that depends on desktop items.  I think the only sane way to deal with
322      * this currently is to reset the current tool, which will reset it's
323      * associated selection context.  For example: deleting an object
324      * while moving it around the canvas.
325      */
326     tools_switch( desktop, tools_active( desktop ) );
328     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DELETE,
329                      _("Delete"));
332 void add_ids_recursive(std::vector<const gchar *> &ids, SPObject *obj)
334     if (!obj)
335         return;
337     ids.push_back(obj->getId());
339     if (SP_IS_GROUP(obj)) {
340         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
341             add_ids_recursive(ids, child);
342         }
343     }
346 void sp_selection_duplicate(SPDesktop *desktop, bool suppressDone)
348     if (desktop == NULL)
349         return;
351     SPDocument *doc = desktop->doc();
352     Inkscape::XML::Document* xml_doc = sp_document_repr_doc(doc);
353     Inkscape::Selection *selection = sp_desktop_selection(desktop);
355     // check if something is selected
356     if (selection->isEmpty()) {
357         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to duplicate."));
358         return;
359     }
361     GSList *reprs = g_slist_copy((GSList *) selection->reprList());
363     selection->clear();
365     // sorting items from different parents sorts each parent's subset without possibly mixing
366     // them, just what we need
367     reprs = g_slist_sort(reprs, (GCompareFunc) sp_repr_compare_position);
369     GSList *newsel = NULL;
371     std::vector<const gchar *> old_ids;
372     std::vector<const gchar *> new_ids;
373     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
374     bool relink_clones = prefs->getBool("/options/relinkclonesonduplicate/value");
376     while (reprs) {
377         Inkscape::XML::Node *old_repr = (Inkscape::XML::Node *) reprs->data;
378         Inkscape::XML::Node *parent = old_repr->parent();
379         Inkscape::XML::Node *copy = old_repr->duplicate(xml_doc);
381         parent->appendChild(copy);
383         if (relink_clones) {
384             SPObject *old_obj = doc->getObjectByRepr(old_repr);
385             SPObject *new_obj = doc->getObjectByRepr(copy);
386             add_ids_recursive(old_ids, old_obj);
387             add_ids_recursive(new_ids, new_obj);
388         }
390         newsel = g_slist_prepend(newsel, copy);
391         reprs = g_slist_remove(reprs, reprs->data);
392         Inkscape::GC::release(copy);
393     }
395     if (relink_clones) {
397         g_assert(old_ids.size() == new_ids.size());
399         for (unsigned int i = 0; i < old_ids.size(); i++) {
400             const gchar *id = old_ids[i];
401             SPObject *old_clone = doc->getObjectById(id);
402             if (SP_IS_USE(old_clone)) {
403                 SPItem *orig = sp_use_get_original(SP_USE(old_clone));
404                 if (!orig) // orphaned
405                     continue;
406                 for (unsigned int j = 0; j < old_ids.size(); j++) {
407                     if (!strcmp(orig->getId(), old_ids[j])) {
408                         // we have both orig and clone in selection, relink
409                         // std::cout << id  << " old, its ori: " << SP_OBJECT_ID(orig) << "; will relink:" << new_ids[i] << " to " << new_ids[j] << "\n";
410                         gchar *newref = g_strdup_printf("#%s", new_ids[j]);
411                         SPObject *new_clone = doc->getObjectById(new_ids[i]);
412                         SP_OBJECT_REPR(new_clone)->setAttribute("xlink:href", newref);
413                         new_clone->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
414                         g_free(newref);
415                     }
416                 }
417             }
418         }
419     }
422     if ( !suppressDone ) {
423         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_DUPLICATE,
424                          _("Duplicate"));
425     }
427     selection->setReprList(newsel);
429     g_slist_free(newsel);
432 void sp_edit_clear_all(SPDesktop *dt)
434     if (!dt)
435         return;
437     SPDocument *doc = sp_desktop_document(dt);
438     sp_desktop_selection(dt)->clear();
440     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
441     GSList *items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
443     while (items) {
444         SP_OBJECT(items->data)->deleteObject();
445         items = g_slist_remove(items, items->data);
446     }
448     sp_document_done(doc, SP_VERB_EDIT_CLEAR_ALL,
449                      _("Delete all"));
452 GSList *
453 get_all_items(GSList *list, SPObject *from, SPDesktop *desktop, bool onlyvisible, bool onlysensitive, GSList const *exclude)
455     for (SPObject *child = sp_object_first_child(SP_OBJECT(from)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
456         if (SP_IS_ITEM(child) &&
457             !desktop->isLayer(SP_ITEM(child)) &&
458             (!onlysensitive || !SP_ITEM(child)->isLocked()) &&
459             (!onlyvisible || !desktop->itemIsHidden(SP_ITEM(child))) &&
460             (!exclude || !g_slist_find((GSList *) exclude, child))
461             )
462         {
463             list = g_slist_prepend(list, SP_ITEM(child));
464         }
466         if (SP_IS_ITEM(child) && desktop->isLayer(SP_ITEM(child))) {
467             list = get_all_items(list, child, desktop, onlyvisible, onlysensitive, exclude);
468         }
469     }
471     return list;
474 void sp_edit_select_all_full(SPDesktop *dt, bool force_all_layers, bool invert)
476     if (!dt)
477         return;
479     Inkscape::Selection *selection = sp_desktop_selection(dt);
481     g_return_if_fail(SP_IS_GROUP(dt->currentLayer()));
483     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
484     PrefsSelectionContext inlayer = (PrefsSelectionContext) prefs->getInt("/options/kbselection/inlayer", PREFS_SELECTION_LAYER);
485     bool onlyvisible = prefs->getBool("/options/kbselection/onlyvisible", true);
486     bool onlysensitive = prefs->getBool("/options/kbselection/onlysensitive", true);
488     GSList *items = NULL;
490     GSList const *exclude = NULL;
491     if (invert) {
492         exclude = selection->itemList();
493     }
495     if (force_all_layers)
496         inlayer = PREFS_SELECTION_ALL;
498     switch (inlayer) {
499         case PREFS_SELECTION_LAYER: {
500         if ( (onlysensitive && SP_ITEM(dt->currentLayer())->isLocked()) ||
501              (onlyvisible && dt->itemIsHidden(SP_ITEM(dt->currentLayer()))) )
502         return;
504         GSList *all_items = sp_item_group_item_list(SP_GROUP(dt->currentLayer()));
506         for (GSList *i = all_items; i; i = i->next) {
507             SPItem *item = SP_ITEM(i->data);
509             if (item && (!onlysensitive || !item->isLocked())) {
510                 if (!onlyvisible || !dt->itemIsHidden(item)) {
511                     if (!dt->isLayer(item)) {
512                         if (!invert || !g_slist_find((GSList *) exclude, item)) {
513                             items = g_slist_prepend(items, item); // leave it in the list
514                         }
515                     }
516                 }
517             }
518         }
520         g_slist_free(all_items);
521             break;
522         }
523         case PREFS_SELECTION_LAYER_RECURSIVE: {
524             items = get_all_items(NULL, dt->currentLayer(), dt, onlyvisible, onlysensitive, exclude);
525             break;
526         }
527         default: {
528         items = get_all_items(NULL, dt->currentRoot(), dt, onlyvisible, onlysensitive, exclude);
529             break;
530     }
531     }
533     selection->setList(items);
535     if (items) {
536         g_slist_free(items);
537     }
540 void sp_edit_select_all(SPDesktop *desktop)
542     sp_edit_select_all_full(desktop, false, false);
545 void sp_edit_select_all_in_all_layers(SPDesktop *desktop)
547     sp_edit_select_all_full(desktop, true, false);
550 void sp_edit_invert(SPDesktop *desktop)
552     sp_edit_select_all_full(desktop, false, true);
555 void sp_edit_invert_in_all_layers(SPDesktop *desktop)
557     sp_edit_select_all_full(desktop, true, true);
560 void sp_selection_group_impl(GSList const *reprs_to_group, Inkscape::XML::Node *group, Inkscape::XML::Document *xml_doc, SPDocument *doc) {
561     GSList *p = g_slist_copy((GSList *) reprs_to_group);
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();
643     Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
645     sp_selection_group_impl(l, group, xml_doc, doc);
647     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_GROUP,
648                      _("Group"));
650     selection->clear();
651     selection->set(group);
652     Inkscape::GC::release(group);
655 void sp_selection_ungroup(SPDesktop *desktop)
657     if (desktop == NULL)
658         return;
660     Inkscape::Selection *selection = sp_desktop_selection(desktop);
662     if (selection->isEmpty()) {
663         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select a <b>group</b> to ungroup."));
664         return;
665     }
667     GSList *items = g_slist_copy((GSList *) selection->itemList());
668     selection->clear();
670     // Get a copy of current selection.
671     GSList *new_select = NULL;
672     bool ungrouped = false;
673     for (GSList *i = items;
674          i != NULL;
675          i = i->next)
676     {
677         SPItem *group = (SPItem *) i->data;
679         // when ungrouping cloned groups with their originals, some objects that were selected may no more exist due to unlinking
680         if (!SP_IS_OBJECT(group)) {
681             continue;
682         }
684         /* We do not allow ungrouping <svg> etc. (lauris) */
685         if (strcmp(SP_OBJECT_REPR(group)->name(), "svg:g") && strcmp(SP_OBJECT_REPR(group)->name(), "svg:switch")) {
686             // keep the non-group item in the new selection
687             selection->add(group);
688             continue;
689         }
691         GSList *children = NULL;
692         /* This is not strictly required, but is nicer to rely on group ::destroy (lauris) */
693         sp_item_group_ungroup(SP_GROUP(group), &children, false);
694         ungrouped = true;
695         // Add ungrouped items to the new selection.
696         new_select = g_slist_concat(new_select, children);
697     }
699     if (new_select) { // Set new selection.
700         selection->addList(new_select);
701         g_slist_free(new_select);
702     }
703     if (!ungrouped) {
704         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No groups</b> to ungroup in the selection."));
705     }
707     g_slist_free(items);
709     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_UNGROUP,
710                      _("Ungroup"));
713 /** Replace all groups in the list with their member objects, recursively; returns a new list, frees old */
714 GSList *
715 sp_degroup_list(GSList *items)
717     GSList *out = NULL;
718     bool has_groups = false;
719     for (GSList *item = items; item; item = item->next) {
720         if (!SP_IS_GROUP(item->data)) {
721             out = g_slist_prepend(out, item->data);
722         } else {
723             has_groups = true;
724             GSList *members = sp_item_group_item_list(SP_GROUP(item->data));
725             for (GSList *member = members; member; member = member->next) {
726                 out = g_slist_prepend(out, member->data);
727             }
728             g_slist_free(members);
729         }
730     }
731     out = g_slist_reverse(out);
732     g_slist_free(items);
734     if (has_groups) { // recurse if we unwrapped a group - it may have contained others
735         out = sp_degroup_list(out);
736     }
738     return out;
742 /** If items in the list have a common parent, return it, otherwise return NULL */
743 static SPGroup *
744 sp_item_list_common_parent_group(GSList const *items)
746     if (!items) {
747         return NULL;
748     }
749     SPObject *parent = SP_OBJECT_PARENT(items->data);
750     /* Strictly speaking this CAN happen, if user selects <svg> from Inkscape::XML editor */
751     if (!SP_IS_GROUP(parent)) {
752         return NULL;
753     }
754     for (items = items->next; items; items = items->next) {
755         if (SP_OBJECT_PARENT(items->data) != parent) {
756             return NULL;
757         }
758     }
760     return SP_GROUP(parent);
763 /** Finds out the minimum common bbox of the selected items. */
764 static Geom::OptRect
765 enclose_items(GSList const *items)
767     g_assert(items != NULL);
769     Geom::OptRect r;
770     for (GSList const *i = items; i; i = i->next) {
771         r = Geom::unify(r, sp_item_bbox_desktop((SPItem *) i->data));
772     }
773     return r;
776 SPObject *
777 prev_sibling(SPObject *child)
779     SPObject *parent = SP_OBJECT_PARENT(child);
780     if (!SP_IS_GROUP(parent)) {
781         return NULL;
782     }
783     for ( SPObject *i = sp_object_first_child(parent) ; i; i = SP_OBJECT_NEXT(i) ) {
784         if (i->next == child)
785             return i;
786     }
787     return NULL;
790 void
791 sp_selection_raise(SPDesktop *desktop)
793     if (!desktop)
794         return;
796     Inkscape::Selection *selection = sp_desktop_selection(desktop);
798     GSList const *items = (GSList *) selection->itemList();
799     if (!items) {
800         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to raise."));
801         return;
802     }
804     SPGroup const *group = sp_item_list_common_parent_group(items);
805     if (!group) {
806         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>."));
807         return;
808     }
810     Inkscape::XML::Node *grepr = SP_OBJECT_REPR(group);
812     /* Construct reverse-ordered list of selected children. */
813     GSList *rev = g_slist_copy((GSList *) items);
814     rev = g_slist_sort(rev, (GCompareFunc) sp_item_repr_compare_position);
816     // Determine the common bbox of the selected items.
817     Geom::OptRect selected = enclose_items(items);
819     // Iterate over all objects in the selection (starting from top).
820     if (selected) {
821         while (rev) {
822             SPObject *child = SP_OBJECT(rev->data);
823             // for each selected object, find the next sibling
824             for (SPObject *newref = child->next; newref; newref = newref->next) {
825                 // if the sibling is an item AND overlaps our selection,
826                 if (SP_IS_ITEM(newref)) {
827                     Geom::OptRect newref_bbox = sp_item_bbox_desktop(SP_ITEM(newref));
828                     if ( newref_bbox && selected->intersects(*newref_bbox) ) {
829                         // AND if it's not one of our selected objects,
830                         if (!g_slist_find((GSList *) items, newref)) {
831                             // move the selected object after that sibling
832                             grepr->changeOrder(SP_OBJECT_REPR(child), SP_OBJECT_REPR(newref));
833                         }
834                         break;
835                     }
836                 }
837             }
838             rev = g_slist_remove(rev, child);
839         }
840     } else {
841         g_slist_free(rev);
842     }
844     sp_document_done(sp_desktop_document(desktop), SP_VERB_SELECTION_RAISE,
845                      //TRANSLATORS: only translate "string" in "context|string".
846                      // For more details, see http://developer.gnome.org/doc/API/2.0/glib/glib-I18N.html#Q-:CAPS
847                      // "Raise" means "to raise an object" in the undo history
848                      Q_("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 = SP_OBJECT(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(SP_OBJECT(item), SP_STYLE_FLAG_ALWAYS);
1024     if (css == NULL)
1025         return NULL;
1027     if ((SP_IS_GROUP(item) && SP_OBJECT(item)->children) ||
1028         (SP_IS_TEXT(item) && SP_OBJECT(item)->children && SP_OBJECT(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 (SP_OBJECT_STYLE(last_element) != NULL) {
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(SP_OBJECT(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(SP_OBJECT(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(SP_OBJECT(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             SP_OBJECT(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     // TRANSLATORS: only translate "string" in "context|string".
2055     // For more details, see http://developer.gnome.org/doc/API/2.0/glib/glib-I18N.html#Q-:CAPS
2056     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_CLONE,
2057                      Q_("action|Clone"));
2059     selection->setReprList(newsel);
2061     g_slist_free(newsel);
2064 void
2065 sp_selection_relink(SPDesktop *desktop)
2067     if (!desktop)
2068         return;
2070     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2072     if (selection->isEmpty()) {
2073         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>clones</b> to relink."));
2074         return;
2075     }
2077     Inkscape::UI::ClipboardManager *cm = Inkscape::UI::ClipboardManager::get();
2078     const gchar *newid = cm->getFirstObjectID();
2079     if (!newid) {
2080         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Copy an <b>object</b> to clipboard to relink clones to."));
2081         return;
2082     }
2083     gchar *newref = g_strdup_printf("#%s", newid);
2085     // Get a copy of current selection.
2086     bool relinked = false;
2087     for (GSList *items = (GSList *) selection->itemList();
2088          items != NULL;
2089          items = items->next)
2090     {
2091         SPItem *item = (SPItem *) items->data;
2093         if (!SP_IS_USE(item))
2094             continue;
2096         SP_OBJECT_REPR(item)->setAttribute("xlink:href", newref);
2097         SP_OBJECT(item)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
2098         relinked = true;
2099     }
2101     g_free(newref);
2103     if (!relinked) {
2104         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to relink</b> in the selection."));
2105     } else {
2106         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2107                          _("Relink clone"));
2108     }
2112 void
2113 sp_selection_unlink(SPDesktop *desktop)
2115     if (!desktop)
2116         return;
2118     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2120     if (selection->isEmpty()) {
2121         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>clones</b> to unlink."));
2122         return;
2123     }
2125     // Get a copy of current selection.
2126     GSList *new_select = NULL;
2127     bool unlinked = false;
2128     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2129          items != NULL;
2130          items = items->next)
2131     {
2132         SPItem *item = (SPItem *) items->data;
2134         if (SP_IS_TEXT(item)) {
2135             SPObject *tspan = sp_tref_convert_to_tspan(SP_OBJECT(item));
2137             if (tspan) {
2138                 SP_OBJECT(item)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
2139             }
2141             // Set unlink to true, and fall into the next if which
2142             // will include this text item in the new selection
2143             unlinked = true;
2144         }
2146         if (!(SP_IS_USE(item) || SP_IS_TREF(item))) {
2147             // keep the non-use item in the new selection
2148             new_select = g_slist_prepend(new_select, item);
2149             continue;
2150         }
2152         SPItem *unlink;
2153         if (SP_IS_USE(item)) {
2154             unlink = sp_use_unlink(SP_USE(item));
2155         } else /*if (SP_IS_TREF(use))*/ {
2156             unlink = SP_ITEM(sp_tref_convert_to_tspan(SP_OBJECT(item)));
2157         }
2159         unlinked = true;
2160         // Add ungrouped items to the new selection.
2161         new_select = g_slist_prepend(new_select, unlink);
2162     }
2164     if (new_select) { // set new selection
2165         selection->clear();
2166         selection->setList(new_select);
2167         g_slist_free(new_select);
2168     }
2169     if (!unlinked) {
2170         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No clones to unlink</b> in the selection."));
2171     }
2173     sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNLINK_CLONE,
2174                      _("Unlink clone"));
2177 void
2178 sp_select_clone_original(SPDesktop *desktop)
2180     if (desktop == NULL)
2181         return;
2183     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2185     SPItem *item = selection->singleItem();
2187     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.");
2189     // Check if other than two objects are selected
2190     if (g_slist_length((GSList *) selection->itemList()) != 1 || !item) {
2191         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2192         return;
2193     }
2195     SPItem *original = NULL;
2196     if (SP_IS_USE(item)) {
2197         original = sp_use_get_original(SP_USE(item));
2198     } else if (SP_IS_OFFSET(item) && SP_OFFSET(item)->sourceHref) {
2199         original = sp_offset_get_source(SP_OFFSET(item));
2200     } else if (SP_IS_TEXT_TEXTPATH(item)) {
2201         original = sp_textpath_get_path_item(SP_TEXTPATH(sp_object_first_child(SP_OBJECT(item))));
2202     } else if (SP_IS_FLOWTEXT(item)) {
2203         original = SP_FLOWTEXT(item)->get_frame(NULL); // first frame only
2204     } else { // it's an object that we don't know what to do with
2205         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, error);
2206         return;
2207     }
2209     if (!original) {
2210         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)"));
2211         return;
2212     }
2214     for (SPObject *o = original; o && !SP_IS_ROOT(o); o = SP_OBJECT_PARENT(o)) {
2215         if (SP_IS_DEFS(o)) {
2216             desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("The object you're trying to select is <b>not visible</b> (it is in &lt;defs&gt;)"));
2217             return;
2218         }
2219     }
2221     if (original) {
2222         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2223         bool highlight = prefs->getBool("/options/highlightoriginal/value");
2224         if (highlight) {
2225             Geom::OptRect a = item->getBounds(sp_item_i2d_affine(item));
2226             Geom::OptRect b = original->getBounds(sp_item_i2d_affine(original));
2227             if ( a && b ) {
2228                 // draw a flashing line between the objects
2229                 SPCurve *curve = new SPCurve();
2230                 curve->moveto(a->midpoint());
2231                 curve->lineto(b->midpoint());
2233                 SPCanvasItem * canvasitem = sp_canvas_bpath_new(sp_desktop_tempgroup(desktop), curve);
2234                 sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(canvasitem), 0x0000ddff, 1.0, SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT, 5, 3);
2235                 sp_canvas_item_show(canvasitem);
2236                 curve->unref();
2237                 desktop->add_temporary_canvasitem(canvasitem, 1000);
2238             }
2239         }
2241         selection->clear();
2242         selection->set(original);
2243         if (SP_CYCLING == SP_CYCLE_FOCUS) {
2244             scroll_to_show_item(desktop, original);
2245         }
2246     }
2250 void sp_selection_to_marker(SPDesktop *desktop, bool apply)
2252     if (desktop == NULL)
2253         return;
2255     SPDocument *doc = sp_desktop_document(desktop);
2256     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2258     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2260     // check if something is selected
2261     if (selection->isEmpty()) {
2262         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to marker."));
2263         return;
2264     }
2266     sp_document_ensure_up_to_date(doc);
2267     Geom::OptRect r = selection->bounds();
2268     boost::optional<Geom::Point> c = selection->center();
2269     if ( !r || !c ) {
2270         return;
2271     }
2273     // calculate the transform to be applied to objects to move them to 0,0
2274     Geom::Point move_p = Geom::Point(0, sp_document_height(doc)) - *c;
2275     move_p[Geom::Y] = -move_p[Geom::Y];
2276     Geom::Matrix move = Geom::Matrix(Geom::Translate(move_p));
2278     GSList *items = g_slist_copy((GSList *) selection->itemList());
2280     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2282     // bottommost object, after sorting
2283     SPObject *parent = SP_OBJECT_PARENT(items->data);
2285     Geom::Matrix parent_transform(sp_item_i2doc_affine(SP_ITEM(parent)));
2287     // remember the position of the first item
2288     gint pos = SP_OBJECT_REPR(items->data)->position();
2289     (void)pos; // TODO check why this was remembered
2291     // create a list of duplicates
2292     GSList *repr_copies = NULL;
2293     for (GSList *i = items; i != NULL; i = i->next) {
2294         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2295         repr_copies = g_slist_prepend(repr_copies, dup);
2296     }
2298     Geom::Rect bounds(desktop->dt2doc(r->min()), desktop->dt2doc(r->max()));
2300     if (apply) {
2301         // delete objects so that their clones don't get alerted; this object will be restored shortly
2302         for (GSList *i = items; i != NULL; i = i->next) {
2303             SPObject *item = SP_OBJECT(i->data);
2304             item->deleteObject(false);
2305         }
2306     }
2308     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2309     // without disturbing clones.
2310     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2311     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2312     int saved_compensation = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2313     prefs->setInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2315     gchar const *mark_id = generate_marker(repr_copies, bounds, doc,
2316                                            ( Geom::Matrix(Geom::Translate(desktop->dt2doc(
2317                                                                               Geom::Point(r->min()[Geom::X],
2318                                                                                           r->max()[Geom::Y]))))
2319                                              * parent_transform.inverse() ),
2320                                            parent_transform * move);
2321     (void)mark_id;
2323     // restore compensation setting
2324     prefs->setInt("/options/clonecompensation/value", saved_compensation);
2327     g_slist_free(items);
2329     sp_document_done(doc, SP_VERB_EDIT_SELECTION_2_MARKER,
2330                      _("Objects to marker"));
2333 static void sp_selection_to_guides_recursive(SPItem *item, bool deleteitem, bool wholegroups) {
2334     if (SP_IS_GROUP(item) && !SP_IS_BOX3D(item) && !wholegroups) {
2335         for (GSList *i = sp_item_group_item_list(SP_GROUP(item)); i != NULL; i = i->next) {
2336             sp_selection_to_guides_recursive(SP_ITEM(i->data), deleteitem, wholegroups);
2337         }
2338     } else {
2339         sp_item_convert_item_to_guides(item);
2341         if (deleteitem) {
2342             SP_OBJECT(item)->deleteObject(true);
2343         }
2344     }
2347 void sp_selection_to_guides(SPDesktop *desktop)
2349     if (desktop == NULL)
2350         return;
2352     SPDocument *doc = sp_desktop_document(desktop);
2353     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2354     // we need to copy the list because it gets reset when objects are deleted
2355     GSList *items = g_slist_copy((GSList *) selection->itemList());
2357     if (!items) {
2358         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to guides."));
2359         return;
2360     }
2362     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2363     bool deleteitem = !prefs->getBool("/tools/cvg_keep_objects", 0);
2364     bool wholegroups = prefs->getBool("/tools/cvg_convert_whole_groups", 0);
2366     for (GSList const *i = items; i != NULL; i = i->next) {
2367         sp_selection_to_guides_recursive(SP_ITEM(i->data), deleteitem, wholegroups);
2368     }
2370     sp_document_done(doc, SP_VERB_EDIT_SELECTION_2_GUIDES, _("Objects to guides"));
2373 void
2374 sp_selection_tile(SPDesktop *desktop, bool apply)
2376     if (desktop == NULL)
2377         return;
2379     SPDocument *doc = sp_desktop_document(desktop);
2380     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2382     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2384     // check if something is selected
2385     if (selection->isEmpty()) {
2386         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to convert to pattern."));
2387         return;
2388     }
2390     sp_document_ensure_up_to_date(doc);
2391     Geom::OptRect r = selection->bounds();
2392     if ( !r ) {
2393         return;
2394     }
2396     // calculate the transform to be applied to objects to move them to 0,0
2397     Geom::Point move_p = Geom::Point(0, sp_document_height(doc)) - (r->min() + Geom::Point(0, r->dimensions()[Geom::Y]));
2398     move_p[Geom::Y] = -move_p[Geom::Y];
2399     Geom::Matrix move = Geom::Matrix(Geom::Translate(move_p));
2401     GSList *items = g_slist_copy((GSList *) selection->itemList());
2403     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2405     // bottommost object, after sorting
2406     SPObject *parent = SP_OBJECT_PARENT(items->data);
2408     Geom::Matrix parent_transform(sp_item_i2doc_affine(SP_ITEM(parent)));
2410     // remember the position of the first item
2411     gint pos = SP_OBJECT_REPR(items->data)->position();
2413     // create a list of duplicates
2414     GSList *repr_copies = NULL;
2415     for (GSList *i = items; i != NULL; i = i->next) {
2416         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2417         repr_copies = g_slist_prepend(repr_copies, dup);
2418     }
2419     // restore the z-order after prepends
2420     repr_copies = g_slist_reverse(repr_copies);
2422     Geom::Rect bounds(desktop->dt2doc(r->min()), desktop->dt2doc(r->max()));
2424     if (apply) {
2425         // delete objects so that their clones don't get alerted; this object will be restored shortly
2426         for (GSList *i = items; i != NULL; i = i->next) {
2427             SPObject *item = SP_OBJECT(i->data);
2428             item->deleteObject(false);
2429         }
2430     }
2432     // Hack: Temporarily set clone compensation to unmoved, so that we can move clone-originals
2433     // without disturbing clones.
2434     // See ActorAlign::on_button_click() in src/ui/dialog/align-and-distribute.cpp
2435     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2436     int saved_compensation = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2437     prefs->setInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_UNMOVED);
2439     gchar const *pat_id = pattern_tile(repr_copies, bounds, doc,
2440                                        ( Geom::Matrix(Geom::Translate(desktop->dt2doc(Geom::Point(r->min()[Geom::X],
2441                                                                                             r->max()[Geom::Y]))))
2442                                          * to_2geom(parent_transform.inverse()) ),
2443                                        parent_transform * move);
2445     // restore compensation setting
2446     prefs->setInt("/options/clonecompensation/value", saved_compensation);
2448     if (apply) {
2449         Inkscape::XML::Node *rect = xml_doc->createElement("svg:rect");
2450         rect->setAttribute("style", g_strdup_printf("stroke:none;fill:url(#%s)", pat_id));
2452         Geom::Point min = bounds.min() * to_2geom(parent_transform.inverse());
2453         Geom::Point max = bounds.max() * to_2geom(parent_transform.inverse());
2455         sp_repr_set_svg_double(rect, "width", max[Geom::X] - min[Geom::X]);
2456         sp_repr_set_svg_double(rect, "height", max[Geom::Y] - min[Geom::Y]);
2457         sp_repr_set_svg_double(rect, "x", min[Geom::X]);
2458         sp_repr_set_svg_double(rect, "y", min[Geom::Y]);
2460         // restore parent and position
2461         SP_OBJECT_REPR(parent)->appendChild(rect);
2462         rect->setPosition(pos > 0 ? pos : 0);
2463         SPItem *rectangle = (SPItem *) sp_desktop_document(desktop)->getObjectByRepr(rect);
2465         Inkscape::GC::release(rect);
2467         selection->clear();
2468         selection->set(rectangle);
2469     }
2471     g_slist_free(items);
2473     sp_document_done(doc, SP_VERB_EDIT_TILE,
2474                      _("Objects to pattern"));
2477 void
2478 sp_selection_untile(SPDesktop *desktop)
2480     if (desktop == NULL)
2481         return;
2483     SPDocument *doc = sp_desktop_document(desktop);
2484     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2486     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2488     // check if something is selected
2489     if (selection->isEmpty()) {
2490         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object with pattern fill</b> to extract objects from."));
2491         return;
2492     }
2494     GSList *new_select = NULL;
2496     bool did = false;
2498     for (GSList *items = g_slist_copy((GSList *) selection->itemList());
2499          items != NULL;
2500          items = items->next) {
2502         SPItem *item = (SPItem *) items->data;
2504         SPStyle *style = SP_OBJECT_STYLE(item);
2506         if (!style || !style->fill.isPaintserver())
2507             continue;
2509         SPObject *server = SP_OBJECT_STYLE_FILL_SERVER(item);
2511         if (!SP_IS_PATTERN(server))
2512             continue;
2514         did = true;
2516         SPPattern *pattern = pattern_getroot(SP_PATTERN(server));
2518         Geom::Matrix pat_transform = to_2geom(pattern_patternTransform(SP_PATTERN(server)));
2519         pat_transform *= item->transform;
2521         for (SPObject *child = sp_object_first_child(SP_OBJECT(pattern)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
2522             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate(xml_doc);
2523             SPItem *i = SP_ITEM(desktop->currentLayer()->appendChildRepr(copy));
2525            // FIXME: relink clones to the new canvas objects
2526            // use SPObject::setid when mental finishes it to steal ids of
2528             // this is needed to make sure the new item has curve (simply requestDisplayUpdate does not work)
2529             sp_document_ensure_up_to_date(doc);
2531             Geom::Matrix transform( i->transform * pat_transform );
2532             sp_item_write_transform(i, SP_OBJECT_REPR(i), transform);
2534             new_select = g_slist_prepend(new_select, i);
2535         }
2537         SPCSSAttr *css = sp_repr_css_attr_new();
2538         sp_repr_css_set_property(css, "fill", "none");
2539         sp_repr_css_change(SP_OBJECT_REPR(item), css, "style");
2540     }
2542     if (!did) {
2543         desktop->messageStack()->flash(Inkscape::ERROR_MESSAGE, _("<b>No pattern fills</b> in the selection."));
2544     } else {
2545         sp_document_done(sp_desktop_document(desktop), SP_VERB_EDIT_UNTILE,
2546                          _("Pattern to objects"));
2547         selection->setList(new_select);
2548     }
2551 void
2552 sp_selection_get_export_hints(Inkscape::Selection *selection, char const **filename, float *xdpi, float *ydpi)
2554     if (selection->isEmpty()) {
2555         return;
2556     }
2558     GSList const *reprlst = selection->reprList();
2559     bool filename_search = TRUE;
2560     bool xdpi_search = TRUE;
2561     bool ydpi_search = TRUE;
2563     for (; reprlst != NULL &&
2564             filename_search &&
2565             xdpi_search &&
2566             ydpi_search;
2567         reprlst = reprlst->next) {
2568         gchar const *dpi_string;
2569         Inkscape::XML::Node * repr = (Inkscape::XML::Node *)reprlst->data;
2571         if (filename_search) {
2572             *filename = repr->attribute("inkscape:export-filename");
2573             if (*filename != NULL)
2574                 filename_search = FALSE;
2575         }
2577         if (xdpi_search) {
2578             dpi_string = NULL;
2579             dpi_string = repr->attribute("inkscape:export-xdpi");
2580             if (dpi_string != NULL) {
2581                 *xdpi = atof(dpi_string);
2582                 xdpi_search = FALSE;
2583             }
2584         }
2586         if (ydpi_search) {
2587             dpi_string = NULL;
2588             dpi_string = repr->attribute("inkscape:export-ydpi");
2589             if (dpi_string != NULL) {
2590                 *ydpi = atof(dpi_string);
2591                 ydpi_search = FALSE;
2592             }
2593         }
2594     }
2597 void
2598 sp_document_get_export_hints(SPDocument *doc, char const **filename, float *xdpi, float *ydpi)
2600     Inkscape::XML::Node * repr = sp_document_repr_root(doc);
2601     gchar const *dpi_string;
2603     *filename = repr->attribute("inkscape:export-filename");
2605     dpi_string = NULL;
2606     dpi_string = repr->attribute("inkscape:export-xdpi");
2607     if (dpi_string != NULL) {
2608         *xdpi = atof(dpi_string);
2609     }
2611     dpi_string = NULL;
2612     dpi_string = repr->attribute("inkscape:export-ydpi");
2613     if (dpi_string != NULL) {
2614         *ydpi = atof(dpi_string);
2615     }
2618 void
2619 sp_selection_create_bitmap_copy(SPDesktop *desktop)
2621     if (desktop == NULL)
2622         return;
2624     SPDocument *document = sp_desktop_document(desktop);
2625     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(document);
2627     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2629     // check if something is selected
2630     if (selection->isEmpty()) {
2631         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to make a bitmap copy."));
2632         return;
2633     }
2635     desktop->messageStack()->flash(Inkscape::IMMEDIATE_MESSAGE, _("Rendering bitmap..."));
2636     // set "busy" cursor
2637     desktop->setWaitingCursor();
2639     // Get the bounding box of the selection
2640     NRRect bbox;
2641     sp_document_ensure_up_to_date(document);
2642     selection->bounds(&bbox);
2643     if (NR_RECT_DFLS_TEST_EMPTY(&bbox)) {
2644         desktop->clearWaitingCursor();
2645         return; // exceptional situation, so not bother with a translatable error message, just quit quietly
2646     }
2648     // List of the items to show; all others will be hidden
2649     GSList *items = g_slist_copy((GSList *) selection->itemList());
2651     // Sort items so that the topmost comes last
2652     items = g_slist_sort(items, (GCompareFunc) sp_item_repr_compare_position);
2654     // Generate a random value from the current time (you may create bitmap from the same object(s)
2655     // multiple times, and this is done so that they don't clash)
2656     GTimeVal cu;
2657     g_get_current_time(&cu);
2658     guint current = (int) (cu.tv_sec * 1000000 + cu.tv_usec) % 1024;
2660     // Create the filename.
2661     gchar *const basename = g_strdup_printf("%s-%s-%u.png",
2662                                             document->name,
2663                                             SP_OBJECT_REPR(items->data)->attribute("id"),
2664                                             current);
2665     // Imagemagick is known not to handle spaces in filenames, so we replace anything but letters,
2666     // digits, and a few other chars, with "_"
2667     g_strcanon(basename, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_.=+~$#@^&!?", '_');
2669     // Build the complete path by adding document base dir, if set, otherwise home dir
2670     gchar * directory = NULL;
2671     if (SP_DOCUMENT_URI(document)) {
2672         directory = g_dirname(SP_DOCUMENT_URI(document));
2673     }
2674     if (directory == NULL) {
2675         directory = homedir_path(NULL);
2676     }
2677     gchar *filepath = g_build_filename(directory, basename, NULL);
2679     //g_print("%s\n", filepath);
2681     // Remember parent and z-order of the topmost one
2682     gint pos = SP_OBJECT_REPR(g_slist_last(items)->data)->position();
2683     SPObject *parent_object = SP_OBJECT_PARENT(g_slist_last(items)->data);
2684     Inkscape::XML::Node *parent = SP_OBJECT_REPR(parent_object);
2686     // Calculate resolution
2687     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2688     double res;
2689     int const prefs_res = prefs->getInt("/options/createbitmap/resolution", 0);
2690     int const prefs_min = prefs->getInt("/options/createbitmap/minsize", 0);
2691     if (0 < prefs_res) {
2692         // If it's given explicitly in prefs, take it
2693         res = prefs_res;
2694     } else if (0 < prefs_min) {
2695         // If minsize is given, look up minimum bitmap size (default 250 pixels) and calculate resolution from it
2696         res = PX_PER_IN * prefs_min / MIN((bbox.x1 - bbox.x0), (bbox.y1 - bbox.y0));
2697     } else {
2698         float hint_xdpi = 0, hint_ydpi = 0;
2699         char const *hint_filename;
2700         // take resolution hint from the selected objects
2701         sp_selection_get_export_hints(selection, &hint_filename, &hint_xdpi, &hint_ydpi);
2702         if (hint_xdpi != 0) {
2703             res = hint_xdpi;
2704         } else {
2705             // take resolution hint from the document
2706             sp_document_get_export_hints(document, &hint_filename, &hint_xdpi, &hint_ydpi);
2707             if (hint_xdpi != 0) {
2708                 res = hint_xdpi;
2709             } else {
2710                 // if all else fails, take the default 90 dpi
2711                 res = PX_PER_IN;
2712             }
2713         }
2714     }
2716     // The width and height of the bitmap in pixels
2717     unsigned width = (unsigned) floor((bbox.x1 - bbox.x0) * res / PX_PER_IN);
2718     unsigned height =(unsigned) floor((bbox.y1 - bbox.y0) * res / PX_PER_IN);
2720     // Find out if we have to run an external filter
2721     gchar const *run = NULL;
2722     Glib::ustring filter = prefs->getString("/options/createbitmap/filter");
2723     if (!filter.empty()) {
2724         // filter command is given;
2725         // see if we have a parameter to pass to it
2726         Glib::ustring param1 = prefs->getString("/options/createbitmap/filter_param1");
2727         if (!param1.empty()) {
2728             if (param1[param1.length() - 1] == '%') {
2729                 // if the param string ends with %, interpret it as a percentage of the image's max dimension
2730                 gchar p1[256];
2731                 g_ascii_dtostr(p1, 256, ceil(g_ascii_strtod(param1.data(), NULL) * MAX(width, height) / 100));
2732                 // the first param is always the image filename, the second is param1
2733                 run = g_strdup_printf("%s \"%s\" %s", filter.data(), filepath, p1);
2734             } else {
2735                 // otherwise pass the param1 unchanged
2736                 run = g_strdup_printf("%s \"%s\" %s", filter.data(), filepath, param1.data());
2737             }
2738         } else {
2739             // run without extra parameter
2740             run = g_strdup_printf("%s \"%s\"", filter.data(), filepath);
2741         }
2742     }
2744     // Calculate the matrix that will be applied to the image so that it exactly overlaps the source objects
2745     Geom::Matrix eek(sp_item_i2d_affine(SP_ITEM(parent_object)));
2746     Geom::Matrix t;
2748     double shift_x = bbox.x0;
2749     double shift_y = bbox.y1;
2750     if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2751         shift_x = round(shift_x);
2752         shift_y = -round(-shift_y); // this gets correct rounding despite coordinate inversion, remove the negations when the inversion is gone
2753     }
2754     t = Geom::Scale(1, -1) * Geom::Translate(shift_x, shift_y) * eek.inverse();
2756     // Do the export
2757     sp_export_png_file(document, filepath,
2758                        bbox.x0, bbox.y0, bbox.x1, bbox.y1,
2759                        width, height, res, res,
2760                        (guint32) 0xffffff00,
2761                        NULL, NULL,
2762                        true,  /*bool force_overwrite,*/
2763                        items);
2765     g_slist_free(items);
2767     // Run filter, if any
2768     if (run) {
2769         g_print("Running external filter: %s\n", run);
2770         int retval;
2771         retval = system(run);
2772     }
2774     // Import the image back
2775     GdkPixbuf *pb = gdk_pixbuf_new_from_file(filepath, NULL);
2776     if (pb) {
2777         // Create the repr for the image
2778         Inkscape::XML::Node * repr = xml_doc->createElement("svg:image");
2779         sp_embed_image(repr, pb, "image/png");
2780         if (res == PX_PER_IN) { // for default 90 dpi, snap it to pixel grid
2781             sp_repr_set_svg_double(repr, "width", width);
2782             sp_repr_set_svg_double(repr, "height", height);
2783         } else {
2784             sp_repr_set_svg_double(repr, "width", (bbox.x1 - bbox.x0));
2785             sp_repr_set_svg_double(repr, "height", (bbox.y1 - bbox.y0));
2786         }
2788         // Write transform
2789         gchar *c=sp_svg_transform_write(t);
2790         repr->setAttribute("transform", c);
2791         g_free(c);
2793         // add the new repr to the parent
2794         parent->appendChild(repr);
2796         // move to the saved position
2797         repr->setPosition(pos > 0 ? pos + 1 : 1);
2799         // Set selection to the new image
2800         selection->clear();
2801         selection->add(repr);
2803         // Clean up
2804         Inkscape::GC::release(repr);
2805         gdk_pixbuf_unref(pb);
2807         // Complete undoable transaction
2808         sp_document_done(document, SP_VERB_SELECTION_CREATE_BITMAP,
2809                          _("Create bitmap"));
2810     }
2812     desktop->clearWaitingCursor();
2814     g_free(basename);
2815     g_free(filepath);
2818 /**
2819  * \brief Creates a mask or clipPath from selection
2820  * Two different modes:
2821  *  if applyToLayer, all selection is moved to DEFS as mask/clippath
2822  *       and is applied to current layer
2823  *  otherwise, topmost object is used as mask for other objects
2824  * If \a apply_clip_path parameter is true, clipPath is created, otherwise mask
2825  *
2826  */
2827 void
2828 sp_selection_set_mask(SPDesktop *desktop, bool apply_clip_path, bool apply_to_layer)
2830     if (desktop == NULL)
2831         return;
2833     SPDocument *doc = sp_desktop_document(desktop);
2834     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
2836     Inkscape::Selection *selection = sp_desktop_selection(desktop);
2838     // check if something is selected
2839     bool is_empty = selection->isEmpty();
2840     if ( apply_to_layer && is_empty) {
2841         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to create clippath or mask from."));
2842         return;
2843     } else if (!apply_to_layer && ( is_empty || NULL == selection->itemList()->next )) {
2844         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select mask object and <b>object(s)</b> to apply clippath or mask to."));
2845         return;
2846     }
2848     // FIXME: temporary patch to prevent crash!
2849     // Remove this when bboxes are fixed to not blow up on an item clipped/masked with its own clone
2850     bool clone_with_original = selection_contains_both_clone_and_original(selection);
2851     if (clone_with_original) {
2852         return; // in this version, you cannot clip/mask an object with its own clone
2853     }
2854     // /END FIXME
2856     sp_document_ensure_up_to_date(doc);
2858     GSList *items = g_slist_copy((GSList *) selection->itemList());
2860     items = g_slist_sort(items, (GCompareFunc) sp_object_compare_position);
2862     // create a list of duplicates
2863     GSList *mask_items = NULL;
2864     GSList *apply_to_items = NULL;
2865     GSList *items_to_delete = NULL;
2866     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
2867     bool topmost = prefs->getBool("/options/maskobject/topmost", true);
2868     bool remove_original = prefs->getBool("/options/maskobject/remove", true);
2869     int grouping = prefs->getInt("/options/maskobject/grouping", PREFS_MASKOBJECT_GROUPING_NONE);
2871     if (apply_to_layer) {
2872         // all selected items are used for mask, which is applied to a layer
2873         apply_to_items = g_slist_prepend(apply_to_items, desktop->currentLayer());
2875         for (GSList *i = items; i != NULL; i = i->next) {
2876             Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2877             mask_items = g_slist_prepend(mask_items, dup);
2879             if (remove_original) {
2880                 SPObject *item = SP_OBJECT(i->data);
2881                 items_to_delete = g_slist_prepend(items_to_delete, item);
2882             }
2883         }
2884     } else if (!topmost) {
2885         // topmost item is used as a mask, which is applied to other items in a selection
2886         GSList *i = items;
2887         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2888         mask_items = g_slist_prepend(mask_items, dup);
2890         if (remove_original) {
2891             SPObject *item = SP_OBJECT(i->data);
2892             items_to_delete = g_slist_prepend(items_to_delete, item);
2893         }
2895         for (i = i->next; i != NULL; i = i->next) {
2896             apply_to_items = g_slist_prepend(apply_to_items, i->data);
2897         }
2898     } else {
2899         GSList *i = NULL;
2900         for (i = items; NULL != i->next; i = i->next) {
2901             apply_to_items = g_slist_prepend(apply_to_items, i->data);
2902         }
2904         Inkscape::XML::Node *dup = (SP_OBJECT_REPR(i->data))->duplicate(xml_doc);
2905         mask_items = g_slist_prepend(mask_items, dup);
2907         if (remove_original) {
2908             SPObject *item = SP_OBJECT(i->data);
2909             items_to_delete = g_slist_prepend(items_to_delete, item);
2910         }
2911     }
2913     g_slist_free(items);
2914     items = NULL;
2916     if (apply_to_items && grouping == PREFS_MASKOBJECT_GROUPING_ALL) {
2917         // group all those objects into one group
2918         // and apply mask to that
2919         Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
2921         // make a note we should ungroup this when unsetting mask
2922         group->setAttribute("inkscape:groupmode", "maskhelper");
2924         GSList *reprs_to_group = NULL;
2926         for (GSList *i = apply_to_items ; NULL != i ; i = i->next) {
2927                 reprs_to_group = g_slist_prepend(reprs_to_group, SP_OBJECT_REPR(i->data));
2928                 selection->remove(SP_OBJECT(i->data));
2929         }
2930         reprs_to_group = g_slist_reverse(reprs_to_group);
2932         sp_selection_group_impl(reprs_to_group, group, xml_doc, doc);
2934         g_slist_free(reprs_to_group);
2936         // apply clip/mask only to newly created group
2937         g_slist_free(apply_to_items);
2938         apply_to_items = NULL;
2939         apply_to_items = g_slist_prepend(apply_to_items, doc->getObjectByRepr(group));
2941         selection->add(group);
2943         Inkscape::GC::release(group);
2944     }
2946     gchar const *attributeName = apply_clip_path ? "clip-path" : "mask";
2947     for (GSList *i = apply_to_items; NULL != i; i = i->next) {
2948         SPItem *item = reinterpret_cast<SPItem *>(i->data);
2949         // inverted object transform should be applied to a mask object,
2950         // as mask is calculated in user space (after applying transform)
2951         Geom::Matrix maskTransform(item->transform.inverse());
2953         GSList *mask_items_dup = NULL;
2954         for (GSList *mask_item = mask_items; NULL != mask_item; mask_item = mask_item->next) {
2955             Inkscape::XML::Node *dup = reinterpret_cast<Inkscape::XML::Node *>(mask_item->data)->duplicate(xml_doc);
2956             mask_items_dup = g_slist_prepend(mask_items_dup, dup);
2957         }
2959         gchar const *mask_id = NULL;
2960         if (apply_clip_path) {
2961             mask_id = sp_clippath_create(mask_items_dup, doc, &maskTransform);
2962         } else {
2963             mask_id = sp_mask_create(mask_items_dup, doc, &maskTransform);
2964         }
2966         g_slist_free(mask_items_dup);
2967         mask_items_dup = NULL;
2969         Inkscape::XML::Node *current = SP_OBJECT_REPR(i->data);
2970         // Node to apply mask to
2971         Inkscape::XML::Node *apply_mask_to = current;
2973         if (grouping == PREFS_MASKOBJECT_GROUPING_SEPARATE) {
2974             // enclose current node in group, and apply crop/mask on that
2975             Inkscape::XML::Node *group = xml_doc->createElement("svg:g");
2976             // make a note we should ungroup this when unsetting mask
2977             group->setAttribute("inkscape:groupmode", "maskhelper");
2979             Inkscape::XML::Node *spnew = current->duplicate(xml_doc);
2980             gint position = current->position();
2981             selection->remove(current);
2982             current->parent()->appendChild(group);
2983             sp_repr_unparent(current);
2984             group->appendChild(spnew);
2985             group->setPosition(position);
2987             // Apply clip/mask to group instead
2988             apply_mask_to = group;
2990             selection->add(group);
2991             Inkscape::GC::release(spnew);
2992             Inkscape::GC::release(group);
2993         }
2995         apply_mask_to->setAttribute(attributeName, g_strdup_printf("url(#%s)", mask_id));
2997     }
2999     g_slist_free(mask_items);
3000     g_slist_free(apply_to_items);
3002     for (GSList *i = items_to_delete; NULL != i; i = i->next) {
3003         SPObject *item = SP_OBJECT(i->data);
3004         item->deleteObject(false);
3005     }
3006     g_slist_free(items_to_delete);
3008     if (apply_clip_path)
3009         sp_document_done(doc, SP_VERB_OBJECT_SET_CLIPPATH, _("Set clipping path"));
3010     else
3011         sp_document_done(doc, SP_VERB_OBJECT_SET_MASK, _("Set mask"));
3014 void sp_selection_unset_mask(SPDesktop *desktop, bool apply_clip_path) {
3015     if (desktop == NULL)
3016         return;
3018     SPDocument *doc = sp_desktop_document(desktop);
3019     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
3020     Inkscape::Selection *selection = sp_desktop_selection(desktop);
3022     // check if something is selected
3023     if (selection->isEmpty()) {
3024         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to remove clippath or mask from."));
3025         return;
3026     }
3028     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
3029     bool remove_original = prefs->getBool("/options/maskobject/remove", true);
3030     bool ungroup_masked = prefs->getBool("/options/maskobject/ungrouping", true);
3031     sp_document_ensure_up_to_date(doc);
3033     gchar const *attributeName = apply_clip_path ? "clip-path" : "mask";
3034     std::map<SPObject*,SPItem*> referenced_objects;
3036     GSList *items_to_ungroup = NULL;
3038     // SPObject* refers to a group containing the clipped path or mask itself,
3039     // whereas SPItem* refers to the item being clipped or masked
3040     for (GSList const *i = selection->itemList(); NULL != i; i = i->next) {
3041         if (remove_original) {
3042             // remember referenced mask/clippath, so orphaned masks can be moved back to document
3043             SPItem *item = reinterpret_cast<SPItem *>(i->data);
3044             Inkscape::URIReference *uri_ref = NULL;
3046             if (apply_clip_path) {
3047                 uri_ref = item->clip_ref;
3048             } else {
3049                 uri_ref = item->mask_ref;
3050             }
3052             // collect distinct mask object (and associate with item to apply transform)
3053             if (NULL != uri_ref && NULL != uri_ref->getObject()) {
3054                 referenced_objects[uri_ref->getObject()] = item;
3055             }
3056         }
3058         SP_OBJECT_REPR(i->data)->setAttribute(attributeName, "none");
3060         if (ungroup_masked && SP_IS_GROUP(i->data)) {
3061                 // if we had previously enclosed masked object in group,
3062                 // add it to list so we can ungroup it later
3063                 SPGroup *item = SP_GROUP(i->data);
3065                 // ungroup only groups we created when setting clip/mask
3066                 if (item->layerMode() == SPGroup::MASK_HELPER) {
3067                     items_to_ungroup = g_slist_prepend(items_to_ungroup, item);
3068                 }
3070         }
3071     }
3073     // restore mask objects into a document
3074     for ( std::map<SPObject*,SPItem*>::iterator it = referenced_objects.begin() ; it != referenced_objects.end() ; ++it) {
3075         SPObject *obj = (*it).first; // Group containing the clipped paths or masks
3076         GSList *items_to_move = NULL;
3077         for (SPObject *child = sp_object_first_child(obj) ; child != NULL; child = SP_OBJECT_NEXT(child) ) {
3078             // Collect all clipped paths and masks within a single group
3079             Inkscape::XML::Node *copy = SP_OBJECT_REPR(child)->duplicate(xml_doc);
3080             items_to_move = g_slist_prepend(items_to_move, copy);
3081         }
3083         if (!obj->isReferenced()) {
3084             // delete from defs if no other object references this mask
3085             obj->deleteObject(false);
3086         }
3088         // remember parent and position of the item to which the clippath/mask was applied
3089         Inkscape::XML::Node *parent = SP_OBJECT_REPR((*it).second)->parent();
3090         gint pos = SP_OBJECT_REPR((*it).second)->position();
3092         // Iterate through all clipped paths / masks
3093         for (GSList *i = items_to_move; NULL != i; i = i->next) {
3094             Inkscape::XML::Node *repr = (Inkscape::XML::Node *)i->data;
3096             // insert into parent, restore pos
3097             parent->appendChild(repr);
3098             repr->setPosition((pos + 1) > 0 ? (pos + 1) : 0);
3100             SPItem *mask_item = (SPItem *) sp_desktop_document(desktop)->getObjectByRepr(repr);
3101             selection->add(repr);
3103             // transform mask, so it is moved the same spot where mask was applied
3104             Geom::Matrix transform(mask_item->transform);
3105             transform *= (*it).second->transform;
3106             sp_item_write_transform(mask_item, SP_OBJECT_REPR(mask_item), transform);
3107         }
3109         g_slist_free(items_to_move);
3110     }
3112     // ungroup marked groups added when setting mask
3113     for (GSList *i = items_to_ungroup ; NULL != i ; i = i->next) {
3114         selection->remove(SP_GROUP(i->data));
3115         GSList *children = NULL;
3116         sp_item_group_ungroup(SP_GROUP(i->data), &children, false);
3117         selection->addList(children);
3118         g_slist_free(children);
3119     }
3121     g_slist_free(items_to_ungroup);
3123     if (apply_clip_path)
3124         sp_document_done(doc, SP_VERB_OBJECT_UNSET_CLIPPATH, _("Release clipping path"));
3125     else
3126         sp_document_done(doc, SP_VERB_OBJECT_UNSET_MASK, _("Release mask"));
3129 /**
3130  * \param with_margins margins defined in the xml under <sodipodi:namedview>
3131  *                     "fit-margin-..." attributes.  See SPDocument::fitToRect.
3132  * \return true if an undoable change should be recorded.
3133  */
3134 bool
3135 fit_canvas_to_selection(SPDesktop *desktop, bool with_margins)
3137     g_return_val_if_fail(desktop != NULL, false);
3138     SPDocument *doc = sp_desktop_document(desktop);
3140     g_return_val_if_fail(doc != NULL, false);
3141     g_return_val_if_fail(desktop->selection != NULL, false);
3143     if (desktop->selection->isEmpty()) {
3144         desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select <b>object(s)</b> to fit canvas to."));
3145         return false;
3146     }
3147     Geom::OptRect const bbox(desktop->selection->bounds());
3148     if (bbox) {
3149         doc->fitToRect(*bbox, with_margins);
3150         return true;
3151     } else {
3152         return false;
3153     }
3156 /**
3157  * Fit canvas to the bounding box of the selection, as an undoable action.
3158  */
3159 void
3160 verb_fit_canvas_to_selection(SPDesktop *const desktop)
3162     if (fit_canvas_to_selection(desktop)) {
3163         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_SELECTION,
3164                          _("Fit Page to Selection"));
3165     }
3168 /**
3169  * \param with_margins margins defined in the xml under <sodipodi:namedview>
3170  *                     "fit-margin-..." attributes.  See SPDocument::fitToRect.
3171  */
3172 bool
3173 fit_canvas_to_drawing(SPDocument *doc, bool with_margins)
3175     g_return_val_if_fail(doc != NULL, false);
3177     sp_document_ensure_up_to_date(doc);
3178     SPItem const *const root = SP_ITEM(doc->root);
3179     Geom::OptRect const bbox(root->getBounds(sp_item_i2d_affine(root)));
3180     if (bbox) {
3181         doc->fitToRect(*bbox, with_margins);
3182         return true;
3183     } else {
3184         return false;
3185     }
3188 void
3189 verb_fit_canvas_to_drawing(SPDesktop *desktop)
3191     if (fit_canvas_to_drawing(sp_desktop_document(desktop))) {
3192         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_DRAWING,
3193                          _("Fit Page to Drawing"));
3194     }
3197 /**
3198  * Fits canvas to selection or drawing with margins from <sodipodi:namedview>
3199  * "fit-margin-..." attributes.  See SPDocument::fitToRect and
3200  * ui/dialog/page-sizer.
3201  */
3202 void fit_canvas_to_selection_or_drawing(SPDesktop *desktop) {
3203     g_return_if_fail(desktop != NULL);
3204     SPDocument *doc = sp_desktop_document(desktop);
3206     g_return_if_fail(doc != NULL);
3207     g_return_if_fail(desktop->selection != NULL);
3209     bool const changed = ( desktop->selection->isEmpty()
3210                            ? fit_canvas_to_drawing(doc, true)
3211                            : fit_canvas_to_selection(desktop, true) );
3212     if (changed) {
3213         sp_document_done(sp_desktop_document(desktop), SP_VERB_FIT_CANVAS_TO_SELECTION_OR_DRAWING,
3214                          _("Fit Page to Selection or Drawing"));
3215     }
3216 };
3218 static void itemtree_map(void (*f)(SPItem *, SPDesktop *), SPObject *root, SPDesktop *desktop) {
3219     // don't operate on layers
3220     if (SP_IS_ITEM(root) && !desktop->isLayer(SP_ITEM(root))) {
3221         f(SP_ITEM(root), desktop);
3222     }
3223     for ( SPObject::SiblingIterator iter = root->firstChild() ; iter ; ++iter ) {
3224         //don't recurse into locked layers
3225         if (!(SP_IS_ITEM(&*iter) && desktop->isLayer(SP_ITEM(&*iter)) && SP_ITEM(&*iter)->isLocked())) {
3226             itemtree_map(f, iter, desktop);
3227         }
3228     }
3231 static void unlock(SPItem *item, SPDesktop */*desktop*/) {
3232     if (item->isLocked()) {
3233         item->setLocked(FALSE);
3234     }
3237 static void unhide(SPItem *item, SPDesktop *desktop) {
3238     if (desktop->itemIsHidden(item)) {
3239         item->setExplicitlyHidden(FALSE);
3240     }
3243 static void process_all(void (*f)(SPItem *, SPDesktop *), SPDesktop *dt, bool layer_only) {
3244     if (!dt) return;
3246     SPObject *root;
3247     if (layer_only) {
3248         root = dt->currentLayer();
3249     } else {
3250         root = dt->currentRoot();
3251     }
3253     itemtree_map(f, root, dt);
3256 void unlock_all(SPDesktop *dt) {
3257     process_all(&unlock, dt, true);
3260 void unlock_all_in_all_layers(SPDesktop *dt) {
3261     process_all(&unlock, dt, false);
3264 void unhide_all(SPDesktop *dt) {
3265     process_all(&unhide, dt, true);
3268 void unhide_all_in_all_layers(SPDesktop *dt) {
3269     process_all(&unhide, dt, false);
3273 /*
3274   Local Variables:
3275   mode:c++
3276   c-file-style:"stroustrup"
3277   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
3278   indent-tabs-mode:nil
3279   fill-column:99
3280   End:
3281 */
3282 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :