Searched defs:directory (Results 1 - 9 of 9) sorted by relevance

/inkscape/packaging/wix/
H A Dfiles.py4 # list files in directory
17 def directory(root, breadcrumb, level, exclude=[]): function
19 list all files and directory recursivly
24 # first list files within directory
44 directory(os.path.join(root, dir), directory_key, level + 1)
67 wxs.write(indent(2) + "<!-- Step 1: Define the directory structure -->\n")
72 directory('..\..\inkscape', 'inkscape', 5, ['inkscape.dbg', 'inkview.dbg', 'gdb.exe'])
/inkscape/src/extension/
H A Dinit.cpp113 the extension directory and parsed */
154 * Inkscape extensions directory.
276 * \brief This function parses a directory for files of SP_MODULE_EXTENSION
278 * \param dirname The directory that should be searched for modules
280 * Here is just a basic function that moves through a directory. It looks at every entry, and
288 g_warning("%s", _("Null external module directory name. Modules will not be loaded."));
299 GDir *directory = g_dir_open(dirname, 0, &err); local
300 if (!directory) {
302 g_warning(_("Modules directory (%s) is unavailable. External modules in that directory wil
[all...]
/inkscape/src/extension/internal/filter/
H A Dfilter-file.cpp47 g_warning("%s", _("Null external module directory name. Filters will not be loaded."));
56 GDir *directory = g_dir_open(dirname, 0, &err); local
57 if (!directory) {
59 g_warning(_("Modules directory (%s) is unavailable. External modules in that directory will not be loaded."), safeDir);
65 while ((filename = (gchar *)g_dir_read_name(directory)) != NULL) {
79 g_dir_close(directory);
/inkscape/src/
H A Dshortcuts.cpp223 GDir *directory = g_dir_open(dirname, 0, &err); local
224 if (!directory) {
226 g_warning(_("Keyboard directory (%s) is unavailable."), safeDir);
230 while ((filename = (gchar *) g_dir_read_name(directory)) != NULL) {
279 g_dir_close(directory);
291 //# Get the current directory for finding files
298 //# Test if the open_path directory exists
304 /* Grab document directory */
312 //# If no open path, default to our home directory
H A Dselection-chemistry.cpp3588 gchar *directory = NULL; local
3590 directory = g_path_get_dirname( document->getURI() );
3592 if (directory == NULL) {
3593 directory = INKSCAPE.homedir_path(NULL);
3595 gchar *filepath = g_build_filename(directory, basename, NULL);
3596 g_free(directory);
/inkscape/src/ui/dialog/
H A Docaldialogs.cpp822 Glib::RefPtr<Gio::File> directory = Gio::File::create_for_path(ocal_tmp_thumbnail_dir); local
823 directory->make_directory_with_parents();
827 Glib::RefPtr<Gio::File> directory = Gio::File::create_for_path(ocal_tmp_image_dir); local
828 directory->make_directory_with_parents();
H A Dexport.cpp578 Glib::ustring directory; local
581 directory = Glib::path_get_dirname(file_entry_text);
584 if (directory.empty()) {
585 /* Grab document directory */
588 directory = Glib::path_get_dirname(docURI);
592 if (directory.empty()) {
593 directory = INKSCAPE.homedir_path(NULL);
596 Glib::ustring filename = Glib::build_filename(directory, id+".png");
1140 gchar *error = g_strdup_printf(_("Directory %s does not exist or is not a directory.\n"),
H A Dswatches.cpp540 GDir *directory = g_dir_open(dirname, 0, &err); local
541 if (!directory) {
543 g_warning(_("Palettes directory (%s) is unavailable."), safeDir);
547 while ((filename = (gchar *)g_dir_read_name(directory)) != NULL) {
560 g_dir_close(directory);
/inkscape/
H A Dbuildtool.cpp2580 error("Could not open directory %s : %s",
2593 //Get the directory member name
2610 //trace("directory: %s", childName.c_str());
2669 { return directory; }
2675 { directory = val; }
2730 directory = "";
2741 directory = other.directory;
2747 String directory; member in class:buildtool::FileSet
2792 { return directory; }
2842 String directory; member in class:buildtool::FileList
[all...]

Completed in 61 milliseconds