Searched defs:copy (Results 1 - 25 of 29) sorted by relevance

12

/inkscape/share/extensions/
H A Dmarkers_strokepaint.py16 You should have received a copy of the GNU General Public License
22 import copy namespace
35 help="Do not create a copy, modify the markers")
133 mnode = copy.deepcopy(old_mnode)
H A Dedge3d.py15 You should have received a copy of the GNU General Public License
19 import inkex, simplepath, sys, copy namespace
106 nn = copy.deepcopy(node)
121 clip.append(copy.deepcopy(node))
H A Drubberstretch.py15 You should have received a copy of the GNU General Public License
23 import copy, math, re namespace
H A Dsplit.py15 You should have received a copy of the GNU General Public License
82 from copy import copy namespace
88 text.append(copy(n))
H A Dtext_merge.py6 Permission is hereby granted, free of charge, to any person obtaining a copy
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27 import copy namespace
H A Daddnodes.py20 You should have received a copy of the GNU General Public License
26 import cubicsuperpath, simplestyle, copy, math, re, bezmisc namespace
H A Dpathalongpath.py15 You should have received a copy of the GNU General Public License
34 import copy namespace
249 p=copy.deepcopy(p0)
268 new.append(copy.deepcopy(sub))
H A Dcoloreffect.py17 You should have received a copy of the GNU General Public License
21 import sys, copy, simplestyle, inkex namespace
127 newnode = copy.deepcopy(node)
H A Dsimpletransform.py15 You should have received a copy of the GNU General Public License
24 import copy, math, re namespace
H A Dtar_layers.py15 # You should have received a copy of the GNU General Public License
26 import copy namespace
70 newdoc = copy.deepcopy(self.document)
107 layer = copy.deepcopy(_layer)
H A Dinterp.py15 You should have received a copy of the GNU General Public License
19 import inkex, cubicsuperpath, simplestyle, copy, math, bezmisc, simpletransform, pathmodifier namespace
149 start = copy.deepcopy(paths[sorted_ids[i-1]])
150 end = copy.deepcopy(paths[sorted_ids[i]])
151 sst = copy.deepcopy(styles[sorted_ids[i-1]])
152 est = copy.deepcopy(styles[sorted_ids[i]])
153 basestyle = copy.deepcopy(sst)
H A Dpathmodifier.py15 You should have received a copy of the GNU General Public License
31 import copy namespace
71 clone=copy.deepcopy(node)
138 newNode = copy.deepcopy(self.refNode(node))
H A Dpathscatter.py15 You should have received a copy of the GNU General Public License
34 import copy namespace
171 if self.options.copymode=="copy":
175 #TODO: allow 4th option: duplicate the first copy and clone the next ones.
278 clone=copy.deepcopy(patternList[random.randint(0, len(patternList)-1)])
281 clone=copy.deepcopy(patternList[counter])
H A Dffgeom.py18 You should have received a copy of the GNU General Public License
39 def copy(self): member in class:Point
57 def copy(self): member in class:Segment
H A Dinkex.py25 You should have received a copy of the GNU General Public License
29 import copy namespace
142 TYPE_CHECKER = copy.copy(optparse.Option.TYPE_CHECKER)
204 self.original_document = copy.deepcopy(self.document)
H A Drender_alphabetsoup.py17 You should have received a copy of the GNU General Public License
22 import copy namespace
471 thisimage = copy.deepcopy(image)
/inkscape/src/
H A Dsp-marker.cpp452 SPItem *copy = SP_ITEM(mark_object->appendChildRepr(node)); local
459 copy->doWriteTransform(copy->getRepr(), dup_transform);
H A Dsp-tspan.cpp474 // make a copy of each textpath child
475 Inkscape::XML::Node *copy = ((Inkscape::XML::Node *) i->data)->duplicate(text->getRepr()->document()); local
478 // put its copy under text
479 text->getRepr()->addChild(copy, NULL); // fixme: copy id
H A Dtext-chemistry.cpp163 // Make a copy of each text child
164 Inkscape::XML::Node *copy = ((Inkscape::XML::Node *) i->data)->duplicate(xml_doc); local
166 if (!strcmp(copy->name(), "svg:tspan")) {
167 copy->setAttribute("sodipodi:role", NULL);
168 copy->setAttribute("x", NULL);
169 copy->setAttribute("y", NULL);
173 // put its copy into under textPath
174 textpath->addChild(copy, NULL); // fixme: copy id
H A Dsp-use.cpp698 Inkscape::XML::Node *copy = NULL; local
700 if (dynamic_cast<SPSymbol *>(orig)) { // make a group, copy children
701 copy = xml_doc->createElement("svg:g");
705 copy->appendChild(newchild);
707 } else { // just copy
708 copy = orig->getRepr()->duplicate(xml_doc);
712 parent->addChild(copy, repr);
715 SPObject *unlinked = document->getObjectByRepr(copy);
730 // Give the copy our old id and let go of our old repr.
731 copy
[all...]
H A Dsp-pattern.cpp404 SPItem *copy = SP_ITEM(pat_object->appendChildRepr(node)); local
411 copy->doWriteTransform(copy->getRepr(), dup_transform, NULL, false);
H A Dgradient-chemistry.cpp260 // copy all the attributes to it
952 Inkscape::XML::Node *copy = (Inkscape::XML::Node *) i->data; local
953 vector->appendChildRepr(copy);
954 sp_repr_set_svg_double (copy, "offset", 1 - *iter);
956 Inkscape::GC::release(copy);
1519 // (2) in fill & stroke, show only one copy of each gradient in list
/inkscape/src/display/
H A Dcurve.cpp128 SPCurve::copy() const function in class:SPCurve
/inkscape/src/libnrtype/
H A DFontFactory.cpp150 PangoFontDescription *copy = pango_font_description_copy(font); local
152 pango_font_description_unset_fields (copy, PANGO_FONT_MASK_SIZE);
153 char * copyAsString = pango_font_description_to_string(copy);
158 pango_font_description_free(copy);
/inkscape/src/ui/
H A Dclipboard.cpp47 #include "ui/tools/dropper-tool.h" // used in copy()
77 #include "svg/css-ostringstream.h" // used in copy
108 virtual void copy(SPDesktop *desktop);
157 // we need a way to copy plain text AND remember its style;
198 void ClipboardManagerImpl::copy(SPDesktop *desktop) function in class:Inkscape::UI::ClipboardManagerImpl
246 // Special case for when the text tool is active - if some text is selected, copy plain text,
247 // not the object that holds it; also copy the style at cursor into
267 _copySelection(selection); // copy all items in the selection to the internal clipboard
659 * Iterate over a list of items and copy them to the clipboard.
663 // copy th
[all...]

Completed in 157 milliseconds

12