2001-07-05 03:31:35 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995-1997 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_H__
|
|
|
|
#define __GIMP_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "gimpobject.h"
|
2001-07-05 23:34:26 +08:00
|
|
|
|
|
|
|
|
2003-09-11 06:06:45 +08:00
|
|
|
typedef void (* GimpThreadEnterFunc) (Gimp *gimp);
|
|
|
|
typedef void (* GimpThreadLeaveFunc) (Gimp *gimp);
|
|
|
|
typedef GimpObject * (* GimpCreateDisplayFunc) (GimpImage *gimage,
|
|
|
|
guint scale);
|
|
|
|
typedef void (* GimpSetBusyFunc) (Gimp *gimp);
|
|
|
|
typedef void (* GimpUnsetBusyFunc) (Gimp *gimp);
|
|
|
|
typedef void (* GimpMessageFunc) (Gimp *gimp,
|
|
|
|
const gchar *domain,
|
|
|
|
const gchar *message);
|
|
|
|
typedef void (* GimpMenusInitFunc) (Gimp *gimp,
|
|
|
|
GSList *plug_in_defs,
|
|
|
|
const gchar *std_domain);
|
|
|
|
typedef void (* GimpMenusCreateFunc) (Gimp *gimp,
|
|
|
|
PlugInProcDef *proc_def,
|
|
|
|
const gchar *locale_domain,
|
|
|
|
const gchar *help_domain);
|
|
|
|
typedef void (* GimpMenusDeleteFunc) (Gimp *gimp,
|
|
|
|
const gchar *menu_path);
|
|
|
|
typedef GimpProgress * (* GimpProgressStartFunc) (Gimp *gimp,
|
|
|
|
gint gdisp_ID,
|
|
|
|
const gchar *message,
|
|
|
|
GCallback cancel_cb,
|
|
|
|
gpointer cancel_data);
|
|
|
|
typedef GimpProgress * (* GimpProgressRestartFunc) (Gimp *gimp,
|
|
|
|
GimpProgress *progress,
|
|
|
|
const gchar *message,
|
|
|
|
GCallback cancel_cb,
|
|
|
|
gpointer cancel_data);
|
|
|
|
typedef void (* GimpProgressUpdateFunc) (Gimp *gimp,
|
|
|
|
GimpProgress *progress,
|
|
|
|
gdouble percentage);
|
|
|
|
typedef void (* GimpProgressEndFunc) (Gimp *gimp,
|
|
|
|
GimpProgress *progress);
|
|
|
|
typedef void (* GimpPDBDialogsCheckFunc) (Gimp *gimp);
|
2003-11-08 01:29:02 +08:00
|
|
|
typedef const gchar * (* GimpGetProgramClassFunc) (Gimp *gimp);
|
|
|
|
typedef gchar * (* GimpGetDisplayNameFunc) (Gimp *gimp,
|
|
|
|
gint gdisp_ID,
|
|
|
|
gint *monitor_number);
|
2003-11-10 20:36:22 +08:00
|
|
|
typedef const gchar * (* GimpGetThemeDirFunc) (Gimp *);
|
2001-07-05 03:31:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_GIMP (gimp_get_type ())
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
#define GIMP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_GIMP, Gimp))
|
|
|
|
#define GIMP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_GIMP, GimpClass))
|
|
|
|
#define GIMP_IS_GIMP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_GIMP))
|
|
|
|
#define GIMP_IS_GIMP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_GIMP))
|
2001-07-05 03:31:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpClass GimpClass;
|
|
|
|
|
|
|
|
struct _Gimp
|
|
|
|
{
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpObject parent_instance;
|
2001-07-05 23:34:26 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpCoreConfig *config;
|
|
|
|
GimpCoreConfig *edit_config; /* don't use this one, it's just
|
2003-10-11 22:30:18 +08:00
|
|
|
* for the preferences dialog
|
|
|
|
*/
|
2003-11-13 22:14:20 +08:00
|
|
|
gchar *session_name;
|
2001-07-11 20:39:49 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
gboolean be_verbose;
|
|
|
|
gboolean no_data;
|
2003-11-05 08:33:20 +08:00
|
|
|
gboolean no_fonts;
|
2003-02-11 09:21:21 +08:00
|
|
|
gboolean no_interface;
|
|
|
|
gboolean use_shm;
|
|
|
|
GimpMessageHandlerType message_handler;
|
2003-09-09 18:54:20 +08:00
|
|
|
gboolean console_messages;
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpStackTraceMode stack_trace_mode;
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2003-04-04 23:11:30 +08:00
|
|
|
GimpThreadEnterFunc gui_threads_enter_func;
|
|
|
|
GimpThreadLeaveFunc gui_threads_leave_func;
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpCreateDisplayFunc gui_create_display_func;
|
|
|
|
GimpSetBusyFunc gui_set_busy_func;
|
|
|
|
GimpUnsetBusyFunc gui_unset_busy_func;
|
|
|
|
GimpMessageFunc gui_message_func;
|
2003-09-11 06:06:45 +08:00
|
|
|
GimpMenusInitFunc gui_menus_init_func;
|
|
|
|
GimpMenusCreateFunc gui_menus_create_func;
|
|
|
|
GimpMenusDeleteFunc gui_menus_delete_func;
|
|
|
|
GimpProgressStartFunc gui_progress_start_func;
|
|
|
|
GimpProgressRestartFunc gui_progress_restart_func;
|
|
|
|
GimpProgressUpdateFunc gui_progress_update_func;
|
|
|
|
GimpProgressEndFunc gui_progress_end_func;
|
|
|
|
GimpPDBDialogsCheckFunc gui_pdb_dialogs_check_func;
|
2003-11-08 01:29:02 +08:00
|
|
|
GimpGetProgramClassFunc gui_get_program_class_func;
|
|
|
|
GimpGetDisplayNameFunc gui_get_display_name_func;
|
2003-11-10 20:36:22 +08:00
|
|
|
GimpGetThemeDirFunc gui_get_theme_dir_func;
|
removed the gimp_busy boolean, check whether user_installation is needed
2001-07-10 Michael Natterer <mitch@gimp.org>
* app/app_procs.[ch]: removed the gimp_busy boolean, check whether
user_installation is needed here, not in user_install.c, parse
gtkrc an friends only if(!no_interface), create the Gimp object
before parsing gimp's rc files an pas it to the parse functions,
many other cleanups.
* app/appenums.h: added MessageHandlerType and StackTraceMode.
* app/appenv.h: removed MessageHandlerType, declare all global
variables from main.c (no more hidden global stuff please).
* app/errors.[ch]: added the fatal message func here (from main.c),
removed the StackTraceMode enum.
* app/gimprc.[ch]: renamed functions to gimprc_*(), pass a Gimp
pointer to some functions.
* app/gimpunit.c
* app/unitrc.h: ok, this is ugly: renamed all functions to
_gimp_unit_*() and made them public. The unit list is part
of the Gimp object now, so pass a Gimp* to all functions.
* app/libgimp_glue.[ch]: added EEKy wrappers for all gimp_unit_*()
functions which are used by widgets.
* app/main.c: cleaned up the global variables, removed the fatal
message handler, call app_init() directly, not via the
user_install stuff, misc. cleanups.
* app/user_install.[ch]: removed the check if user_installation is
needed (done by app_procs.c now).
* app/core/gimp.[ch]: added the user_unit list and the "busy"
boolean. Moved gimp_[set|unset]_busy() here. Added
gimp_initialize() which is called after unitrc and gimprc are
parsed.
* app/batch.c
* app/colormaps.c
* app/devices.c
* app/disp_callbacks.c
* app/gdisplay_ops.c
* app/gimphelp.c
* app/module_db.c
* app/nav_window.c
* app/plug_in.c
* app/core/gimpcontext.c
* app/core/gimpdatafiles.c
* app/core/gimpimage-convert.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage.c
* app/core/gimpparasite.c
* app/core/gimpparasitelist.h
* app/gui/file-open-dialog.c
* app/gui/gui.[ch]
* app/gui/info-dialog.c
* app/gui/info-window.c
* app/gui/preferences-dialog.c
* app/gui/session.c
* app/gui/tips-dialog.c
* app/gui/toolbox.c
* app/tools/gimpblendtool.c
* app/tools/gimpbucketfilltool.c
* app/tools/gimpcolorpickertool.c
* app/tools/gimpfuzzyselecttool.c
* app/tools/gimptransformtool.c
* app/tools/tool_manager.c
* app/widgets/gimpcolorpanel.c
* app/widgets/gimpcursor.c
* app/xcf/xcf-load.c
* app/xcf/xcf-save.c
* app/xcf/xcf.c
* tools/pdbgen/Makefile.am
* tools/pdbgen/app.pl
* tools/pdbgen/enums.pl
* tools/pdbgen/pdb/image.pdb
* tools/pdbgen/pdb/message.pdb
* tools/pdbgen/pdb/unit.pdb
* app/pdb/image_cmds.c
* app/pdb/message_cmds.c
* app/pdb/unit_cmds.c: changed accordingly, minor cleanups.
2001-07-11 03:16:16 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
gint busy;
|
|
|
|
guint busy_idle_id;
|
removed the gimp_busy boolean, check whether user_installation is needed
2001-07-10 Michael Natterer <mitch@gimp.org>
* app/app_procs.[ch]: removed the gimp_busy boolean, check whether
user_installation is needed here, not in user_install.c, parse
gtkrc an friends only if(!no_interface), create the Gimp object
before parsing gimp's rc files an pas it to the parse functions,
many other cleanups.
* app/appenums.h: added MessageHandlerType and StackTraceMode.
* app/appenv.h: removed MessageHandlerType, declare all global
variables from main.c (no more hidden global stuff please).
* app/errors.[ch]: added the fatal message func here (from main.c),
removed the StackTraceMode enum.
* app/gimprc.[ch]: renamed functions to gimprc_*(), pass a Gimp
pointer to some functions.
* app/gimpunit.c
* app/unitrc.h: ok, this is ugly: renamed all functions to
_gimp_unit_*() and made them public. The unit list is part
of the Gimp object now, so pass a Gimp* to all functions.
* app/libgimp_glue.[ch]: added EEKy wrappers for all gimp_unit_*()
functions which are used by widgets.
* app/main.c: cleaned up the global variables, removed the fatal
message handler, call app_init() directly, not via the
user_install stuff, misc. cleanups.
* app/user_install.[ch]: removed the check if user_installation is
needed (done by app_procs.c now).
* app/core/gimp.[ch]: added the user_unit list and the "busy"
boolean. Moved gimp_[set|unset]_busy() here. Added
gimp_initialize() which is called after unitrc and gimprc are
parsed.
* app/batch.c
* app/colormaps.c
* app/devices.c
* app/disp_callbacks.c
* app/gdisplay_ops.c
* app/gimphelp.c
* app/module_db.c
* app/nav_window.c
* app/plug_in.c
* app/core/gimpcontext.c
* app/core/gimpdatafiles.c
* app/core/gimpimage-convert.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage.c
* app/core/gimpparasite.c
* app/core/gimpparasitelist.h
* app/gui/file-open-dialog.c
* app/gui/gui.[ch]
* app/gui/info-dialog.c
* app/gui/info-window.c
* app/gui/preferences-dialog.c
* app/gui/session.c
* app/gui/tips-dialog.c
* app/gui/toolbox.c
* app/tools/gimpblendtool.c
* app/tools/gimpbucketfilltool.c
* app/tools/gimpcolorpickertool.c
* app/tools/gimpfuzzyselecttool.c
* app/tools/gimptransformtool.c
* app/tools/tool_manager.c
* app/widgets/gimpcolorpanel.c
* app/widgets/gimpcursor.c
* app/xcf/xcf-load.c
* app/xcf/xcf-save.c
* app/xcf/xcf.c
* tools/pdbgen/Makefile.am
* tools/pdbgen/app.pl
* tools/pdbgen/enums.pl
* tools/pdbgen/pdb/image.pdb
* tools/pdbgen/pdb/message.pdb
* tools/pdbgen/pdb/unit.pdb
* app/pdb/image_cmds.c
* app/pdb/message_cmds.c
* app/pdb/unit_cmds.c: changed accordingly, minor cleanups.
2001-07-11 03:16:16 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GList *user_units;
|
|
|
|
gint n_user_units;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpParasiteList *parasites;
|
2001-07-11 20:39:49 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *paint_info_list;
|
2002-02-27 21:57:49 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpModuleDB *module_db;
|
|
|
|
gboolean write_modulerc;
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2003-02-11 20:07:31 +08:00
|
|
|
GSList *plug_in_defs;
|
|
|
|
gboolean write_pluginrc;
|
|
|
|
|
|
|
|
GSList *plug_in_proc_defs;
|
|
|
|
GSList *plug_in_locale_domains;
|
2003-08-29 02:49:11 +08:00
|
|
|
GSList *plug_in_help_domains;
|
2002-11-12 11:34:11 +08:00
|
|
|
|
2003-02-11 20:07:31 +08:00
|
|
|
PlugIn *current_plug_in;
|
|
|
|
GSList *open_plug_ins;
|
|
|
|
GSList *plug_in_stack;
|
|
|
|
ProcRecord *last_plug_in;
|
|
|
|
|
|
|
|
PlugInShm *plug_in_shm;
|
|
|
|
GimpEnvironTable *environ_table;
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpPlugInDebug *plug_in_debug;
|
2001-07-11 20:39:49 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *images;
|
|
|
|
gint next_image_ID;
|
|
|
|
guint32 next_guide_ID;
|
|
|
|
GHashTable *image_table;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
gint next_item_ID;
|
|
|
|
GHashTable *item_table;
|
2002-05-09 01:48:24 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *displays;
|
|
|
|
gint next_display_ID;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpBuffer *global_buffer;
|
|
|
|
GimpContainer *named_buffers;
|
2003-03-26 06:06:03 +08:00
|
|
|
|
|
|
|
GimpContainer *fonts;
|
2003-09-11 06:06:45 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpDataFactory *brush_factory;
|
|
|
|
GimpDataFactory *pattern_factory;
|
|
|
|
GimpDataFactory *gradient_factory;
|
|
|
|
GimpDataFactory *palette_factory;
|
2003-09-11 06:06:45 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GHashTable *procedural_ht;
|
|
|
|
GList *procedural_db_data_list;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GSList *load_procs;
|
|
|
|
GSList *save_procs;
|
2001-07-05 23:34:26 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *tool_info_list;
|
|
|
|
GimpToolInfo *standard_tool_info;
|
2003-09-11 06:06:45 +08:00
|
|
|
|
2001-08-10 22:41:39 +08:00
|
|
|
/* the opened and saved images in MRU order */
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *documents;
|
2001-08-10 22:41:39 +08:00
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
/* image_new values */
|
2003-04-04 01:50:56 +08:00
|
|
|
GimpContainer *templates;
|
|
|
|
GimpTemplate *image_new_last_template;
|
2003-02-11 09:21:21 +08:00
|
|
|
gboolean have_current_cut_buffer;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the list of all contexts */
|
2003-02-11 09:21:21 +08:00
|
|
|
GList *context_list;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the hardcoded standard context */
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContext *standard_context;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the default context which is initialized from gimprc */
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContext *default_context;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the context used by the interface */
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContext *user_context;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the currently active context */
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContext *current_context;
|
2001-07-05 03:31:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpClass
|
|
|
|
{
|
|
|
|
GimpObjectClass parent_class;
|
2002-12-05 23:49:59 +08:00
|
|
|
|
2003-10-02 19:26:26 +08:00
|
|
|
void (* initialize) (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
|
|
|
void (* restore) (Gimp *gimp,
|
2003-11-13 22:14:20 +08:00
|
|
|
GimpInitStatusFunc status_callback);
|
2003-10-02 19:26:26 +08:00
|
|
|
gboolean (* exit) (Gimp *gimp,
|
|
|
|
gboolean kill_it);
|
2001-07-05 03:31:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
GType gimp_get_type (void) G_GNUC_CONST;
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2003-10-02 19:26:26 +08:00
|
|
|
Gimp * gimp_new (const gchar *name,
|
2003-11-13 22:14:20 +08:00
|
|
|
const gchar *session_name,
|
2003-10-02 19:26:26 +08:00
|
|
|
gboolean be_verbose,
|
2001-10-29 19:47:11 +08:00
|
|
|
gboolean no_data,
|
2003-11-05 08:33:20 +08:00
|
|
|
gboolean no_fonts,
|
2001-12-01 08:14:14 +08:00
|
|
|
gboolean no_interface,
|
2002-12-01 20:16:03 +08:00
|
|
|
gboolean use_shm,
|
2003-09-09 18:54:20 +08:00
|
|
|
gboolean console_messages,
|
2001-12-01 08:14:14 +08:00
|
|
|
GimpStackTraceMode stack_trace_mode);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2003-10-02 19:26:26 +08:00
|
|
|
void gimp_load_config (Gimp *gimp,
|
|
|
|
const gchar *alternate_system_gimprc,
|
|
|
|
const gchar *alternate_gimprc,
|
|
|
|
gboolean use_cpu_accel);
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_initialize (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
|
|
|
void gimp_restore (Gimp *gimp,
|
2003-11-13 22:14:20 +08:00
|
|
|
GimpInitStatusFunc status_callback);
|
2002-12-05 23:49:59 +08:00
|
|
|
|
|
|
|
void gimp_exit (Gimp *gimp,
|
|
|
|
gboolean kill_it);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2003-02-03 21:21:31 +08:00
|
|
|
void gimp_threads_enter (Gimp *gimp);
|
|
|
|
void gimp_threads_leave (Gimp *gimp);
|
2001-11-18 00:32:34 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_set_busy (Gimp *gimp);
|
|
|
|
void gimp_set_busy_until_idle (Gimp *gimp);
|
|
|
|
void gimp_unset_busy (Gimp *gimp);
|
removed the gimp_busy boolean, check whether user_installation is needed
2001-07-10 Michael Natterer <mitch@gimp.org>
* app/app_procs.[ch]: removed the gimp_busy boolean, check whether
user_installation is needed here, not in user_install.c, parse
gtkrc an friends only if(!no_interface), create the Gimp object
before parsing gimp's rc files an pas it to the parse functions,
many other cleanups.
* app/appenums.h: added MessageHandlerType and StackTraceMode.
* app/appenv.h: removed MessageHandlerType, declare all global
variables from main.c (no more hidden global stuff please).
* app/errors.[ch]: added the fatal message func here (from main.c),
removed the StackTraceMode enum.
* app/gimprc.[ch]: renamed functions to gimprc_*(), pass a Gimp
pointer to some functions.
* app/gimpunit.c
* app/unitrc.h: ok, this is ugly: renamed all functions to
_gimp_unit_*() and made them public. The unit list is part
of the Gimp object now, so pass a Gimp* to all functions.
* app/libgimp_glue.[ch]: added EEKy wrappers for all gimp_unit_*()
functions which are used by widgets.
* app/main.c: cleaned up the global variables, removed the fatal
message handler, call app_init() directly, not via the
user_install stuff, misc. cleanups.
* app/user_install.[ch]: removed the check if user_installation is
needed (done by app_procs.c now).
* app/core/gimp.[ch]: added the user_unit list and the "busy"
boolean. Moved gimp_[set|unset]_busy() here. Added
gimp_initialize() which is called after unitrc and gimprc are
parsed.
* app/batch.c
* app/colormaps.c
* app/devices.c
* app/disp_callbacks.c
* app/gdisplay_ops.c
* app/gimphelp.c
* app/module_db.c
* app/nav_window.c
* app/plug_in.c
* app/core/gimpcontext.c
* app/core/gimpdatafiles.c
* app/core/gimpimage-convert.c
* app/core/gimpimage-duplicate.c
* app/core/gimpimage.c
* app/core/gimpparasite.c
* app/core/gimpparasitelist.h
* app/gui/file-open-dialog.c
* app/gui/gui.[ch]
* app/gui/info-dialog.c
* app/gui/info-window.c
* app/gui/preferences-dialog.c
* app/gui/session.c
* app/gui/tips-dialog.c
* app/gui/toolbox.c
* app/tools/gimpblendtool.c
* app/tools/gimpbucketfilltool.c
* app/tools/gimpcolorpickertool.c
* app/tools/gimpfuzzyselecttool.c
* app/tools/gimptransformtool.c
* app/tools/tool_manager.c
* app/widgets/gimpcolorpanel.c
* app/widgets/gimpcursor.c
* app/xcf/xcf-load.c
* app/xcf/xcf-save.c
* app/xcf/xcf.c
* tools/pdbgen/Makefile.am
* tools/pdbgen/app.pl
* tools/pdbgen/enums.pl
* tools/pdbgen/pdb/image.pdb
* tools/pdbgen/pdb/message.pdb
* tools/pdbgen/pdb/unit.pdb
* app/pdb/image_cmds.c
* app/pdb/message_cmds.c
* app/pdb/unit_cmds.c: changed accordingly, minor cleanups.
2001-07-11 03:16:16 +08:00
|
|
|
|
2001-12-02 05:02:34 +08:00
|
|
|
void gimp_message (Gimp *gimp,
|
2003-06-13 22:37:00 +08:00
|
|
|
const gchar *domain,
|
2001-12-02 05:02:34 +08:00
|
|
|
const gchar *message);
|
2003-09-11 06:06:45 +08:00
|
|
|
void gimp_menus_init (Gimp *gimp,
|
|
|
|
GSList *plug_in_defs,
|
|
|
|
const gchar *std_plugins_domain);
|
|
|
|
void gimp_menus_create_entry (Gimp *gimp,
|
|
|
|
PlugInProcDef *proc_def,
|
|
|
|
const gchar *locale_domain,
|
|
|
|
const gchar *help_domain);
|
|
|
|
void gimp_menus_delete_entry (Gimp *gimp,
|
|
|
|
const gchar *menu_path);
|
|
|
|
GimpProgress *gimp_start_progress (Gimp *gimp,
|
|
|
|
gint gdisp_ID,
|
|
|
|
const gchar *message,
|
|
|
|
GCallback cancel_cb,
|
|
|
|
gpointer cancel_data);
|
|
|
|
GimpProgress *gimp_restart_progress (Gimp *gimp,
|
|
|
|
GimpProgress *progress,
|
|
|
|
const gchar *message,
|
|
|
|
GCallback cancel_cb,
|
|
|
|
gpointer cancel_data);
|
|
|
|
void gimp_update_progress (Gimp *gimp,
|
|
|
|
GimpProgress *progress,
|
|
|
|
gdouble percentage);
|
|
|
|
void gimp_end_progress (Gimp *gimp,
|
|
|
|
GimpProgress *progress);
|
|
|
|
void gimp_pdb_dialogs_check (Gimp *gimp);
|
2003-11-08 01:29:02 +08:00
|
|
|
const gchar * gimp_get_program_class (Gimp *gimp);
|
|
|
|
gchar * gimp_get_display_name (Gimp *gimp,
|
|
|
|
gint gdisp_ID,
|
|
|
|
gint *monitor_number);
|
2003-11-10 20:36:22 +08:00
|
|
|
const gchar * gimp_get_theme_dir (Gimp *gimp);
|
2001-12-02 05:02:34 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
GimpImage * gimp_create_image (Gimp *gimp,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageBaseType type,
|
|
|
|
gboolean attach_comment);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-11-01 05:18:57 +08:00
|
|
|
GimpObject * gimp_create_display (Gimp *gimp,
|
|
|
|
GimpImage *gimage,
|
|
|
|
guint scale);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
GimpContext * gimp_get_standard_context (Gimp *gimp);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_set_default_context (Gimp *gimp,
|
|
|
|
GimpContext *context);
|
|
|
|
GimpContext * gimp_get_default_context (Gimp *gimp);
|
2001-07-05 23:34:26 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_set_user_context (Gimp *gimp,
|
|
|
|
GimpContext *context);
|
|
|
|
GimpContext * gimp_get_user_context (Gimp *gimp);
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_set_current_context (Gimp *gimp,
|
|
|
|
GimpContext *context);
|
|
|
|
GimpContext * gimp_get_current_context (Gimp *gimp);
|
2001-07-05 03:31:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_H__ */
|