gimp/app/pdb/misc_cmds.c
Michael Natterer b2c3f0187d Cleaned up the exit process:
2002-12-05  Michael Natterer  <mitch@gimp.org>

	Cleaned up the exit process:

	* app/core/gimp.[ch]: added an "exit" signal which carries a
	"gboolean kill_it" parameter and has a boolean return value.
	Added gimp_boolean_handled_accumulator() so the emission of "exit"
	can be stopped by returning TRUE from a callback.  Removed
	gimp_shutdown() from the public API and made it "exit"'s default
	implementation. Addec gimp_exit() to emit the signal.

	* app/core/gimpmarshal.list: added BOOLEAN__BOOLEAN marshaller.

	* app/gui/gui.[ch]: Replaced public functions gui_shutdown() and
	gui_exit() by "exit" callbacks. g_signal_connect_after() the
	latter so the shutdown order is correct.

	* app/app_procs.[ch]: removed app_exit() and connect to "exit".
	Split the exit stuff into normal and connect_after callbacks as
	above.

	* app/batch.c
	* app/gui/file-commands.c
	* tools/pdbgen/pdb/misc.pdb
	* app/widgets/gimptoolbox.c: call gimp_exit() instead of
	app_exit(). Don't #include "app_procs.h".

	* app/pdb/misc_cmds.c: regenerated.
2002-12-05 15:49:59 +00:00

119 lines
2.8 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995-2000 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.
*/
/* NOTE: This file is autogenerated by pdbgen.pl. */
#include "config.h"
#include <glib-object.h>
#include "libgimpbase/gimpbasetypes.h"
#include "pdb-types.h"
#include "procedural_db.h"
#include "core/gimp.h"
#include "libgimpbase/gimpbase.h"
static ProcRecord version_proc;
static ProcRecord quit_proc;
void
register_misc_procs (Gimp *gimp)
{
procedural_db_register (gimp, &version_proc);
procedural_db_register (gimp, &quit_proc);
}
static Argument *
version_invoker (Gimp *gimp,
Argument *args)
{
Argument *return_args;
return_args = procedural_db_return_args (&version_proc, TRUE);
return_args[1].value.pdb_pointer = g_strdup (GIMP_VERSION);
return return_args;
}
static ProcArg version_outargs[] =
{
{
GIMP_PDB_STRING,
"version",
"The gimp version"
}
};
static ProcRecord version_proc =
{
"gimp_version",
"Returns the host gimp version.",
"This procedure returns the version number of the currently running gimp.",
"Manish Singh",
"Manish Singh",
"1999",
GIMP_INTERNAL,
0,
NULL,
1,
version_outargs,
{ { version_invoker } }
};
static Argument *
quit_invoker (Gimp *gimp,
Argument *args)
{
gboolean kill_it;
kill_it = args[0].value.pdb_int ? TRUE : FALSE;
gimp_exit (gimp, kill_it);
return procedural_db_return_args (&quit_proc, TRUE);
}
static ProcArg quit_inargs[] =
{
{
GIMP_PDB_INT32,
"kill",
"Flag specifying whether to kill the gimp process or exit normally"
}
};
static ProcRecord quit_proc =
{
"gimp_quit",
"Causes the gimp to exit gracefully.",
"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.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",
GIMP_INTERNAL,
1,
quit_inargs,
0,
NULL,
{ { quit_invoker } }
};