Rename the "fileops" PDB group to just "file"

This commit is contained in:
Michael Natterer 2019-09-10 21:38:11 +02:00
parent 7c5cb29ca6
commit 6115d34fe8
13 changed files with 19 additions and 20 deletions

View file

@ -47,7 +47,7 @@ libappinternal_procs_a_SOURCES = \
drawable-edit-cmds.c \ drawable-edit-cmds.c \
dynamics-cmds.c \ dynamics-cmds.c \
edit-cmds.c \ edit-cmds.c \
fileops-cmds.c \ file-cmds.c \
floating-sel-cmds.c \ floating-sel-cmds.c \
font-select-cmds.c \ font-select-cmds.c \
fonts-cmds.c \ fonts-cmds.c \

View file

@ -396,7 +396,7 @@ file_save_thumbnail_invoker (GimpProcedure *procedure,
} }
void void
register_fileops_procs (GimpPDB *pdb) register_file_procs (GimpPDB *pdb)
{ {
GimpProcedure *procedure; GimpProcedure *procedure;

View file

@ -48,7 +48,7 @@ internal_procs_init (GimpPDB *pdb)
register_drawable_edit_procs (pdb); register_drawable_edit_procs (pdb);
register_dynamics_procs (pdb); register_dynamics_procs (pdb);
register_edit_procs (pdb); register_edit_procs (pdb);
register_fileops_procs (pdb); register_file_procs (pdb);
register_floating_sel_procs (pdb); register_floating_sel_procs (pdb);
register_font_select_procs (pdb); register_font_select_procs (pdb);
register_fonts_procs (pdb); register_fonts_procs (pdb);

View file

@ -37,7 +37,7 @@ void register_drawable_color_procs (GimpPDB *pdb);
void register_drawable_edit_procs (GimpPDB *pdb); void register_drawable_edit_procs (GimpPDB *pdb);
void register_dynamics_procs (GimpPDB *pdb); void register_dynamics_procs (GimpPDB *pdb);
void register_edit_procs (GimpPDB *pdb); void register_edit_procs (GimpPDB *pdb);
void register_fileops_procs (GimpPDB *pdb); void register_file_procs (GimpPDB *pdb);
void register_floating_sel_procs (GimpPDB *pdb); void register_floating_sel_procs (GimpPDB *pdb);
void register_font_select_procs (GimpPDB *pdb); void register_font_select_procs (GimpPDB *pdb);
void register_fonts_procs (GimpPDB *pdb); void register_fonts_procs (GimpPDB *pdb);

View file

@ -53,7 +53,7 @@
<xi:include href="xml/gimpdrawablecolor.xml" /> <xi:include href="xml/gimpdrawablecolor.xml" />
<xi:include href="xml/gimpdrawableedit.xml" /> <xi:include href="xml/gimpdrawableedit.xml" />
<xi:include href="xml/gimpedit.xml" /> <xi:include href="xml/gimpedit.xml" />
<xi:include href="xml/gimpfileops.xml" /> <xi:include href="xml/gimpfile.xml" />
<xi:include href="xml/gimpfloatingsel.xml" /> <xi:include href="xml/gimpfloatingsel.xml" />
<xi:include href="xml/gimpimage.xml" /> <xi:include href="xml/gimpimage.xml" />
<xi:include href="xml/gimpimagecolorprofile.xml" /> <xi:include href="xml/gimpimagecolorprofile.xml" />

View file

@ -398,7 +398,7 @@ gimp_edit_named_paste_as_new_image
</SECTION> </SECTION>
<SECTION> <SECTION>
<FILE>gimpfileops</FILE> <FILE>gimpfile</FILE>
gimp_file_load gimp_file_load
gimp_file_load_layer gimp_file_load_layer
gimp_file_load_layers gimp_file_load_layers
@ -911,7 +911,6 @@ GimpPlugInClass
gimp_plug_in_set_translation_domain gimp_plug_in_set_translation_domain
gimp_plug_in_set_help_domain gimp_plug_in_set_help_domain
gimp_plug_in_add_menu_branch gimp_plug_in_add_menu_branch
gimp_plug_in_create_procedure
gimp_plug_in_add_temp_procedure gimp_plug_in_add_temp_procedure
gimp_plug_in_remove_temp_procedure gimp_plug_in_remove_temp_procedure
gimp_plug_in_get_temp_procedures gimp_plug_in_get_temp_procedures

View file

@ -15,7 +15,7 @@ PDB_WRAPPERS_C = \
../libgimp/gimpdrawableedit_pdb.c \ ../libgimp/gimpdrawableedit_pdb.c \
../libgimp/gimpdynamics_pdb.c \ ../libgimp/gimpdynamics_pdb.c \
../libgimp/gimpedit_pdb.c \ ../libgimp/gimpedit_pdb.c \
../libgimp/gimpfileops_pdb.c \ ../libgimp/gimpfile_pdb.c \
../libgimp/gimpfloatingsel_pdb.c \ ../libgimp/gimpfloatingsel_pdb.c \
../libgimp/gimpfonts_pdb.c \ ../libgimp/gimpfonts_pdb.c \
../libgimp/gimpfontselect_pdb.c \ ../libgimp/gimpfontselect_pdb.c \
@ -66,7 +66,7 @@ PDB_WRAPPERS_H = \
../libgimp/gimpdrawableedit_pdb.h \ ../libgimp/gimpdrawableedit_pdb.h \
../libgimp/gimpdynamics_pdb.h \ ../libgimp/gimpdynamics_pdb.h \
../libgimp/gimpedit_pdb.h \ ../libgimp/gimpedit_pdb.h \
../libgimp/gimpfileops_pdb.h \ ../libgimp/gimpfile_pdb.h \
../libgimp/gimpfloatingsel_pdb.h \ ../libgimp/gimpfloatingsel_pdb.h \
../libgimp/gimpfonts_pdb.h \ ../libgimp/gimpfonts_pdb.h \
../libgimp/gimpfontselect_pdb.h \ ../libgimp/gimpfontselect_pdb.h \

View file

@ -41,7 +41,7 @@
#include <libgimp/gimpdrawableedit_pdb.h> #include <libgimp/gimpdrawableedit_pdb.h>
#include <libgimp/gimpdynamics_pdb.h> #include <libgimp/gimpdynamics_pdb.h>
#include <libgimp/gimpedit_pdb.h> #include <libgimp/gimpedit_pdb.h>
#include <libgimp/gimpfileops_pdb.h> #include <libgimp/gimpfile_pdb.h>
#include <libgimp/gimpfloatingsel_pdb.h> #include <libgimp/gimpfloatingsel_pdb.h>
#include <libgimp/gimpfonts_pdb.h> #include <libgimp/gimpfonts_pdb.h>
#include <libgimp/gimpfontselect_pdb.h> #include <libgimp/gimpfontselect_pdb.h>

View file

@ -1,7 +1,7 @@
/* LIBGIMP - The GIMP Library /* LIBGIMP - The GIMP Library
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball * Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
* *
* gimpfileops_pdb.c * gimpfile_pdb.c
* *
* This library is free software: you can redistribute it and/or * This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -26,8 +26,8 @@
/** /**
* SECTION: gimpfileops * SECTION: gimpfile
* @title: gimpfileops * @title: gimpfile
* @short_description: Image file operations (load, save, etc.) * @short_description: Image file operations (load, save, etc.)
* *
* Image file operations (load, save, etc.) * Image file operations (load, save, etc.)

View file

@ -1,7 +1,7 @@
/* LIBGIMP - The GIMP Library /* LIBGIMP - The GIMP Library
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball * Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
* *
* gimpfileops_pdb.h * gimpfile_pdb.h
* *
* This library is free software: you can redistribute it and/or * This library is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -24,8 +24,8 @@
#error "Only <libgimp/gimp.h> can be included directly." #error "Only <libgimp/gimp.h> can be included directly."
#endif #endif
#ifndef __GIMP_FILEOPS_PDB_H__ #ifndef __GIMP_FILE_PDB_H__
#define __GIMP_FILEOPS_PDB_H__ #define __GIMP_FILE_PDB_H__
G_BEGIN_DECLS G_BEGIN_DECLS
@ -53,4 +53,4 @@ gboolean gimp_file_save_thumbnail (GimpImage *image,
G_END_DECLS G_END_DECLS
#endif /* __GIMP_FILEOPS_PDB_H__ */ #endif /* __GIMP_FILE_PDB_H__ */

View file

@ -15,7 +15,7 @@ pdb_groups = \
groups/drawable_edit.pdb \ groups/drawable_edit.pdb \
groups/dynamics.pdb \ groups/dynamics.pdb \
groups/edit.pdb \ groups/edit.pdb \
groups/fileops.pdb \ groups/file.pdb \
groups/floating_sel.pdb \ groups/floating_sel.pdb \
groups/font_select.pdb \ groups/font_select.pdb \
groups/fonts.pdb \ groups/fonts.pdb \

View file

@ -13,7 +13,7 @@
drawable_edit drawable_edit
dynamics dynamics
edit edit
fileops file
floating_sel floating_sel
font_select font_select
fonts fonts

View file

@ -453,7 +453,7 @@ CODE
%exports = (app => [@procs], lib => [@procs[0..3,5]]); %exports = (app => [@procs], lib => [@procs[0..3,5]]);
$desc = 'File Operations'; $desc = 'File Operations';
$doc_title = 'gimpfileops'; $doc_title = 'gimpfile';
$doc_short_desc = 'Image file operations (load, save, etc.)'; $doc_short_desc = 'Image file operations (load, save, etc.)';
$doc_long_desc = 'Image file operations (load, save, etc.)'; $doc_long_desc = 'Image file operations (load, save, etc.)';