2003-01-05 Manish Singh <yosh@gimp.org> * app/undo_history.c * app/core/gimpbrush.c * app/core/gimpimage-new.c * app/core/gimpobject.c * app/core/gimppalette-import.c * app/core/gimppattern.c * app/plug-in/plug-in.c * app/tools/gimpbezierselecttool.c * libgimpwidgets/gimpunitmenu.c * plug-ins/MapObject/mapobject_ui.c * plug-ins/common/convmatrix.c * plug-ins/common/curve_bend.c * plug-ins/common/sample_colorize.c * plug-ins/common/tiff.c * plug-ins/flame/flame.c * plug-ins/gflare/gflare.c * plug-ins/gimpressionist/general.c * plug-ins/gimpressionist/orientation.c * plug-ins/gimpressionist/preview.c * plug-ins/gimpressionist/size.c * plug-ins/imagemap/imap_grid.c * plug-ins/imagemap/imap_menu.c * plug-ins/maze/algorithms.c * plug-ins/script-fu/interp_regex.c * plug-ins/script-fu/interp_sliba.c * plug-ins/script-fu/script-fu-console.c * plug-ins/script-fu/script-fu-server.c * plug-ins/webbrowser/webbrowser.c: added GINT_TO_POINTER and friends, fixed format strings, for 64-bitness. * modules/colorsel_triangle.c * plug-ins/tools/tool-safe-mode-plug-in.c: #include missing header files
69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
/* The GIMP -- an image manipulation program
|
|
*
|
|
* tool-safe-mode -- support plug-in for dynamically loaded tool modules
|
|
* Copyright (C) 2000 Nathan Summers
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include "tool-safe-mode.h"
|
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
|
static void
|
|
safe_mode_init (void)
|
|
{
|
|
gchar *tool_plug_in_path;
|
|
gchar *freeme;
|
|
|
|
g_type_init ();
|
|
|
|
freeme = tool_plug_in_path = gimp_gimprc_query ("tool-plug-in-path");
|
|
|
|
/* FIXME: why does it return the string with quotes around it?
|
|
* gflare-path does not
|
|
*
|
|
* It's a bug that will be fixed with the death of app/gimprc.c
|
|
* --mitch
|
|
*/
|
|
|
|
tool_plug_in_path++;
|
|
tool_plug_in_path[strlen(tool_plug_in_path)-1] = 0;
|
|
|
|
tool_safe_mode_init (tool_plug_in_path);
|
|
|
|
g_free (freeme);
|
|
}
|
|
|
|
|
|
GimpPlugInInfo PLUG_IN_INFO =
|
|
{
|
|
safe_mode_init, /* init_proc */
|
|
NULL, /* query_proc */
|
|
NULL, /* quit_proc */
|
|
NULL, /* run_proc */
|
|
};
|
|
|
|
MAIN ()
|