1998-06-28 18:39:58 +08:00
|
|
|
#ifndef __GIMPIMAGE_H__
|
|
|
|
#define __GIMPIMAGE_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 "apptypes.h"
|
1998-09-01 01:31:19 +08:00
|
|
|
#include "procedural_db.h"
|
1998-06-28 18:39:58 +08:00
|
|
|
#include "gimpimageF.h"
|
|
|
|
#include "boundary.h"
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "layer.h"
|
1998-10-14 10:54:02 +08:00
|
|
|
#include <libgimp/parasiteF.h>
|
Add default to Cancel button, remove unset GTK_RECEIVES_DEFAULT from
Sat Feb 20 16:12:33 CST 1999 Shawn T. Amundson <amundson@gimp.org>
* app/tips_dialog.c: Add default to Cancel button, remove
unset GTK_RECEIVES_DEFAULT from prev/next buttons (they
are like toolbar buttons), changed abreviated prev to
previous, prev/next button are now same size, cancel button
is in a button box. Added vboxes where necessary to prevent
prev/next and check button from filling vertically.
* app/app_procs.c: when splashscreen dialog is larger than the
logo, (due to huge font), center logo.
* app/file_new_dialog.c: patch from Marco Lamb <lm@geocities.com>
disallows resizing, changes vertical expanding of widgets to
not occur
* app/palette.c: patch from Marco Lamb <lm@geocities.com>. Makes
+/- buttons for zoom pixmaps (eventually, these can be replaced
with a magnifying glass with a little +/- I think), so that they
no longer expand as they did before. I modified his patch so it
did not create a misused toolbar. I did some other stuff here too,
moved Close button to the left, made it the window's default,
and unset GTK_RECEIVES_DEFAULT off of the non-bottom buttons.
* app/actionarea.c: another patch from Marco Lamb <lm@geocities.com>.
This one changes buttons to be put in a button box which is right
justified. If we decide later that spread is better, we can
change this easy enough.
* app/tools/zoom_in.xpm, app/tools/zoom_out.xpm: + and - graphics.
* libgimp/gimpunit.h
libgimp/gimpunit.c: New files from Michael Natterer
<mitschel@cs.tu-berlin.de>, gimp_unit_* routines.
* app/gimage.h
app/gimpimage.h
app/gimpimage.c
app/gimpimageP.h
app/xcf.c: Patches from Michael Natterer <mitschel@cs.tu-berlin.de>,
which keep a unit assocated with an image.
1999-02-21 10:08:15 +08:00
|
|
|
#include <libgimp/gimpunit.h>
|
1998-10-27 17:26:38 +08:00
|
|
|
#include "plug_in.h"
|
1998-06-28 18:39:58 +08:00
|
|
|
#include "temp_buf.h"
|
|
|
|
#include "tile_manager.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "pathsP.h"
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
|
1998-06-30 09:14:36 +08:00
|
|
|
#define GIMP_TYPE_IMAGE gimp_image_get_type()
|
|
|
|
|
|
|
|
#define GIMP_IMAGE(obj) GTK_CHECK_CAST (obj, GIMP_TYPE_IMAGE, GimpImage)
|
1998-06-28 18:39:58 +08:00
|
|
|
|
1999-01-08 03:53:05 +08:00
|
|
|
#define GIMP_IS_IMAGE(obj) GTK_CHECK_TYPE (obj, GIMP_TYPE_IMAGE)
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
#define TYPE_HAS_ALPHA(t) ((t)==RGBA_GIMAGE || (t)==GRAYA_GIMAGE || (t)==INDEXEDA_GIMAGE)
|
|
|
|
|
|
|
|
#define GRAY_PIX 0
|
|
|
|
#define ALPHA_G_PIX 1
|
|
|
|
#define RED_PIX 0
|
|
|
|
#define GREEN_PIX 1
|
|
|
|
#define BLUE_PIX 2
|
|
|
|
#define ALPHA_PIX 3
|
|
|
|
#define INDEXED_PIX 0
|
|
|
|
#define ALPHA_I_PIX 1
|
|
|
|
|
|
|
|
#define COLORMAP_SIZE 768
|
|
|
|
|
1999-07-30 08:20:50 +08:00
|
|
|
typedef enum {
|
1999-07-29 07:00:08 +08:00
|
|
|
ORIENTATION_UNKNOWN,
|
|
|
|
ORIENTATION_HORIZONTAL,
|
|
|
|
ORIENTATION_VERTICAL
|
1999-07-30 13:26:36 +08:00
|
|
|
} InternalOrientationType;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
HORIZONTAL,
|
|
|
|
VERTICAL,
|
|
|
|
UNKNOWN
|
1999-07-29 07:00:08 +08:00
|
|
|
} OrientationType;
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
1999-04-27 12:57:59 +08:00
|
|
|
RED_CHANNEL,
|
|
|
|
GREEN_CHANNEL,
|
|
|
|
BLUE_CHANNEL,
|
|
|
|
GRAY_CHANNEL,
|
|
|
|
INDEXED_CHANNEL,
|
|
|
|
AUXILLARY_CHANNEL
|
1998-06-28 18:39:58 +08:00
|
|
|
} ChannelType;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
1999-04-27 12:57:59 +08:00
|
|
|
EXPAND_AS_NECESSARY,
|
|
|
|
CLIP_TO_IMAGE,
|
|
|
|
CLIP_TO_BOTTOM_LAYER,
|
|
|
|
FLATTEN_IMAGE
|
1998-06-28 18:39:58 +08:00
|
|
|
} MergeType;
|
|
|
|
|
|
|
|
|
1998-06-29 08:24:44 +08:00
|
|
|
/* Ugly! Move this someplace else! Prolly to gdisplay.. */
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
struct _Guide
|
|
|
|
{
|
|
|
|
int ref_count;
|
|
|
|
int position;
|
|
|
|
int orientation;
|
1998-09-01 01:31:19 +08:00
|
|
|
guint32 guide_ID;
|
1998-06-28 18:39:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpImageRepaintArg{
|
|
|
|
Layer* layer;
|
|
|
|
guint x;
|
|
|
|
guint y;
|
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
} GimpImageRepaintArg;
|
|
|
|
|
|
|
|
|
|
|
|
GtkType gimp_image_get_type(void);
|
|
|
|
|
|
|
|
|
|
|
|
/* function declarations */
|
|
|
|
|
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
|
|
|
GimpImage * gimp_image_new (int, int,
|
|
|
|
GimpImageBaseType);
|
1998-06-28 18:39:58 +08:00
|
|
|
void gimp_image_set_filename (GimpImage *, char *);
|
1999-05-23 01:56:35 +08:00
|
|
|
void gimp_image_set_resolution (GimpImage *,
|
|
|
|
double, double);
|
1998-11-15 07:28:47 +08:00
|
|
|
void gimp_image_get_resolution (GimpImage *,
|
1999-05-23 01:56:35 +08:00
|
|
|
double *,
|
|
|
|
double *);
|
Add default to Cancel button, remove unset GTK_RECEIVES_DEFAULT from
Sat Feb 20 16:12:33 CST 1999 Shawn T. Amundson <amundson@gimp.org>
* app/tips_dialog.c: Add default to Cancel button, remove
unset GTK_RECEIVES_DEFAULT from prev/next buttons (they
are like toolbar buttons), changed abreviated prev to
previous, prev/next button are now same size, cancel button
is in a button box. Added vboxes where necessary to prevent
prev/next and check button from filling vertically.
* app/app_procs.c: when splashscreen dialog is larger than the
logo, (due to huge font), center logo.
* app/file_new_dialog.c: patch from Marco Lamb <lm@geocities.com>
disallows resizing, changes vertical expanding of widgets to
not occur
* app/palette.c: patch from Marco Lamb <lm@geocities.com>. Makes
+/- buttons for zoom pixmaps (eventually, these can be replaced
with a magnifying glass with a little +/- I think), so that they
no longer expand as they did before. I modified his patch so it
did not create a misused toolbar. I did some other stuff here too,
moved Close button to the left, made it the window's default,
and unset GTK_RECEIVES_DEFAULT off of the non-bottom buttons.
* app/actionarea.c: another patch from Marco Lamb <lm@geocities.com>.
This one changes buttons to be put in a button box which is right
justified. If we decide later that spread is better, we can
change this easy enough.
* app/tools/zoom_in.xpm, app/tools/zoom_out.xpm: + and - graphics.
* libgimp/gimpunit.h
libgimp/gimpunit.c: New files from Michael Natterer
<mitschel@cs.tu-berlin.de>, gimp_unit_* routines.
* app/gimage.h
app/gimpimage.h
app/gimpimage.c
app/gimpimageP.h
app/xcf.c: Patches from Michael Natterer <mitschel@cs.tu-berlin.de>,
which keep a unit assocated with an image.
1999-02-21 10:08:15 +08:00
|
|
|
void gimp_image_set_unit (GimpImage *, GUnit);
|
|
|
|
GUnit gimp_image_get_unit (GimpImage *);
|
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 gimp_image_set_save_proc (GimpImage *,
|
|
|
|
PlugInProcDef *);
|
|
|
|
PlugInProcDef * gimp_image_get_save_proc (GimpImage *);
|
1998-06-28 18:39:58 +08:00
|
|
|
void gimp_image_resize (GimpImage *, int, int, int, int);
|
|
|
|
void gimp_image_scale (GimpImage *, int, int);
|
Add default to Cancel button, remove unset GTK_RECEIVES_DEFAULT from
Sat Feb 20 16:12:33 CST 1999 Shawn T. Amundson <amundson@gimp.org>
* app/tips_dialog.c: Add default to Cancel button, remove
unset GTK_RECEIVES_DEFAULT from prev/next buttons (they
are like toolbar buttons), changed abreviated prev to
previous, prev/next button are now same size, cancel button
is in a button box. Added vboxes where necessary to prevent
prev/next and check button from filling vertically.
* app/app_procs.c: when splashscreen dialog is larger than the
logo, (due to huge font), center logo.
* app/file_new_dialog.c: patch from Marco Lamb <lm@geocities.com>
disallows resizing, changes vertical expanding of widgets to
not occur
* app/palette.c: patch from Marco Lamb <lm@geocities.com>. Makes
+/- buttons for zoom pixmaps (eventually, these can be replaced
with a magnifying glass with a little +/- I think), so that they
no longer expand as they did before. I modified his patch so it
did not create a misused toolbar. I did some other stuff here too,
moved Close button to the left, made it the window's default,
and unset GTK_RECEIVES_DEFAULT off of the non-bottom buttons.
* app/actionarea.c: another patch from Marco Lamb <lm@geocities.com>.
This one changes buttons to be put in a button box which is right
justified. If we decide later that spread is better, we can
change this easy enough.
* app/tools/zoom_in.xpm, app/tools/zoom_out.xpm: + and - graphics.
* libgimp/gimpunit.h
libgimp/gimpunit.c: New files from Michael Natterer
<mitschel@cs.tu-berlin.de>, gimp_unit_* routines.
* app/gimage.h
app/gimpimage.h
app/gimpimage.c
app/gimpimageP.h
app/xcf.c: Patches from Michael Natterer <mitschel@cs.tu-berlin.de>,
which keep a unit assocated with an image.
1999-02-21 10:08:15 +08:00
|
|
|
GimpImage * gimp_image_get_named (char *);
|
|
|
|
GimpImage * gimp_image_get_ID (int);
|
1998-06-28 18:39:58 +08:00
|
|
|
TileManager * gimp_image_shadow (GimpImage *, int, int, int);
|
|
|
|
void gimp_image_free_shadow (GimpImage *);
|
1998-10-30 18:21:33 +08:00
|
|
|
void gimp_image_apply_image (GimpImage *, GimpDrawable *,
|
|
|
|
PixelRegion *, int,
|
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
|
|
|
int,
|
|
|
|
LayerModeEffects,
|
1998-10-30 18:21:33 +08:00
|
|
|
TileManager *, int, int);
|
|
|
|
void gimp_image_replace_image (GimpImage *, GimpDrawable *,
|
|
|
|
PixelRegion *, int, int,
|
|
|
|
PixelRegion *, int, int);
|
|
|
|
void gimp_image_get_foreground (GimpImage *, GimpDrawable *,
|
|
|
|
unsigned char *);
|
|
|
|
void gimp_image_get_background (GimpImage *, GimpDrawable *,
|
|
|
|
unsigned char *);
|
1999-02-16 16:53:54 +08:00
|
|
|
unsigned char * gimp_image_get_color_at (GimpImage *, int x, int y);
|
|
|
|
|
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 gimp_image_get_color (GimpImage *,
|
|
|
|
GimpImageType,
|
1998-10-30 18:21:33 +08:00
|
|
|
unsigned char *,
|
|
|
|
unsigned char *);
|
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 gimp_image_transform_color (GimpImage *,
|
|
|
|
GimpDrawable *,
|
|
|
|
unsigned char *,
|
1998-10-30 18:21:33 +08:00
|
|
|
unsigned char *,
|
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
|
|
|
GimpImageBaseType);
|
1998-06-28 18:39:58 +08:00
|
|
|
Guide* gimp_image_add_hguide (GimpImage *);
|
|
|
|
Guide* gimp_image_add_vguide (GimpImage *);
|
|
|
|
void gimp_image_add_guide (GimpImage *, Guide *);
|
|
|
|
void gimp_image_remove_guide (GimpImage *, Guide *);
|
|
|
|
void gimp_image_delete_guide (GimpImage *, Guide *);
|
|
|
|
|
1998-10-08 16:15:21 +08:00
|
|
|
Parasite * gimp_image_find_parasite (const GimpImage *,
|
1998-10-14 10:54:02 +08:00
|
|
|
const char *name);
|
1999-02-14 02:19:44 +08:00
|
|
|
char ** gimp_image_parasite_list (GimpImage *image,
|
|
|
|
gint *count);
|
1998-10-30 18:21:33 +08:00
|
|
|
void gimp_image_attach_parasite (GimpImage *, Parasite *);
|
1998-10-14 10:54:02 +08:00
|
|
|
void gimp_image_detach_parasite (GimpImage *, const char *);
|
|
|
|
|
1998-10-30 18:21:33 +08:00
|
|
|
Tattoo gimp_image_get_new_tattoo (GimpImage *);
|
1998-10-14 10:54:02 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
void gimp_image_set_paths (GimpImage *,PathsList *);
|
|
|
|
PathsList * gimp_image_get_paths (GimpImage *);
|
|
|
|
|
1999-01-08 03:53:05 +08:00
|
|
|
/* Temporary hack till colormap manipulation is encapsulated in functions.
|
|
|
|
Call this whenever you modify an image's colormap. The ncol argument
|
|
|
|
specifies which color has changed, or negative if there's a bigger change.
|
|
|
|
Currently, use this also when the image's base type is changed to/from
|
|
|
|
indexed. */
|
|
|
|
|
|
|
|
void gimp_image_colormap_changed (GimpImage * image,
|
|
|
|
gint ncol);
|
|
|
|
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
/* layer/channel functions */
|
|
|
|
|
|
|
|
int gimp_image_get_layer_index (GimpImage *, Layer *);
|
|
|
|
int gimp_image_get_channel_index (GimpImage *, Channel *);
|
|
|
|
Layer * gimp_image_get_active_layer (GimpImage *);
|
|
|
|
Channel * gimp_image_get_active_channel (GimpImage *);
|
1998-10-30 18:21:33 +08:00
|
|
|
Layer * gimp_image_get_layer_by_tattoo (GimpImage *, Tattoo);
|
|
|
|
Channel * gimp_image_get_channel_by_tattoo (GimpImage *, Tattoo);
|
1999-07-07 11:18:54 +08:00
|
|
|
Channel * gimp_image_get_channel_by_name (GimpImage *, char *);
|
1998-06-28 18:39:58 +08:00
|
|
|
Channel * gimp_image_get_mask (GimpImage *);
|
|
|
|
int gimp_image_get_component_active (GimpImage *, ChannelType);
|
|
|
|
int gimp_image_get_component_visible (GimpImage *, ChannelType);
|
|
|
|
int gimp_image_layer_boundary (GimpImage *, BoundSeg **, int *);
|
|
|
|
Layer * gimp_image_set_active_layer (GimpImage *, Layer *);
|
|
|
|
Channel * gimp_image_set_active_channel (GimpImage *, Channel *);
|
|
|
|
Channel * gimp_image_unset_active_channel (GimpImage *);
|
|
|
|
void gimp_image_set_component_active (GimpImage *, ChannelType, int);
|
|
|
|
void gimp_image_set_component_visible (GimpImage *, ChannelType, int);
|
|
|
|
Layer * gimp_image_pick_correlate_layer (GimpImage *, int, int);
|
|
|
|
void gimp_image_set_layer_mask_apply (GimpImage *, int);
|
|
|
|
void gimp_image_set_layer_mask_edit (GimpImage *, Layer *, int);
|
|
|
|
void gimp_image_set_layer_mask_show (GimpImage *, int);
|
|
|
|
Layer * gimp_image_raise_layer (GimpImage *, Layer *);
|
|
|
|
Layer * gimp_image_lower_layer (GimpImage *, Layer *);
|
1998-11-16 01:02:59 +08:00
|
|
|
Layer * gimp_image_raise_layer_to_top (GimpImage *, Layer *);
|
|
|
|
Layer * gimp_image_lower_layer_to_bottom (GimpImage *, Layer *);
|
1999-07-27 10:41:34 +08:00
|
|
|
Layer * gimp_image_position_layer (GimpImage *, Layer *, gint);
|
1998-06-28 18:39:58 +08:00
|
|
|
Layer * gimp_image_merge_visible_layers (GimpImage *, MergeType);
|
1998-09-01 05:41:43 +08:00
|
|
|
Layer * gimp_image_merge_down (GimpImage *, Layer *, MergeType);
|
1998-06-28 18:39:58 +08:00
|
|
|
Layer * gimp_image_flatten (GimpImage *);
|
|
|
|
Layer * gimp_image_merge_layers (GimpImage *, GSList *, MergeType);
|
|
|
|
Layer * gimp_image_add_layer (GimpImage *, Layer *, int);
|
|
|
|
Layer * gimp_image_remove_layer (GimpImage *, Layer *);
|
|
|
|
LayerMask * gimp_image_add_layer_mask (GimpImage *, Layer *, LayerMask *);
|
|
|
|
Channel * gimp_image_remove_layer_mask (GimpImage *, Layer *, int);
|
|
|
|
Channel * gimp_image_raise_channel (GimpImage *, Channel *);
|
|
|
|
Channel * gimp_image_lower_channel (GimpImage *, Channel *);
|
|
|
|
Channel * gimp_image_add_channel (GimpImage *, Channel *, int);
|
|
|
|
Channel * gimp_image_remove_channel (GimpImage *, Channel *);
|
1999-01-19 06:59:51 +08:00
|
|
|
void gimp_image_construct (GimpImage *, int, int, int, int, gboolean);
|
1999-02-07 23:16:45 +08:00
|
|
|
void gimp_image_invalidate_without_render (GimpImage *, int, int,
|
|
|
|
int, int, int,
|
|
|
|
int, int, int);
|
1998-06-28 18:39:58 +08:00
|
|
|
void gimp_image_invalidate (GimpImage *, int, int, int, int, int, int, int, int);
|
1998-08-16 03:17:36 +08:00
|
|
|
void gimp_image_validate (TileManager *, Tile *);
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
/* Access functions */
|
|
|
|
|
|
|
|
int gimp_image_is_empty (GimpImage *);
|
|
|
|
GimpDrawable * gimp_image_active_drawable (GimpImage *);
|
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
|
|
|
GimpImageBaseType gimp_image_base_type (GimpImage *);
|
|
|
|
GimpImageType gimp_image_base_type_with_alpha (GimpImage *);
|
1998-06-28 18:39:58 +08:00
|
|
|
char * gimp_image_filename (GimpImage *);
|
|
|
|
int gimp_image_enable_undo (GimpImage *);
|
|
|
|
int gimp_image_disable_undo (GimpImage *);
|
|
|
|
int gimp_image_dirty (GimpImage *);
|
|
|
|
int gimp_image_clean (GimpImage *);
|
|
|
|
void gimp_image_clean_all (GimpImage *);
|
|
|
|
Layer * gimp_image_floating_sel (GimpImage *);
|
|
|
|
unsigned char * gimp_image_cmap (GimpImage *);
|
|
|
|
|
|
|
|
|
|
|
|
/* projection access functions */
|
|
|
|
|
|
|
|
TileManager * gimp_image_projection (GimpImage *);
|
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
|
|
|
GimpImageType gimp_image_projection_type (GimpImage *);
|
1998-06-28 18:39:58 +08:00
|
|
|
int gimp_image_projection_bytes (GimpImage *);
|
|
|
|
int gimp_image_projection_opacity (GimpImage *);
|
|
|
|
void gimp_image_projection_realloc (GimpImage *);
|
|
|
|
|
|
|
|
|
|
|
|
/* composite access functions */
|
|
|
|
|
|
|
|
TileManager * gimp_image_composite (GimpImage *);
|
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
|
|
|
GimpImageType gimp_image_composite_type (GimpImage *);
|
1998-06-28 18:39:58 +08:00
|
|
|
int gimp_image_composite_bytes (GimpImage *);
|
|
|
|
TempBuf * gimp_image_composite_preview (GimpImage *, ChannelType, int, int);
|
|
|
|
int gimp_image_preview_valid (GimpImage *, ChannelType);
|
|
|
|
void gimp_image_invalidate_preview (GimpImage *);
|
|
|
|
|
|
|
|
void gimp_image_invalidate_previews (void);
|
1998-12-19 08:00:06 +08:00
|
|
|
TempBuf * gimp_image_construct_composite_preview (GimpImage *gimage, int width, int height);
|
1998-06-28 18:39:58 +08:00
|
|
|
|
|
|
|
#endif
|