GLib has a specific type of NULL-terminated string arrays: `G_TYPE_STRV`, which is the `GType` of `char**` aka `GStrv`. By using this type, we can avoid having a `GimpStringArray` which is a bit cumbersome to use for both the C API, as well as bindings. By using `GStrv`, we allow other languages to pass on string lists as they are used to, while the bindings will make sure to do the right thing. In the end, it makes the API a little bit simpler for everyone, and reduces confusion for people who are used to working with string arrays in other C/GLib based code (and not having 2 different types to denote the same thing). Related: https://gitlab.gnome.org/GNOME/gimp/-/issues/5919
285 lines
8 KiB
Text
285 lines
8 KiB
Text
# GIMP - The GNU Image Manipulation Program
|
|
# Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
|
|
|
|
sub plug_ins_query {
|
|
$blurb = 'Queries the plug-in database for its contents.';
|
|
$help = 'This procedure queries the contents of the plug-in database.';
|
|
|
|
&andy_pdb_misc('1998');
|
|
|
|
$lib_private = 1;
|
|
|
|
@inargs = (
|
|
{ name => 'search_string', type => 'string', no_validate => 1,
|
|
desc => 'If not an empty string then use this as a search pattern' }
|
|
);
|
|
|
|
@outargs = (
|
|
{ name => 'procedures', type => 'strv',
|
|
desc => 'The plug-in procedure name' },
|
|
{ name => 'accelerators', type => 'strv',
|
|
desc => 'String representing keyboard accelerator (could be empty
|
|
string)', },
|
|
{ name => 'locations', type => 'strv',
|
|
desc => 'Location of the plug-in program' },
|
|
{ name => 'install_times', type => 'int32array',
|
|
desc => 'Time that the plug-in was installed',
|
|
array => { name => 'num_install_times',
|
|
desc => 'The number of matching procedures' } }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
num_install_times = gimp_plug_in_manager_query (gimp->plug_in_manager,
|
|
search_string,
|
|
&procedures,
|
|
&accelerators,
|
|
&locations,
|
|
&install_times);
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
sub plug_in_domain_register {
|
|
$blurb = 'Registers a textdomain for localisation.';
|
|
|
|
$help = <<'HELP';
|
|
This procedure adds a textdomain to the list of domains Gimp searches
|
|
for strings when translating its menu entries. There is no need to
|
|
call this function for plug-ins that have their strings included in
|
|
the 'gimp-std-plugins' domain as that is used by default. If the compiled
|
|
message catalog is not in the standard location, you may specify an
|
|
absolute path to another location. This procedure can only be called
|
|
in the query function of a plug-in and it has to be called before any
|
|
procedure is installed.
|
|
HELP
|
|
|
|
&neo_pdb_misc('2000');
|
|
|
|
$lib_private = 1;
|
|
|
|
@inargs = (
|
|
{ name => 'domain_name', type => 'string',
|
|
desc => 'The name of the textdomain (must be unique)' },
|
|
{ name => 'domain_file', type => 'file',
|
|
desc => 'The path to the locally installed compiled message catalog (may be NULL)' }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
GimpPlugIn *plug_in = gimp->plug_in_manager->current_plug_in;
|
|
|
|
if (plug_in && plug_in->call_mode == GIMP_PLUG_IN_CALL_QUERY)
|
|
{
|
|
gchar *domain_path = domain_file ? g_file_get_path (domain_file) : NULL;
|
|
|
|
gimp_plug_in_def_set_locale_domain (plug_in->plug_in_def,
|
|
domain_name, domain_path);
|
|
|
|
g_free (domain_path);
|
|
}
|
|
else
|
|
success = FALSE;
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
sub plug_in_help_register {
|
|
$blurb = "Register a help path for a plug-in.";
|
|
|
|
$help = <<HELP;
|
|
|
|
This procedure registers user documentation for the calling plug-in
|
|
with the GIMP help system. The domain_uri parameter points to the root
|
|
directory where the plug-in help is installed. For each supported
|
|
language there should be a file called 'gimp-help.xml' that maps the
|
|
help IDs to the actual help files.
|
|
HELP
|
|
|
|
&mitch_pdb_misc('2000');
|
|
|
|
$lib_private = 1;
|
|
|
|
@inargs = (
|
|
{ name => 'domain_name', type => 'string',
|
|
desc => "The XML namespace of the plug-in's help pages" },
|
|
{ name => 'domain_file', type => 'file',
|
|
desc => "The root URI of the plug-in's help pages" }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
GimpPlugIn *plug_in = gimp->plug_in_manager->current_plug_in;
|
|
|
|
if (plug_in && plug_in->call_mode == GIMP_PLUG_IN_CALL_QUERY)
|
|
{
|
|
gchar *domain_uri = domain_file ? g_file_get_uri (domain_file) : NULL;
|
|
|
|
gimp_plug_in_def_set_help_domain (plug_in->plug_in_def,
|
|
domain_name, domain_uri);
|
|
|
|
g_free (domain_uri);
|
|
}
|
|
else
|
|
success = FALSE;
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
sub plug_in_menu_branch_register {
|
|
$blurb = "Register a sub-menu.";
|
|
|
|
$help = <<HELP;
|
|
This procedure installs a sub-menu which does not belong to any procedure.
|
|
The menu-name should be the untranslated menu label. GIMP will look up the
|
|
translation in the textdomain registered for the plug-in.
|
|
HELP
|
|
|
|
&mitch_pdb_misc('2005', '2.4');
|
|
|
|
$lib_private = 1;
|
|
|
|
@inargs = (
|
|
{ name => 'menu_path', type => 'string',
|
|
desc => "The sub-menu's menu path" },
|
|
{ name => 'menu_name', type => 'string',
|
|
desc => 'The name of the sub-menu' }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
GimpPlugIn *plug_in = gimp->plug_in_manager->current_plug_in;
|
|
|
|
if (plug_in)
|
|
{
|
|
gimp_plug_in_manager_add_menu_branch (gimp->plug_in_manager,
|
|
plug_in->file, menu_path, menu_name);
|
|
}
|
|
else
|
|
success = FALSE;
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
sub plug_in_set_pdb_error_handler {
|
|
$blurb = "Sets an error handler for procedure calls.";
|
|
|
|
$help = <<HELP;
|
|
This procedure changes the way that errors in procedure calls are
|
|
handled. By default GIMP will raise an error dialog if a procedure
|
|
call made by a plug-in fails. Using this procedure the plug-in can
|
|
change this behavior. If the error handler is set to
|
|
%GIMP_PDB_ERROR_HANDLER_PLUGIN, then the plug-in is responsible for
|
|
calling gimp_get_pdb_error() and handling the error whenever one if
|
|
its procedure calls fails. It can do this by displaying the error
|
|
message or by forwarding it in its own return values.
|
|
HELP
|
|
|
|
&neo_pdb_misc('2008', '2.6');
|
|
|
|
$lib_private = 1;
|
|
|
|
@inargs = (
|
|
{ name => 'handler', type => 'enum GimpPDBErrorHandler',
|
|
desc => "Who is responsible for handling procedure call errors" }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
GimpPlugIn *plug_in = gimp->plug_in_manager->current_plug_in;
|
|
|
|
if (plug_in)
|
|
{
|
|
gimp_plug_in_set_error_handler (plug_in, handler);
|
|
}
|
|
else
|
|
success = FALSE;
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
sub plug_in_get_pdb_error_handler {
|
|
$blurb = "Retrieves the active error handler for procedure calls.";
|
|
|
|
$help = <<HELP;
|
|
This procedure retrieves the currently active error handler for
|
|
procedure calls made by the calling plug-in. See
|
|
gimp_plugin_set_pdb_error_handler() for details.
|
|
HELP
|
|
|
|
&neo_pdb_misc('2008', '2.6');
|
|
|
|
$lib_private = 1;
|
|
|
|
@outargs = (
|
|
{ name => 'handler', type => 'enum GimpPDBErrorHandler',
|
|
desc => "Who is responsible for handling procedure call errors" }
|
|
);
|
|
|
|
%invoke = (
|
|
code => <<'CODE'
|
|
{
|
|
GimpPlugIn *plug_in = gimp->plug_in_manager->current_plug_in;
|
|
|
|
if (plug_in)
|
|
{
|
|
handler = gimp_plug_in_get_error_handler (plug_in);
|
|
}
|
|
else
|
|
success = FALSE;
|
|
}
|
|
CODE
|
|
);
|
|
}
|
|
|
|
@headers = qw(<string.h>
|
|
<stdlib.h>
|
|
"libgimpbase/gimpbase.h"
|
|
"core/gimp.h"
|
|
"plug-in/gimpplugin.h"
|
|
"plug-in/gimpplugindef.h"
|
|
"plug-in/gimppluginmanager.h"
|
|
"plug-in/gimppluginmanager-menu-branch.h"
|
|
"plug-in/gimppluginmanager-query.h"
|
|
"plug-in/gimppluginprocedure.h"
|
|
"gimppdb-utils.h");
|
|
|
|
@procs = qw(plug_ins_query
|
|
plug_in_domain_register
|
|
plug_in_help_register
|
|
plug_in_menu_branch_register
|
|
plug_in_set_pdb_error_handler
|
|
plug_in_get_pdb_error_handler);
|
|
|
|
%exports = (app => [@procs], lib => [@procs[1,2,3,4,5]]);
|
|
|
|
$desc = 'Plug-in';
|
|
|
|
$lib_private = 1;
|
|
|
|
1;
|