Gimp/tools/pdbgen/pdb/misc.pdb
Michael Natterer dc490d3b84 add some perl evilness to make the includes in the generated files look
2008-02-07  Michael Natterer  <mitch@gimp.org>

	* tools/pdbgen/app.pl: add some perl evilness to make the includes
	in the generated files look almost like they should.

	* tools/pdbgen/pdb/*.pdb: remove inclusion of "core/gimp.h" where
	not needed, clean up lists of includes and functions and reorder
	some functions to make more sense. Zero logic changed.

	* app/pdb/*_cmds.c
	* libgimp/gimpcontext_pdb.[ch]
	* libgimp/gimpbrush_pdb.[ch]: regenerated.


svn path=/trunk/; revision=24829
2008-02-07 17:08:54 +00:00

104 lines
2.3 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 2 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
sub version {
$blurb = 'Returns the host GIMP version.';
$help = <<'HELP';
This procedure returns the version number of the currently running GIMP.
HELP
&yosh_pdb_misc('1999');
@outargs = (
{ name => 'version', type => 'string',
desc => 'GIMP version number' }
);
%invoke = (
headers => [ qw("libgimpbase/gimpbase.h") ],
code => <<'CODE'
{
version = g_strdup (GIMP_VERSION);
}
CODE
);
}
sub getpid {
$blurb = 'Returns the PID of the host GIMP process.';
$help = <<'HELP';
This procedure returns the process ID of the currently running GIMP.
HELP
&mitch_pdb_misc('2005', '2.4');
@outargs = (
{ name => 'pid', type => 'int32',
desc => 'The PID' }
);
%invoke = (
headers => [ qw("base/base-utils.h") ],
code => <<'CODE'
{
pid = get_pid ();
}
CODE
);
}
sub quit {
$blurb = 'Causes GIMP to exit gracefully.';
$help = <<'HELP';
If there are unsaved images in an interactive GIMP session, the user
will be asked for confirmation. If force is TRUE, the application is
quit without querying the user to save any dirty images.
HELP
&std_pdb_misc;
@inargs = (
{ name => 'force', type => 'boolean',
desc => 'Force GIMP to quit without asking' }
);
%invoke = (
code => <<'CODE'
{
gimp_exit (gimp, force);
}
CODE
);
}
@headers = qw("core/gimp.h");
@procs = qw(version
getpid
quit);
%exports = (app => [@procs], lib => [@procs[0..1]]);
$desc = 'Miscellaneous';
1;