2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-07-05 03:31:35 +08:00
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-07-05 03:31:35 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-07-05 03:31:35 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-07-05 03:31:35 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_H__
|
|
|
|
#define __GIMP_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "gimpobject.h"
|
2004-07-12 19:41:19 +08:00
|
|
|
#include "gimp-gui.h"
|
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;
|
2009-09-09 01:26:57 +08:00
|
|
|
gboolean show_gui;
|
2003-02-11 09:21:21 +08:00
|
|
|
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;
|
2003-12-06 01:08:35 +08:00
|
|
|
GimpPDBCompatMode pdb_compat_mode;
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2008-09-25 16:56:58 +08:00
|
|
|
GimpGui gui; /* gui vtable */
|
|
|
|
|
|
|
|
gboolean restored; /* becomes TRUE in gimp_restore() */
|
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;
|
2005-12-28 02:57:01 +08:00
|
|
|
GimpPaintInfo *standard_paint_info;
|
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
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
GimpPlugInManager *plug_in_manager;
|
2001-07-11 20:39:49 +08:00
|
|
|
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpContainer *images;
|
|
|
|
guint32 next_guide_ID;
|
2005-03-05 00:34:59 +08:00
|
|
|
guint32 next_sample_point_ID;
|
2011-05-05 04:14:13 +08:00
|
|
|
GimpIdTable *image_table;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2011-05-05 04:14:13 +08:00
|
|
|
GimpIdTable *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
|
|
|
|
2009-10-04 08:01:53 +08:00
|
|
|
GList *image_windows;
|
|
|
|
|
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;
|
2009-08-18 10:47:26 +08:00
|
|
|
GimpDataFactory *dynamics_factory;
|
2003-02-11 09:21:21 +08:00
|
|
|
GimpDataFactory *pattern_factory;
|
|
|
|
GimpDataFactory *gradient_factory;
|
|
|
|
GimpDataFactory *palette_factory;
|
2010-04-03 23:25:31 +08:00
|
|
|
GimpDataFactory *tool_preset_factory;
|
2003-09-11 06:06:45 +08:00
|
|
|
|
2008-12-20 22:46:54 +08:00
|
|
|
GimpTagCache *tag_cache;
|
|
|
|
|
2006-04-26 17:13:47 +08:00
|
|
|
GimpPDB *pdb;
|
2001-07-05 03:31:35 +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;
|
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 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-05 03:31:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpClass
|
|
|
|
{
|
|
|
|
GimpObjectClass parent_class;
|
2002-12-05 23:49:59 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
void (* initialize) (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
|
|
|
void (* restore) (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
|
|
|
gboolean (* exit) (Gimp *gimp,
|
|
|
|
gboolean force);
|
2004-02-19 20:49:15 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
void (* buffer_changed) (Gimp *gimp);
|
2008-10-17 20:03:08 +08:00
|
|
|
|
|
|
|
/* emitted if an image is loaded and opened with a display */
|
|
|
|
void (* image_opened) (Gimp *gimp,
|
2009-08-20 09:25:26 +08:00
|
|
|
const gchar *uri);
|
2001-07-05 03:31:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-09-08 21:42:00 +08:00
|
|
|
GType gimp_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
Gimp * gimp_new (const gchar *name,
|
|
|
|
const gchar *session_name,
|
|
|
|
gboolean be_verbose,
|
|
|
|
gboolean no_data,
|
|
|
|
gboolean no_fonts,
|
|
|
|
gboolean no_interface,
|
|
|
|
gboolean use_shm,
|
|
|
|
gboolean console_messages,
|
|
|
|
GimpStackTraceMode stack_trace_mode,
|
|
|
|
GimpPDBCompatMode pdb_compat_mode);
|
2009-09-09 01:26:57 +08:00
|
|
|
void gimp_set_show_gui (Gimp *gimp,
|
|
|
|
gboolean show_gui);
|
|
|
|
gboolean gimp_get_show_gui (Gimp *gimp);
|
2006-09-08 21:42:00 +08:00
|
|
|
|
|
|
|
void gimp_load_config (Gimp *gimp,
|
|
|
|
const gchar *alternate_system_gimprc,
|
|
|
|
const gchar *alternate_gimprc);
|
|
|
|
void gimp_initialize (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
|
|
|
void gimp_restore (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
2008-09-25 16:56:58 +08:00
|
|
|
gboolean gimp_is_restored (Gimp *gimp);
|
2006-09-08 21:42:00 +08:00
|
|
|
|
|
|
|
void gimp_exit (Gimp *gimp,
|
|
|
|
gboolean force);
|
|
|
|
|
2008-11-03 05:34:14 +08:00
|
|
|
GList * gimp_get_image_iter (Gimp *gimp);
|
|
|
|
GList * gimp_get_display_iter (Gimp *gimp);
|
2009-10-26 03:31:55 +08:00
|
|
|
GList * gimp_get_image_windows (Gimp *gimp);
|
2011-10-30 01:37:58 +08:00
|
|
|
GList * gimp_get_paint_info_iter (Gimp *gimp);
|
2008-11-03 05:34:14 +08:00
|
|
|
GList * gimp_get_tool_info_iter (Gimp *gimp);
|
|
|
|
|
2006-09-08 21:42:00 +08:00
|
|
|
void gimp_set_global_buffer (Gimp *gimp,
|
|
|
|
GimpBuffer *buffer);
|
|
|
|
|
|
|
|
GimpImage * gimp_create_image (Gimp *gimp,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageBaseType type,
|
2012-04-22 23:31:32 +08:00
|
|
|
GimpPrecision precision,
|
2006-09-08 21:42:00 +08:00
|
|
|
gboolean attach_comment);
|
|
|
|
|
|
|
|
void gimp_set_default_context (Gimp *gimp,
|
|
|
|
GimpContext *context);
|
|
|
|
GimpContext * gimp_get_default_context (Gimp *gimp);
|
|
|
|
|
|
|
|
void gimp_set_user_context (Gimp *gimp,
|
|
|
|
GimpContext *context);
|
|
|
|
GimpContext * gimp_get_user_context (Gimp *gimp);
|
|
|
|
|
2006-09-28 18:11:17 +08:00
|
|
|
GimpToolInfo * gimp_get_tool_info (Gimp *gimp,
|
|
|
|
const gchar *tool_name);
|
2006-09-08 21:42:00 +08:00
|
|
|
|
|
|
|
void gimp_message (Gimp *gimp,
|
2006-10-09 16:17:22 +08:00
|
|
|
GObject *handler,
|
|
|
|
GimpMessageSeverity severity,
|
2006-09-08 21:42:00 +08:00
|
|
|
const gchar *format,
|
2006-10-09 16:17:22 +08:00
|
|
|
...) G_GNUC_PRINTF(4,5);
|
2006-09-28 18:47:44 +08:00
|
|
|
void gimp_message_valist (Gimp *gimp,
|
2006-10-09 16:17:22 +08:00
|
|
|
GObject *handler,
|
|
|
|
GimpMessageSeverity severity,
|
2006-09-28 18:47:44 +08:00
|
|
|
const gchar *format,
|
|
|
|
va_list args);
|
2008-11-04 20:33:09 +08:00
|
|
|
void gimp_message_literal (Gimp *gimp,
|
|
|
|
GObject *handler,
|
|
|
|
GimpMessageSeverity severity,
|
|
|
|
const gchar *message);
|
2006-08-09 05:06:36 +08:00
|
|
|
|
2008-10-17 20:03:08 +08:00
|
|
|
void gimp_image_opened (Gimp *gimp,
|
2009-08-20 09:25:26 +08:00
|
|
|
const gchar *uri);
|
2008-10-17 20:03:08 +08:00
|
|
|
|
2012-04-24 03:13:57 +08:00
|
|
|
gchar * gimp_get_temp_filename (Gimp *gimp,
|
|
|
|
const gchar *extension);
|
|
|
|
|
2001-07-05 03:31:35 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_H__ */
|