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
|
|
|
#include "gimpimage-new.h"
|
|
|
|
|
|
|
|
|
2001-11-18 00:32:34 +08:00
|
|
|
typedef void (* GimpMainLoopFunc) (Gimp *gimp);
|
2001-11-01 05:18:57 +08:00
|
|
|
typedef GimpObject * (* GimpCreateDisplayFunc) (GimpImage *gimage,
|
|
|
|
guint scale);
|
|
|
|
typedef void (* GimpSetBusyFunc) (Gimp *gimp);
|
|
|
|
typedef void (* GimpUnsetBusyFunc) (Gimp *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
|
|
|
|
{
|
2001-07-05 23:34:26 +08:00
|
|
|
GimpObject parent_instance;
|
|
|
|
|
2001-07-11 20:39:49 +08:00
|
|
|
GimpCoreConfig *config;
|
|
|
|
|
2001-10-19 01:27:36 +08:00
|
|
|
gboolean be_verbose;
|
2001-10-25 21:30:01 +08:00
|
|
|
gboolean no_data;
|
2001-10-29 19:47:11 +08:00
|
|
|
gboolean no_interface;
|
2001-10-19 01:27:36 +08:00
|
|
|
|
2001-11-18 00:32:34 +08:00
|
|
|
GList *main_loops;
|
|
|
|
|
|
|
|
GimpMainLoopFunc gui_main_loop_func;
|
|
|
|
GimpMainLoopFunc gui_main_loop_quit_func;
|
|
|
|
GimpCreateDisplayFunc gui_create_display_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
|
|
|
GimpSetBusyFunc gui_set_busy_func;
|
|
|
|
GimpUnsetBusyFunc gui_unset_busy_func;
|
|
|
|
|
2001-11-17 01:08:41 +08:00
|
|
|
gint busy;
|
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
|
|
|
guint busy_idle_id;
|
|
|
|
|
|
|
|
GList *user_units;
|
|
|
|
gint n_user_units;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2001-07-11 20:39:49 +08:00
|
|
|
GimpParasiteList *parasites;
|
|
|
|
|
2001-10-19 01:27:36 +08:00
|
|
|
GimpContainer *modules;
|
|
|
|
gboolean write_modulerc;
|
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
GimpContainer *images;
|
2001-07-11 20:39:49 +08:00
|
|
|
gint next_image_ID;
|
|
|
|
guint32 next_guide_ID;
|
|
|
|
GHashTable *image_table;
|
|
|
|
|
|
|
|
gint next_drawable_ID;
|
|
|
|
GHashTable *drawable_table;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
TileManager *global_buffer;
|
|
|
|
GimpContainer *named_buffers;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
GimpDataFactory *brush_factory;
|
|
|
|
GimpDataFactory *pattern_factory;
|
|
|
|
GimpDataFactory *gradient_factory;
|
|
|
|
GimpDataFactory *palette_factory;
|
2001-07-05 03:31:35 +08:00
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
GHashTable *procedural_ht;
|
2001-07-05 06:59:25 +08:00
|
|
|
|
2001-10-29 19:47:11 +08:00
|
|
|
GSList *load_procs;
|
|
|
|
GSList *save_procs;
|
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
GimpContainer *tool_info_list;
|
2001-08-17 22:27:31 +08:00
|
|
|
GimpToolInfo *standard_tool_info;
|
2001-07-05 23:34:26 +08:00
|
|
|
|
2001-08-10 22:41:39 +08:00
|
|
|
/* the opened and saved images in MRU order */
|
|
|
|
GimpContainer *documents;
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
/* image_new values */
|
2001-07-05 23:34:26 +08:00
|
|
|
GList *image_base_type_names;
|
|
|
|
GList *fill_type_names;
|
|
|
|
GimpImageNewValues image_new_last_values;
|
|
|
|
gboolean have_current_cut_buffer;
|
2001-07-07 20:17:23 +08:00
|
|
|
|
|
|
|
/* the list of all contexts */
|
|
|
|
GList *context_list;
|
|
|
|
|
|
|
|
/* the hardcoded standard context */
|
|
|
|
GimpContext *standard_context;
|
|
|
|
|
|
|
|
/* the default context which is initialized from gimprc */
|
|
|
|
GimpContext *default_context;
|
|
|
|
|
|
|
|
/* the context used by the interface */
|
|
|
|
GimpContext *user_context;
|
|
|
|
|
|
|
|
/* the currently active context */
|
|
|
|
GimpContext *current_context;
|
2001-07-05 03:31:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpClass
|
|
|
|
{
|
|
|
|
GimpObjectClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
GType gimp_get_type (void) G_GNUC_CONST;
|
2001-08-11 22:39:19 +08:00
|
|
|
|
2001-10-25 21:30:01 +08:00
|
|
|
Gimp * gimp_new (gboolean be_verbose,
|
2001-10-29 19:47:11 +08:00
|
|
|
gboolean no_data,
|
|
|
|
gboolean no_interface);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_initialize (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback);
|
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-10-20 00:41:09 +08:00
|
|
|
void gimp_restore (Gimp *gimp,
|
|
|
|
GimpInitStatusFunc status_callback,
|
|
|
|
gboolean no_data);
|
|
|
|
void gimp_shutdown (Gimp *gimp);
|
2001-07-07 20:17:23 +08:00
|
|
|
|
2001-11-18 00:32:34 +08:00
|
|
|
void gimp_main_loop (Gimp *gimp);
|
|
|
|
void gimp_main_loop_quit (Gimp *gimp);
|
|
|
|
|
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-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-07-10 01:58:56 +08:00
|
|
|
/*
|
2001-10-20 00:41:09 +08:00
|
|
|
void gimp_open_file (Gimp *gimp,
|
|
|
|
const gchar *filename,
|
|
|
|
gboolean with_display);
|
2001-07-10 01:58:56 +08:00
|
|
|
*/
|
|
|
|
|
2001-10-20 00:41:09 +08:00
|
|
|
GimpContext * gimp_create_context (Gimp *gimp,
|
|
|
|
const gchar *name,
|
|
|
|
GimpContext *template);
|
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__ */
|