1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
#ifndef __PLUG_IN_H__
|
|
|
|
#define __PLUG_IN_H__
|
|
|
|
|
|
|
|
|
1999-05-01 05:11:27 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <gtk/gtk.h>
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "procedural_db.h"
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
#include "gimpprogress.h"
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
#include "drawable.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#define WRITE_BUFFER_SIZE 512
|
|
|
|
|
|
|
|
#define RGB_IMAGE 0x01
|
|
|
|
#define GRAY_IMAGE 0x02
|
|
|
|
#define INDEXED_IMAGE 0x04
|
|
|
|
#define RGBA_IMAGE 0x08
|
|
|
|
#define GRAYA_IMAGE 0x10
|
|
|
|
#define INDEXEDA_IMAGE 0x20
|
|
|
|
|
|
|
|
|
1999-02-23 08:18:24 +08:00
|
|
|
|
1999-07-29 07:00:08 +08:00
|
|
|
typedef enum
|
1999-02-23 08:18:24 +08:00
|
|
|
{
|
1999-05-01 05:11:27 +08:00
|
|
|
RUN_INTERACTIVE = 0,
|
|
|
|
RUN_NONINTERACTIVE = 1,
|
|
|
|
RUN_WITH_LAST_VALS = 2
|
1999-02-23 08:18:24 +08:00
|
|
|
} RunModeType;
|
|
|
|
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
struct _PlugIn
|
|
|
|
{
|
|
|
|
unsigned int open : 1; /* Is the plug-in open */
|
|
|
|
unsigned int destroy : 1; /* Should the plug-in by destroyed */
|
|
|
|
unsigned int query : 1; /* Are we querying the plug-in? */
|
|
|
|
unsigned int synchronous : 1; /* Is the plug-in running synchronously or not */
|
|
|
|
unsigned int recurse : 1; /* Have we called 'gtk_main' recursively? */
|
|
|
|
unsigned int busy : 1; /* Is the plug-in busy with a temp proc? */
|
|
|
|
pid_t pid; /* Plug-ins process id */
|
|
|
|
char *args[7]; /* Plug-ins command line arguments */
|
|
|
|
|
1999-03-07 20:56:03 +08:00
|
|
|
GIOChannel *my_read, *my_write; /* App's read and write channels */
|
|
|
|
GIOChannel *his_read, *his_write; /* Plug-in's read and write channels */
|
|
|
|
#ifdef NATIVE_WIN32
|
|
|
|
guint his_thread_id; /* Plug-in's thread ID */
|
|
|
|
int his_read_fd; /* Plug-in's read pipe fd */
|
|
|
|
#endif
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
guint32 input_id; /* Id of input proc */
|
|
|
|
|
|
|
|
char write_buffer[WRITE_BUFFER_SIZE]; /* Buffer for writing */
|
|
|
|
int write_buffer_index; /* Buffer index for writing */
|
|
|
|
|
|
|
|
GSList *temp_proc_defs; /* Temporary procedures */
|
|
|
|
|
Bit of a large checkin this - it's basically three things: 1 - GimpModules
Sun Jan 11 00:24:21 GMT 1999 Austin Donnelly <austin@greenend.org.uk>
Bit of a large checkin this - it's basically three things:
1 - GimpModules using gmodules to dynamically load and
initialise modules at gimp start of day.
2 - Color selectors now register themselves with a color
notebook.
3 - progress bars have been cleaned up a bit, so now have
progress indictations on all transform tool and gradient
fill operations. Not done bucket fill, but that seems to
be the next candidate.
New directories:
* modules/: new directory for dynamically loadable modules.
New files:
* modules/.cvsignore
* modules/Makefile.am
* modules/colorsel_gtk.c: GTK color selector wrapped up as a
color selector the gimp can use.
* app/gimpprogress.[ch]: progress bars within gimp core, either as
popups, or in the status bar. This is mainly code moved out
of plug-in.c
* app/color_notebook.[ch]: color selector notebook, implementing
very similar interface to color_select.h so it can be used as
a drop-in replacement for it.
* libgimp/color_selector.h: API color selectors need to implement
to become a page in the color_notebook.
* libgimp/gimpmodule.h: API gimp modules need to implement to be
initialised by gimp at start of day.
Modified files:
* Makefile.am: add modules/ to SUBDIRS
* libgimp/Makefile.am: install gimpmodule.h and color_selector.h
* app/gimprc.[ch]: recognise module-path variable.
* gimprc.in: set module-path variable to something sensible
(currently "${gimp_dir}/modules:${gimp_plugin_dir}/modules").
* app/Makefile.am: build color notebook and gimpprogress
* app/app_procs.c: register internal GIMP color selector with
color notebook.
* app/asupsample.c: call progress function less frequently for
better performance.
* app/asupsample.h: progress_func_t typedef moved to gimpprogress.h
* app/blend.c: make callbacks to a progress function
* app/color_area.c: use a color notebook rather than a color selector
* app/color_panel.c: ditto
* app/color_select.c: export color selector interface for notebook
* app/color_select.h: color_select_init() prototype
* app/flip_tool.c: flip the image every time, rather than every
second click.
* app/interface.c: move progress bar stuff out to
gimpprogress.c. Make the code actually work while we're at it.
* app/interface.h: move prototypes for progress functions out to
gimpprogress.h
* app/plug_in.c: load and initialise modules (if possible). Move
progress bar handling code out to gimpprogress.c
* app/plug_in.h: keep only a gimp_progress * for each plugin, not
a whole bunch of GtkWidgets.
* app/scale_tool.c
* app/rotate_tool.c
* app/shear_tool.c
* app/perspective_tool.c: progress bar during operation.
De-sensitise the dialog to discourage the user from running
two transforms in parallel.
* app/transform_core.c: recalculate grid coords when bounding box
changes. Only initialise the action area of the dialog once,
to avoid multiple "ok" / "reset" buttons appearing. Undraw
transform tool with correct matrix to get rid of handle
remains on screen. Call a progress function as we apply the
transform matrix. A few new i18n markups. Invalidate
floating selection marching ants after applying matrix.
* app/transform_core.h: transform_core_do() takes an optional
progress callback argument (and data).
* plug-ins/oilify/oilify.c: send progress bar updates after every
pixel region, not only if they processed a multiple of 5
pixels (which was quite unlikely, and therefore gave a jerky
progress indication).
1999-01-11 08:57:33 +08:00
|
|
|
gimp_progress *progress; /* Progress dialog */
|
1998-06-15 10:25:27 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gpointer user_data; /* Handle for hanging data onto */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _PlugInDef
|
|
|
|
{
|
|
|
|
char *prog;
|
|
|
|
GSList *proc_defs;
|
|
|
|
time_t mtime;
|
|
|
|
int query;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _PlugInProcDef
|
|
|
|
{
|
|
|
|
char *prog;
|
|
|
|
char *menu_path;
|
|
|
|
char *accelerator;
|
|
|
|
char *extensions;
|
|
|
|
char *prefixes;
|
|
|
|
char *magics;
|
|
|
|
char *image_types;
|
|
|
|
int image_types_val;
|
|
|
|
ProcRecord db_info;
|
|
|
|
GSList *extensions_list;
|
|
|
|
GSList *prefixes_list;
|
|
|
|
GSList *magics_list;
|
1999-01-31 09:08:26 +08:00
|
|
|
time_t mtime;
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the plug-ins */
|
|
|
|
void plug_in_init (void);
|
|
|
|
|
|
|
|
/* Kill all running plug-ins */
|
|
|
|
void plug_in_kill (void);
|
|
|
|
|
|
|
|
/* Add a plug-in to the list of valid plug-ins
|
|
|
|
* and query the plug-in for information if
|
|
|
|
* necessary.
|
|
|
|
*/
|
|
|
|
void plug_in_add (char *name,
|
|
|
|
char *menu_path,
|
|
|
|
char *accelerator);
|
|
|
|
|
|
|
|
/* Get the "image_types" the plug-in works on.
|
|
|
|
*/
|
|
|
|
char* plug_in_image_types (char *name);
|
|
|
|
|
|
|
|
/* Add in the file load/save handler fields procedure.
|
|
|
|
*/
|
|
|
|
PlugInProcDef* plug_in_file_handler (char *name,
|
|
|
|
char *extensions,
|
|
|
|
char *prefixes,
|
|
|
|
char *magics);
|
|
|
|
|
|
|
|
/* Add a plug-in definition.
|
|
|
|
*/
|
|
|
|
void plug_in_def_add (PlugInDef *plug_in_def);
|
|
|
|
|
|
|
|
/* Retrieve a plug-ins menu path
|
|
|
|
*/
|
|
|
|
char* plug_in_menu_path (char *name);
|
|
|
|
|
|
|
|
/* Create a new plug-in structure */
|
|
|
|
PlugIn* plug_in_new (char *name);
|
|
|
|
|
|
|
|
/* Destroy a plug-in structure. This will close the plug-in
|
|
|
|
* first if necessary.
|
|
|
|
*/
|
|
|
|
void plug_in_destroy (PlugIn *plug_in);
|
|
|
|
|
1998-01-25 09:24:46 +08:00
|
|
|
/* Open a plug-in. This cause the plug-in to run.
|
|
|
|
* If returns 1, you must destroy the plugin. If returns 0 you
|
|
|
|
* may not destroy the plugin.
|
|
|
|
*/
|
1997-11-25 06:05:25 +08:00
|
|
|
int plug_in_open (PlugIn *plug_in);
|
|
|
|
|
|
|
|
/* Close a plug-in. This kills the plug-in and releases
|
|
|
|
* its resources.
|
|
|
|
*/
|
|
|
|
void plug_in_close (PlugIn *plug_in,
|
|
|
|
int kill_it);
|
|
|
|
|
|
|
|
/* Run a plug-in as if it were a procedure database procedure */
|
|
|
|
Argument* plug_in_run (ProcRecord *proc_rec,
|
|
|
|
Argument *args,
|
1998-10-22 03:10:14 +08:00
|
|
|
int argc,
|
1997-11-25 06:05:25 +08:00
|
|
|
int synchronous,
|
1998-06-14 12:33:27 +08:00
|
|
|
int destroy_values,
|
|
|
|
int gdisp_ID);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Run the last plug-in again with the same arguments. Extensions
|
|
|
|
* are exempt from this "privelege".
|
|
|
|
*/
|
|
|
|
void plug_in_repeat (int with_interface);
|
|
|
|
|
|
|
|
/* Set the sensitivity for plug-in menu items based on the image
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
* type.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
void plug_in_set_menu_sensitivity (GimpImageType type);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Register an internal plug-in. This is for file load-save
|
|
|
|
* handlers, which are organized around the plug-in data structure.
|
|
|
|
* This could all be done a little better, but oh well. -josh
|
|
|
|
*/
|
|
|
|
void plug_in_add_internal (PlugInProcDef* proc_def);
|
|
|
|
GSList* plug_in_extensions_parse (char *extensions);
|
|
|
|
int plug_in_image_types_parse (char *image_types);
|
|
|
|
|
1999-05-04 03:22:58 +08:00
|
|
|
void plug_in_progress_init (PlugIn *plug_in, char *message, gint gdisp_ID);
|
|
|
|
void plug_in_progress_update (PlugIn *plug_in, double percentage);
|
|
|
|
|
|
|
|
extern PlugIn *current_plug_in;
|
|
|
|
extern GSList *proc_defs;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __PLUG_IN_H__ */
|