summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 57e0839)
raw | patch | inline | side by side (parent: 57e0839)
author | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Wed, 29 Apr 2009 21:05:57 +0000 (21:05 +0000) | ||
committer | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Wed, 29 Apr 2009 21:05:57 +0000 (21:05 +0000) |
src/selection-chemistry.cpp | patch | blob | history | |
src/ui/clipboard.cpp | patch | blob | history |
index 8e9bf45da237b7354988c383af9d3aab54c5e9bf..9d60399fecdd85ec83815d729b9c10162b6fb606 100644 (file)
@@ -1289,7 +1289,7 @@ void sp_selection_apply_affine(Inkscape::Selection *selection, Geom::Matrix cons
// if we're moving the actual object, not just updating the repr, we can transform the
// center by the same matrix (only necessary for non-translations)
- if (set_i2d && item->isCenterSet() && !affine.isTranslation()) {
+ if (set_i2d && item->isCenterSet() && !(affine.isTranslation() || affine.isIdentity())) {
item->setCenter(old_center * affine);
SP_OBJECT(item)->updateRepr();
}
diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp
index d95af5a8b21100a771bb639ee08d4fd83cb2f767..f569324873396e5530c3fe1164f1ae5e6c36ba36 100644 (file)
--- a/src/ui/clipboard.cpp
+++ b/src/ui/clipboard.cpp
Inkscape::XML::Node *_clipnode; ///< The node that holds extra information
Inkscape::XML::Document *_doc; ///< Reference to the clipboard's Inkscape::XML::Document
- // we need a way to copy plain text AND remember its style;
+ // we need a way to copy plain text AND remember its style;
// the standard _clipnode is only available in an SVG tree, hence this special storage
SPCSSAttr *_text_style; ///< Style copied along with plain text fragment
}
// Special case for when the text tool is active - if some text is selected, copy plain text,
- // not the object that holds it; also copy the style at cursor into
+ // not the object that holds it; also copy the style at cursor into
if (tools_isactive(desktop, TOOLS_TEXT)) {
_discardInternalClipboard();
Glib::ustring selected_text = sp_text_get_selected_text(desktop->event_context);
return NULL;
Inkscape::XML::Node *ch = sp_repr_children(root);
- while (ch != NULL &&
+ while (ch != NULL &&
strcmp(ch->name(), "svg:g") &&
strcmp(ch->name(), "svg:path") &&
strcmp(ch->name(), "svg:use") &&
}
SPDocument *tempdoc = _retrieveClipboard("image/x-inkscape-svg");
- if ( tempdoc == NULL ) {
+ if ( tempdoc == NULL ) {
// no document, but we can try _text_style
if (_text_style) {
sp_desktop_set_style(desktop, _text_style);
Inkscape::XML::Node *obj_copy = _copyNode(obj, target_xmldoc, target_parent);
pasted_objects = g_slist_prepend(pasted_objects, (gpointer) obj_copy);
}
-
+
// Change the selection to the freshly pasted objects
Inkscape::Selection *selection = sp_desktop_selection(desktop);
selection->setReprList(pasted_objects);
-
+
// invers apply parent transform
Geom::Matrix doc2parent = sp_item_i2doc_affine(SP_ITEM(desktop->currentLayer())).inverse();
- sp_selection_apply_affine(selection, doc2parent);
-
+
// Update (among other things) all curves in paths, for bounds() to work
sp_document_ensure_up_to_date(target_document);
+ // Don't exactly know what sp_document_ensure_up_to_date() does, but apparently it must be called before
+ // item->getCenter() is used in sp_selection_apply_affine(). If not, then the center will be at (0,0)
+ sp_selection_apply_affine(selection, doc2parent);
+
// move selection either to original position (in_place) or to mouse pointer
Geom::OptRect sel_bbox = selection->bounds();
if (sel_bbox) {
if (clipnode) {
Geom::Point min, max;
sp_repr_get_point(clipnode, "min", &min);
- sp_repr_get_point(clipnode, "max", &max);
+ sp_repr_get_point(clipnode, "max", &max);
pos_original = Geom::Point(min[Geom::X], max[Geom::Y]);
}
Geom::Point offset = pos_original - sel_bbox->corner(3);
-
+
if (!in_place) {
SnapManager &m = desktop->namedview->snap_manager;
m.setup(desktop, false); // Don't display the snapindicator
-
+
// get offset from mouse pointer to bbox center, snap to grid if enabled
Geom::Point mouse_offset = desktop->point() - sel_bbox->midpoint();
offset = m.multipleOfGridPitch(mouse_offset - offset) + offset;
sp_selection_move_relative(selection, offset);
}
-
+
g_slist_free(pasted_objects);
}
Inkscape::XML::Document *target_xmldoc = sp_document_repr_doc(target_document);
prevent_id_clashes(clipdoc, target_document);
-
+
for (Inkscape::XML::Node *def = defs->firstChild() ; def ; def = def->next()) {
_copyNode(def, target_xmldoc, target_defs);
}
format = EnumClipboardFormats(format);
}
CloseClipboard();
-
+
if (format == CF_ENHMETAFILE)
return CLIPBOARD_WIN32_EMF_TARGET;
if (format == CF_DIB || format == CF_BITMAP)
return CLIPBOARD_GDK_PIXBUF_TARGET;
}
-
+
if (IsClipboardFormatAvailable(CF_ENHMETAFILE))
return CLIPBOARD_WIN32_EMF_TARGET;
#endif