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 __LAYER_H__
|
|
|
|
#define __LAYER_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-01-22 15:02:57 +08:00
|
|
|
#include "drawable.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "boundary.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "temp_buf.h"
|
|
|
|
#include "tile_manager.h"
|
|
|
|
|
1998-08-16 08:34:20 +08:00
|
|
|
#include "layerF.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
/* structure declarations */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
#define GIMP_TYPE_LAYER (gimp_layer_get_type ())
|
|
|
|
#define GIMP_LAYER(obj) (GTK_CHECK_CAST ((obj), GIMP_TYPE_LAYER, GimpLayer))
|
|
|
|
#define GIMP_LAYER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_LAYER, GimpLayerClass))
|
|
|
|
#define GIMP_IS_LAYER(obj) (GTK_CHECK_TYPE ((obj), GIMP_TYPE_LAYER))
|
|
|
|
#define GIMP_IS_LAYER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_LAYER))
|
1998-06-28 16:01:38 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
#define GIMP_TYPE_LAYER_MASK (gimp_layer_mask_get_type ())
|
|
|
|
#define GIMP_LAYER_MASK(obj) (GTK_CHECK_CAST ((obj), GIMP_TYPE_LAYER_MASK, GimpLayerMask))
|
|
|
|
#define GIMP_LAYER_MASK_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_LAYER_MASK, GimpLayerMaskClass))
|
|
|
|
#define GIMP_IS_LAYER_MASK(obj) (GTK_CHECK_TYPE ((obj), GIMP_TYPE_LAYER_MASK))
|
|
|
|
#define GIMP_IS_LAYER_MASK_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_LAYER_MASK))
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
GtkType gimp_layer_get_type (void);
|
1998-06-28 16:01:38 +08:00
|
|
|
GtkType gimp_layer_mask_get_type (void);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Special undo types */
|
|
|
|
|
|
|
|
struct _layer_undo
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
Layer *layer; /* the actual layer */
|
|
|
|
gint prev_position; /* former position in list */
|
|
|
|
Layer *prev_layer; /* previous active layer */
|
|
|
|
gint undo_type; /* is this a new layer undo *
|
|
|
|
* or a remove layer undo? */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _layer_mask_undo
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
Layer *layer; /* the layer */
|
|
|
|
gboolean apply_mask; /* apply mask? */
|
|
|
|
gboolean edit_mask; /* edit mask or layer? */
|
|
|
|
gboolean show_mask; /* show the mask? */
|
|
|
|
LayerMask *mask; /* the layer mask */
|
|
|
|
gint mode; /* the application mode */
|
|
|
|
gint undo_type; /* is this a new layer mask */
|
|
|
|
/* or a remove layer mask */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _fs_to_layer_undo
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
Layer *layer; /* the layer */
|
|
|
|
GimpDrawable *drawable; /* drawable of floating sel */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
/* function declarations */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
Layer * layer_new (GimpImage*, gint, gint,
|
|
|
|
GimpImageType,
|
|
|
|
gchar *, gint,
|
|
|
|
LayerModeEffects);
|
|
|
|
Layer * layer_copy (Layer *, gboolean);
|
|
|
|
Layer * layer_ref (Layer *);
|
1998-02-05 08:07:31 +08:00
|
|
|
void layer_unref (Layer *);
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
Layer * layer_from_tiles (void *, GimpDrawable *,
|
|
|
|
TileManager *,
|
|
|
|
gchar *, gint,
|
|
|
|
LayerModeEffects);
|
|
|
|
LayerMask * layer_add_mask (Layer *, LayerMask *);
|
|
|
|
LayerMask * layer_create_mask (Layer *, AddMaskType);
|
|
|
|
Layer * layer_get_ID (gint);
|
|
|
|
void layer_delete (Layer *);
|
|
|
|
void layer_removed (Layer *, gpointer);
|
|
|
|
void layer_apply_mask (Layer *, MaskApplyMode);
|
|
|
|
void layer_temporarily_translate (Layer *, gint, gint);
|
|
|
|
void layer_translate (Layer *, gint, gint);
|
|
|
|
void layer_add_alpha (Layer *);
|
|
|
|
void layer_scale (Layer *, gint, gint, gint);
|
|
|
|
void layer_resize (Layer *, gint, gint, gint, gint);
|
|
|
|
BoundSeg * layer_boundary (Layer *, gint *);
|
|
|
|
void layer_invalidate_boundary (Layer *);
|
|
|
|
gint layer_pick_correlate (Layer *, gint, gint);
|
|
|
|
|
|
|
|
LayerMask * layer_mask_new (GimpImage*, gint, gint, gchar *,
|
|
|
|
gint, guchar *);
|
1999-08-21 03:59:06 +08:00
|
|
|
LayerMask * layer_mask_copy (LayerMask *);
|
|
|
|
void layer_mask_delete (LayerMask *);
|
1999-08-22 19:45:31 +08:00
|
|
|
LayerMask * layer_mask_get_ID (gint);
|
1999-08-21 03:59:06 +08:00
|
|
|
LayerMask * layer_mask_ref (LayerMask *);
|
|
|
|
void layer_mask_unref (LayerMask *);
|
1999-08-22 19:45:31 +08:00
|
|
|
void layer_mask_set_layer (LayerMask *, Layer *);
|
1999-08-21 03:59:06 +08:00
|
|
|
Layer * layer_mask_get_layer (LayerMask *);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
/* access functions */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
void layer_set_name (Layer *, gchar *);
|
|
|
|
gchar * layer_get_name (Layer *);
|
|
|
|
guchar * layer_data (Layer *);
|
1999-08-21 03:59:06 +08:00
|
|
|
LayerMask * layer_get_mask (Layer *);
|
1999-08-22 19:45:31 +08:00
|
|
|
gboolean layer_has_alpha (Layer *);
|
|
|
|
gboolean layer_is_floating_sel (Layer *);
|
|
|
|
gboolean layer_linked (Layer *);
|
|
|
|
TempBuf * layer_preview (Layer *, gint, gint);
|
|
|
|
TempBuf * layer_mask_preview (Layer *, gint, gint);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
void layer_invalidate_previews (GimpImage *);
|
|
|
|
Tattoo layer_get_tattoo (const Layer *);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
#define drawable_layer GIMP_IS_LAYER
|
1998-06-30 23:31:32 +08:00
|
|
|
#define drawable_layer_mask GIMP_IS_LAYER_MASK
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
/* from channel.c */
|
|
|
|
|
|
|
|
void channel_layer_alpha (Channel *, Layer *);
|
|
|
|
void channel_layer_mask (Channel *, Layer *);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __LAYER_H__ */
|