Searched defs:clone (Results 1 - 10 of 10) sorted by relevance

/inkscape/src/livarot/
H A Dpath-description.cpp4 PathDescr *PathDescrMoveTo::clone() const function in class:PathDescrMoveTo
30 PathDescr *PathDescrLineTo::clone() const function in class:PathDescrLineTo
46 PathDescr *PathDescrBezierTo::clone() const function in class:PathDescrBezierTo
62 PathDescr *PathDescrIntermBezierTo::clone() const function in class:PathDescrIntermBezierTo
89 PathDescr *PathDescrCubicTo::clone() const function in class:PathDescrCubicTo
125 PathDescr *PathDescrArcTo::clone() const function in class:PathDescrArcTo
146 PathDescr *PathDescrForced::clone() const function in class:PathDescrForced
156 PathDescr *PathDescrClose::clone() const function in class:PathDescrClose
/inkscape/src/libvpsc/pairingheap/
H A DPairingHeap.cpp153 root = clone( rhs.root );
291 * Internal method to clone subtree.
296 PairingHeap<T>::clone( PairNode<T> * t ) const function in class:PairingHeap
303 if( ( p->leftChild = clone( t->leftChild ) ) != NULL )
305 if( ( p->nextSibling = clone( t->nextSibling ) ) != NULL )
/inkscape/src/
H A Dobject-test.h148 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
149 Inkscape::GC::release(clone);
150 clone->setAttribute("xlink:href", href.c_str());
151 parent->addChild(clone, node);
152 clones[i] = clone;
H A Dtext-chemistry.cpp327 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
328 clone->setAttribute("x", "0");
329 clone->setAttribute("y", "0");
331 clone->setAttribute("xlink:href", href_str);
334 // add the new clone to the region
335 region_repr->appendChild(clone);
H A Dselection-chemistry.cpp521 // we have both orig and clone in selection, relink
713 // At this point, current may already have no item, due to its being a clone whose original is already moved away
720 // FIXME: when moving both clone and original from a transformed group (either by
724 // then, if this is clone, looking up its original in that array and pre-multiplying
869 // Unlink clones beginning from those with highest clone depth.
1574 // we're moving both a clone and its original or any ancestor in clone chain?
1611 /* If this is a clone and it's selected along with its original, do not move it;
1613 * Without this, a clone is doubly transformed, very unintuitive.
1635 // We are transforming a clone alon
2619 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
2894 Inkscape::XML::Node *clone = xml_doc->createElement("svg:path"); local
3171 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
3830 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
[all...]
/inkscape/share/filters/
H A Dsamplify.py126 clone = etree.Element(e_use, nsmap=NSS) variable
127 clone.attrib[a_href]='#original'
128 clone.attrib["style"]='filter:url(#'+fi.attrib["id"]+')'
130 clone.attrib["transform"] = 'translate('+str( q['width'] * menu_shifts[menu] )+', '+str( q['height'] * (menus.index(menu) + 1) )+')'
131 newroot.append(clone)
/inkscape/src/ui/dialog/
H A Dtags.cpp659 Inkscape::XML::Node *clone = _document->getReprDoc()->createElement("inkscape:tagref"); local
660 clone->setAttribute("xlink:href", g_strdup_printf("#%s", newobj->getRepr()->attribute("id")), false);
661 obj->appendChild(clone);
H A Dclonetiler.cpp792 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 severa
2602 Inkscape::XML::Node *clone = obj_repr->document()->createElement("svg:use"); local
[all...]
/inkscape/src/ui/tools/
H A Dspray-tool.cpp1115 // Creation of the clone
1116 Inkscape::XML::Node *clone = xml_doc->createElement("svg:use"); local
1117 // Ad the clone to the list of the parent's children
1118 parent->appendChild(clone);
1120 if(!clone->attribute("inkscape:spray-origin")){
1121 clone->setAttribute("inkscape:spray-origin", spray_origin);
1124 clone->setAttribute("xlink:href", href_str, false);
1127 SPObject *clone_object = doc->getObjectByRepr(clone);
1137 Inkscape::GC::release(clone);
/inkscape/
H A Dbuildtool.cpp789 virtual Element *clone();
985 Element *Element::clone() function in class:buildtool::Element
996 elem->addChild((*iter)->clone());

Completed in 543 milliseconds