gimp/tools/pdbgen/pdb/misc.pdb
Sven Neumann 6bffe5ad51 removed the hack that used to call gimp_exit() when the batch command
2003-11-30  Sven Neumann  <sven@gimp.org>

	* app/batch.c: removed the hack that used to call gimp_exit() when
	the batch command matches "(gimp-quit 0)". It shouldn't be needed.

	* tools/pdbgen/pdb/misc.pdb
	* app/core/gimp.[ch]
	* app/gui/gui.c: renamed "kill_it" parameter to "force". We don't
	kill the application any longer; this option is just about whether
	to ask the user for confirmation or not.

	* app/pdb/misc_cmds.c: regenerated.

	* app/app_procs.c: cosmetics.
2003-11-30 16:05:56 +00:00

71 lines
2 KiB
Plaintext

# The GIMP -- an 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 = <<'BLURB';
Returns the host gimp version.
BLURB
$help = <<'HELP';
This procedure returns the version number of the currently running gimp.
HELP
$author = $copyright = 'Manish Singh';
$date = '1999';
@outargs = (
{ name => 'version', type => 'string',
desc => 'The gimp version',
alias => 'g_strdup (GIMP_VERSION)', no_declare => 1 }
);
%invoke = ( headers => [ qw("libgimpbase/gimpbase.h") ] );
}
sub quit {
$blurb = 'Causes the gimp to exit gracefully.';
$help = <<'HELP';
The internal procedure which can either be used to make the gimp
quit. 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 => 'Flag specifying whether to force the gimp to or exit
normally' }
);
%invoke = (
headers => [ qw("core/gimp.h") ],
code => 'gimp_exit (gimp, force);'
);
}
@procs = qw(version quit);
%exports = (app => [@procs], lib => [$procs[0]]);
$desc = 'Miscellaneous';
1;