Searched defs:patterns (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/helper/
H A Dstock-items.cpp97 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/src/widgets/
H A Dpaint-selector.cpp837 * 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 51 milliseconds