Lines Matching defs:clone

792             gtk_widget_set_tooltip_text (b, _("For each clone/sprayed item, pick a value from the drawing in its location and apply it"));
962 gtk_widget_set_tooltip_text (b, _("Each clone is created with the probability determined by the picked value in that point"));
972 gtk_widget_set_tooltip_text (b, _("Each clone's size is determined by the picked value in that point"));
982 gtk_widget_set_tooltip_text (b, _("Each clone is painted by the picked color (the original must have unset fill or stroke)"));
992 gtk_widget_set_tooltip_text (b, _("Each clone's opacity is determined by the picked value in that point"));
2026 tile->getRepr()->attribute("inkscape:tiled-clone-of") &&
2027 (!id_href || !strcmp(id_href, tile->getRepr()->attribute("inkscape:tiled-clone-of"))))
2048 item->invoke_hide(trace_visionkey); // FIXME: hide each tiled clone's original too!
2238 desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select an <b>object</b> to clone."));
2244 desktop->getMessageStack()->flash(Inkscape::ERROR_MESSAGE, _("If you want to clone several objects, <b>group</b> them and <b>clone the group</b>."));
2424 // Note: We create a clone at 0,0 too, right over the original, in case our clones are colored
2601 // Create the clone
2602 Inkscape::XML::Node *clone = obj_repr->document()->createElement("svg:use");
2603 clone->setAttribute("x", "0");
2604 clone->setAttribute("y", "0");
2605 clone->setAttribute("inkscape:tiled-clone-of", id_href);
2606 clone->setAttribute("xlink:href", id_href);
2616 clone->setAttribute("transform", affinestr);
2620 sp_repr_set_css_double(clone, "opacity", opacity);
2624 clone->setAttribute("fill", color_string);
2625 clone->setAttribute("stroke", color_string);
2628 // add the new clone to the top of the original's parent
2629 parent->getRepr()->appendChild(clone);
2632 SPObject *clone_object = desktop->getDocument()->getObjectByRepr(clone);
2646 SPObject *clone_object = desktop->getDocument()->getObjectByRepr(clone);
2655 Inkscape::GC::release(clone);