* Makefile.am: listed tools first in SUBDIRS, so xgettext can grab the autogenned files * acconfig.h: removed unused HAVE_XSHM_H * tools/pdbgen/app.pl: added proc invoke method, nicer header formatting * tools/pdbgen/pdb/layer.pdb: use layer_mask type for return value for layer_create_mask * tools/pdbgen/pdb/misc.pdb: added quit proc * tools/pdbgen/pdb/tools.pdb: added ink proc, but not added to @procs since it's incomplete * tools/pdbgen/pdb/fileops.pdb: new file * app/Makefile.am: added fileops_cmds.c * app/app_procs.c * app/fileops.c * app/ink.c: removed PDB procs (the one in ink.c was incomplete) * app/fileops.h: exported load_procs, save_procs, and file_proc_find() * app/plug_in.h: exported enum, #include <sys/types.h> * app/brushes_cmds.c * app/fileops_cmds.c * app/layer_cmds.c * app/misc_cmds.c * app/parasite_cmds.c * app/patterns_cmds.c * app/procedural_db_cmds.c * app/text_tool_cmds.c * app/internal_procs.c: pdbgen updates * app/paint_funcs.c: the glibc 2.1 docs say using SVID threadsafe random functions are preferable to rand_r, so use them instead of a mutex -Yosh
69 lines
2 KiB
Text
69 lines
2 KiB
Text
# 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("libgimp/gimpfeatures.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 normally,
|
|
or to have the gimp clean up its resources and exit immediately. The normaly
|
|
shutdown process allows for querying the user to save any dirty images.
|
|
HELP
|
|
|
|
&std_pdb_misc;
|
|
|
|
@inargs = (
|
|
{ name => 'kill', type => 'boolean', alias => 'kill_it',
|
|
desc => 'Flag specifying whether to kill the gimp process or exit
|
|
normally' }
|
|
);
|
|
|
|
%invoke = (
|
|
headers => [ qw("app_procs.h") ],
|
|
code => 'app_exit (kill_it);'
|
|
);
|
|
}
|
|
|
|
@procs = qw(version quit);
|
|
%exports = (app => [@procs]);
|
|
|
|
$desc = 'Miscellaneous';
|
|
|
|
1;
|