Searched refs:patterns (Results 1 - 4 of 4) sorted by relevance
/inkscape/src/helper/ |
H A D | stock-items.cpp | 97 gchar *patterns = g_build_filename(INKSCAPE_PATTERNSDIR, "/patterns.svg", NULL); local 98 if (Inkscape::IO::file_test(patterns, G_FILE_TEST_IS_REGULAR)) { 99 doc = SPDocument::createNewDoc(patterns, FALSE); 102 gchar *patterns = g_build_filename(CREATE_PATTERNSDIR, "/patterns.svg", NULL); local 103 if (Inkscape::IO::file_test(patterns, G_FILE_TEST_IS_REGULAR)) { 104 doc = SPDocument::createNewDoc(patterns, FALSE); 106 g_free(patterns);
|
/inkscape/share/extensions/ |
H A D | pathalongpath.py | 137 self.patterns={id:self.selected[id]} 141 ## self.patterns={id:self.selected[id]} 144 self.patterns=self.duplicateNodes(self.patterns) 145 self.expandGroupsUnlinkClones(self.patterns, True, True) 146 self.objectsToPaths(self.patterns) 225 bbox=simpletransform.computeBBox(self.patterns.values()) 236 for id, node in self.patterns.iteritems():
|
/inkscape/cxxtest/ |
H A D | cxxtestgen.py | 80 options, patterns = getopt.getopt( sys.argv[1:], 'o:r:', 88 return setFiles( patterns ) 147 def setFiles( patterns ): 149 files = expandWildcards( patterns ) 154 def expandWildcards( patterns ): 157 for pathName in patterns:
|
/inkscape/src/widgets/ |
H A D | paint-selector.cpp | 837 * Returns a list of patterns in the defs of the given source document as a GSList object 838 * Returns NULL if there are no patterns in the document. 847 std::set<SPObject *> patterns = source->getResourceList("pattern"); local 848 for (std::set<SPObject *>::const_iterator it = patterns.begin(); it != patterns.end(); ++it) { 894 * Pick up all patterns from source, except those that are in 907 // Add to the list of patterns we really do wish to show 923 // find and load patterns.svg 925 char *patterns_source = g_build_filename(INKSCAPE_PATTERNSDIR, "patterns.svg", NULL); 944 // suck in from patterns [all...] |
Completed in 241 milliseconds