2001-01-14 Michael Natterer <mitch@gimp.org> * app/channel.[ch] * app/drawable.[ch] * app/gdisplay.[ch] * app/gimpdrawable.[ch] * app/layer.[ch]: - Removed all "typedef drawable_function gimp_drawable_function". - Renamed all *_get_ID() functions to *_get_by_ID(). - For symmetry reasons, renamed drawable_ID() to gimp_drawable_get_ID(). - Removed the *_get_ID() functions of GimpLayer, GimpLayerMask and GimpChannel. * app/airbrush.c * app/bezier_select.c * app/blend.c * app/brightness_contrast.c * app/bucket_fill.c * app/by_color_select.c * app/clone.c * app/color_balance.c * app/color_picker.c * app/convert.c * app/convolve.c * app/crop.c * app/curves.c * app/desaturate.c * app/dodgeburn.c * app/edit_selection.c * app/eraser.c * app/fileops.c * app/flip_tool.c * app/floating_sel.c * app/fuzzy_select.c * app/gimage.c * app/gimage_mask.c * app/gimphistogram.c * app/gimpimage.c * app/global_edit.c * app/histogram_tool.c * app/hue_saturation.c * app/image_map.c * app/ink.c * app/invert.c * app/layer_select.c * app/layers_dialog.c * app/levels.c * app/paint_core.c * app/paintbrush.c * app/pencil.c * app/plug_in.c * app/posterize.c * app/scan_convert.c * app/smudge.c * app/text_tool.c * app/threshold.c * app/transform_core.c * app/undo.c * app/undo_history.c * app/channel_cmds.c * app/channel_ops_cmds.c * app/color_cmds.c * app/display_cmds.c * app/drawable_cmds.c * app/edit_cmds.c * app/floating_sel_cmds.c * app/image_cmds.c * app/layer_cmds.c * app/parasite_cmds.c * app/selection_cmds.c * app/text_tool_cmds.c * app/tools_cmds.c * libgimp/gimpdrawable_pdb.c * tools/pdbgen/pdb.pl * tools/pdbgen/pdb/channel_ops.pdb * tools/pdbgen/pdb/color.pdb * tools/pdbgen/pdb/drawable.pdb * tools/pdbgen/pdb/edit.pdb * tools/pdbgen/pdb/image.pdb * tools/pdbgen/pdb/selection.pdb * tools/pdbgen/pdb/tools.pdb: changed accordingly.
215 lines
8.6 KiB
C
215 lines
8.6 KiB
C
/* 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __LAYER_H__
|
|
#define __LAYER_H__
|
|
|
|
|
|
#include "channel.h"
|
|
#include "gimpdrawable.h"
|
|
|
|
|
|
#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))
|
|
|
|
#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))
|
|
|
|
|
|
typedef struct _GimpLayerClass GimpLayerClass;
|
|
typedef struct _GimpLayerMaskClass GimpLayerMaskClass;
|
|
|
|
struct _GimpLayer
|
|
{
|
|
GimpDrawable parent_instance;
|
|
|
|
gboolean linked; /* control linkage */
|
|
gboolean preserve_trans; /* preserve transparency */
|
|
|
|
LayerMask *mask; /* possible layer mask */
|
|
gint apply_mask; /* controls mask application */
|
|
gboolean edit_mask; /* edit mask or layer? */
|
|
gboolean show_mask; /* show mask or layer? */
|
|
|
|
gint opacity; /* layer opacity */
|
|
LayerModeEffects mode; /* layer combination mode */
|
|
|
|
/* Floating selections */
|
|
struct
|
|
{
|
|
TileManager *backing_store; /* for obscured regions */
|
|
GimpDrawable *drawable; /* floating sel is attached to */
|
|
gboolean initial; /* is fs composited yet? */
|
|
|
|
gboolean boundary_known; /* is the current boundary valid */
|
|
BoundSeg *segs; /* boundary of floating sel */
|
|
gint num_segs; /* number of segs in boundary */
|
|
} fs;
|
|
};
|
|
|
|
struct _GimpLayerClass
|
|
{
|
|
GimpDrawableClass parent_class;
|
|
};
|
|
|
|
struct _GimpLayerMask
|
|
{
|
|
GimpChannel parent_instance;
|
|
|
|
Layer *layer;
|
|
};
|
|
|
|
struct _GimpLayerMaskClass
|
|
{
|
|
GimpChannelClass parent_class;
|
|
};
|
|
|
|
/* Special undo types */
|
|
|
|
struct _layer_undo
|
|
{
|
|
Layer *layer; /* the actual layer */
|
|
gint prev_position; /* former position in list */
|
|
Layer *prev_layer; /* previous active layer */
|
|
};
|
|
|
|
struct _layer_mask_undo
|
|
{
|
|
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 */
|
|
};
|
|
|
|
struct _fs_to_layer_undo
|
|
{
|
|
Layer *layer; /* the layer */
|
|
GimpDrawable *drawable; /* drawable of floating sel */
|
|
};
|
|
|
|
/* function declarations */
|
|
|
|
GtkType gimp_layer_get_type (void);
|
|
|
|
Layer * layer_new (GimpImage *gimage,
|
|
gint width,
|
|
gint height,
|
|
GimpImageType type,
|
|
const gchar *name,
|
|
gint opacity,
|
|
LayerModeEffects mode);
|
|
Layer * layer_copy (Layer *layer,
|
|
gboolean add_alpha);
|
|
|
|
Layer * layer_new_from_tiles (GimpImage *gimage,
|
|
GimpImageType layer_type,
|
|
TileManager *tiles,
|
|
gchar *name,
|
|
gint opacity,
|
|
LayerModeEffects mode);
|
|
gboolean layer_check_scaling (Layer *layer,
|
|
gint new_width,
|
|
gint new_height);
|
|
LayerMask * layer_create_mask (Layer *layer,
|
|
AddMaskType add_mask_type);
|
|
LayerMask * layer_add_mask (Layer *layer,
|
|
LayerMask *mask);
|
|
void layer_delete (Layer *layer);
|
|
void layer_apply_mask (Layer *layer,
|
|
MaskApplyMode mode);
|
|
void layer_translate (Layer *layer,
|
|
gint off_x,
|
|
gint off_y);
|
|
void layer_add_alpha (Layer *layer);
|
|
gboolean layer_scale_by_factors (Layer *layer,
|
|
gdouble w_factor,
|
|
gdouble h_factor);
|
|
void layer_scale (Layer *layer,
|
|
gint new_width,
|
|
gint new_height,
|
|
gboolean local_origin);
|
|
void layer_resize (Layer *layer,
|
|
gint new_width,
|
|
gint new_height,
|
|
gint offx,
|
|
gint offy);
|
|
void layer_resize_to_image (Layer *layer);
|
|
BoundSeg * layer_boundary (Layer *layer,
|
|
gint *num_segs);
|
|
void layer_invalidate_boundary (Layer *layer);
|
|
gint layer_pick_correlate (Layer *layer,
|
|
gint x,
|
|
gint y);
|
|
|
|
|
|
GtkType gimp_layer_mask_get_type (void);
|
|
|
|
LayerMask * layer_mask_new (GimpImage *gimage,
|
|
gint width,
|
|
gint height,
|
|
gchar *name,
|
|
gint opacity,
|
|
guchar *col);
|
|
LayerMask * layer_mask_copy (LayerMask *layer_mask);
|
|
void layer_mask_delete (LayerMask *layer_mask);
|
|
LayerMask * layer_mask_ref (LayerMask *layer_mask);
|
|
void layer_mask_unref (LayerMask *layer_mask);
|
|
void layer_mask_set_layer (LayerMask *layer_mask,
|
|
Layer *layer);
|
|
Layer * layer_mask_get_layer (LayerMask *layer_mask);
|
|
|
|
/* access functions */
|
|
|
|
void layer_set_name (Layer *layer,
|
|
const gchar *name);
|
|
const gchar * layer_get_name (const Layer *layer);
|
|
guchar * layer_data (Layer *layer);
|
|
LayerMask * layer_get_mask (Layer *layer);
|
|
gboolean layer_has_alpha (Layer *layer);
|
|
gboolean layer_is_floating_sel (Layer *layer);
|
|
gboolean layer_linked (Layer *layer);
|
|
TempBuf * layer_preview (Layer *layer,
|
|
gint width,
|
|
gint height);
|
|
TempBuf * layer_mask_preview (Layer *layer,
|
|
gint width,
|
|
gint height);
|
|
|
|
void layer_invalidate_previews (GimpImage *gimage);
|
|
Tattoo layer_get_tattoo (const Layer *layer);
|
|
void layer_set_tattoo (Layer *layer,
|
|
Tattoo value);
|
|
|
|
#define gimp_drawable_layer GIMP_IS_LAYER
|
|
#define gimp_drawable_layer_mask GIMP_IS_LAYER_MASK
|
|
|
|
void channel_layer_alpha (Channel *mask,
|
|
Layer *layer);
|
|
/* from channel.c */
|
|
void channel_layer_mask (Channel *mask,
|
|
Layer *layer);
|
|
|
|
#endif /* __LAYER_H__ */
|