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
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#ifndef __LAYER_H__
|
|
|
|
#define __LAYER_H__
|
|
|
|
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "channel.h"
|
|
|
|
#include "gimpdrawable.h"
|
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
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2000-12-31 13:31:43 +08:00
|
|
|
typedef struct _GimpLayerClass GimpLayerClass;
|
|
|
|
typedef struct _GimpLayerMaskClass GimpLayerMaskClass;
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
struct _GimpLayer
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpDrawable parent_instance;
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-14 11:55:56 +08:00
|
|
|
gboolean linked; /* control linkage */
|
|
|
|
gboolean preserve_trans; /* preserve transparency */
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-14 11:55:56 +08:00
|
|
|
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? */
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-14 11:55:56 +08:00
|
|
|
gint opacity; /* layer opacity */
|
|
|
|
LayerModeEffects mode; /* layer combination mode */
|
2000-12-29 23:22:01 +08:00
|
|
|
|
|
|
|
/* Floating selections */
|
|
|
|
struct
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
TileManager *backing_store; /* for obscured regions */
|
|
|
|
GimpDrawable *drawable; /* floating sel is attached to */
|
|
|
|
gboolean initial; /* is fs composited yet? */
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-14 11:55:56 +08:00
|
|
|
gboolean boundary_known; /* is the current boundary valid */
|
|
|
|
BoundSeg *segs; /* boundary of floating sel */
|
|
|
|
gint num_segs; /* number of segs in boundary */
|
2000-12-29 23:22:01 +08:00
|
|
|
} fs;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpLayerClass
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpDrawableClass parent_class;
|
2000-12-29 23:22:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpLayerMask
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpChannel parent_instance;
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-14 11:55:56 +08:00
|
|
|
Layer *layer;
|
2000-12-29 23:22:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpLayerMaskClass
|
|
|
|
{
|
2001-01-14 11:55:56 +08:00
|
|
|
GimpChannelClass parent_class;
|
2000-12-29 23:22:01 +08:00
|
|
|
};
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Special undo types */
|
|
|
|
|
|
|
|
struct _layer_undo
|
|
|
|
{
|
Honest, guv, it's not a feature - it's a tightly integrated package of
Mon Sep 20 12:51:30 EDT 1999 Austin Donnelly <austin@gimp.org>
Honest, guv, it's not a feature - it's a tightly integrated
package of undo system cleanups and fixes.
NEW FILES:
* app/undo_history.c: window showing recent undo (and redo) steps
available.
* app/undo_types.h: broken out of undo.h to fix circular includes.
MODIFIED FILES:
* app/Makefile.am: compile undo_history.c
* app/channel.h: use enum for channel undo type, not just magic
numbers.
* app/layer.h: same for layer undos.
* app/commands.c: edit_show_undo_history_cmd_callback() function to
pull up undo history window.
* app/commands.h: prototype for above.
* app/gdisplay.c: make undo / redo menu items sensitive according
to whether they would do anything. Would be easy to change
the text to say what would be undone/redone, but I don't know
the GTK.
* app/gimpimage.c: new signal emitted by gimage:
UNDO_EVENT. gimp_image_undo_event() function to emit it.
* app/gimpimage.h: prototype for above.
* app/gimpimageP.h: pushing_undo_group member is now an undo_type,
not an int. Keep undo history widget here too (if created).
* app/menus.c: add "Edit/Undo history..." to image menu.
* app/undo.c: new types: enums undo_type and undo_state rather than
ints and magic numbers. All undo_pop_* and undo_free_*
functions made static. New static function
undo_type_to_name(). Issue undo event signals on various
important events (eg undo pushed, undo popped etc).
undo_push() now takes a "dirties_image" arg to say whether
image should be dirtied. Layer moves now dirty the image. A
couple of g_return_if_fails () on undo_pop and undo_redo to
assert we're not in the middle of an undo group.
undo_get_{undo,redo}_name() to peek at names of top items on
undo and redo stacks resp. undo_map_over_{undo,redo}_stack()
to run a function for each item or group on stack. Layer and
channel undos use symbolic names rather than 0 or 1. Array
mapping undo types to names.
* app/undo.h: split out undo types to undo_types.h. Prototypes
for functions described above. undo_event_t enum.
undo_history_new() prototype lives here too.
Random other fixes:
* app/gimpdrawable.c
* app/image_render.c: default labels in switches to keep egcs happy.
* app/nav_window.c: some fixes to (sort of) cope with image res !=
screen res. Still needs work to handle non-square pixels
properly.
* app/paths_dialog.c: bad idea to call gimp_image_dirty()
directly. Even though it's currently commented out.
1999-09-21 01:15:20 +08:00
|
|
|
Layer *layer; /* the actual layer */
|
|
|
|
gint prev_position; /* former position in list */
|
|
|
|
Layer *prev_layer; /* previous active layer */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _layer_mask_undo
|
|
|
|
{
|
Honest, guv, it's not a feature - it's a tightly integrated package of
Mon Sep 20 12:51:30 EDT 1999 Austin Donnelly <austin@gimp.org>
Honest, guv, it's not a feature - it's a tightly integrated
package of undo system cleanups and fixes.
NEW FILES:
* app/undo_history.c: window showing recent undo (and redo) steps
available.
* app/undo_types.h: broken out of undo.h to fix circular includes.
MODIFIED FILES:
* app/Makefile.am: compile undo_history.c
* app/channel.h: use enum for channel undo type, not just magic
numbers.
* app/layer.h: same for layer undos.
* app/commands.c: edit_show_undo_history_cmd_callback() function to
pull up undo history window.
* app/commands.h: prototype for above.
* app/gdisplay.c: make undo / redo menu items sensitive according
to whether they would do anything. Would be easy to change
the text to say what would be undone/redone, but I don't know
the GTK.
* app/gimpimage.c: new signal emitted by gimage:
UNDO_EVENT. gimp_image_undo_event() function to emit it.
* app/gimpimage.h: prototype for above.
* app/gimpimageP.h: pushing_undo_group member is now an undo_type,
not an int. Keep undo history widget here too (if created).
* app/menus.c: add "Edit/Undo history..." to image menu.
* app/undo.c: new types: enums undo_type and undo_state rather than
ints and magic numbers. All undo_pop_* and undo_free_*
functions made static. New static function
undo_type_to_name(). Issue undo event signals on various
important events (eg undo pushed, undo popped etc).
undo_push() now takes a "dirties_image" arg to say whether
image should be dirtied. Layer moves now dirty the image. A
couple of g_return_if_fails () on undo_pop and undo_redo to
assert we're not in the middle of an undo group.
undo_get_{undo,redo}_name() to peek at names of top items on
undo and redo stacks resp. undo_map_over_{undo,redo}_stack()
to run a function for each item or group on stack. Layer and
channel undos use symbolic names rather than 0 or 1. Array
mapping undo types to names.
* app/undo.h: split out undo types to undo_types.h. Prototypes
for functions described above. undo_event_t enum.
undo_history_new() prototype lives here too.
Random other fixes:
* app/gimpdrawable.c
* app/image_render.c: default labels in switches to keep egcs happy.
* app/nav_window.c: some fixes to (sort of) cope with image res !=
screen res. Still needs work to handle non-square pixels
properly.
* app/paths_dialog.c: bad idea to call gimp_image_dirty()
directly. Even though it's currently commented out.
1999-09-21 01:15:20 +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 */
|
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
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
GtkType gimp_layer_get_type (void);
|
|
|
|
|
2000-12-29 00:19:55 +08:00
|
|
|
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,
|
2000-05-13 01:07:54 +08:00
|
|
|
GimpImageType layer_type,
|
|
|
|
TileManager *tiles,
|
|
|
|
gchar *name,
|
|
|
|
gint opacity,
|
|
|
|
LayerModeEffects mode);
|
|
|
|
gboolean layer_check_scaling (Layer *layer,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height);
|
2000-12-29 00:19:55 +08:00
|
|
|
LayerMask * layer_create_mask (Layer *layer,
|
2000-05-13 01:07:54 +08:00
|
|
|
AddMaskType add_mask_type);
|
2000-12-29 00:19:55 +08:00
|
|
|
LayerMask * layer_add_mask (Layer *layer,
|
2000-05-13 01:07:54 +08:00
|
|
|
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);
|
2000-12-29 00:19:55 +08:00
|
|
|
BoundSeg * layer_boundary (Layer *layer,
|
2000-05-13 01:07:54 +08:00
|
|
|
gint *num_segs);
|
|
|
|
void layer_invalidate_boundary (Layer *layer);
|
|
|
|
gint layer_pick_correlate (Layer *layer,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
|
|
|
GtkType gimp_layer_mask_get_type (void);
|
|
|
|
|
2000-12-29 00:19:55 +08:00
|
|
|
LayerMask * layer_mask_new (GimpImage *gimage,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
2001-01-15 12:37:01 +08:00
|
|
|
const gchar *name,
|
|
|
|
const GimpRGB *color);
|
2000-12-29 00:19:55 +08:00
|
|
|
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);
|
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
|
|
|
|
2000-12-29 00:19:55 +08:00
|
|
|
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);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
2001-01-15 05:11:52 +08:00
|
|
|
#define gimp_drawable_layer GIMP_IS_LAYER
|
|
|
|
#define gimp_drawable_layer_mask GIMP_IS_LAYER_MASK
|
1998-01-22 15:02:57 +08:00
|
|
|
|
2000-05-13 01:07:54 +08:00
|
|
|
void channel_layer_alpha (Channel *mask,
|
|
|
|
Layer *layer);
|
1999-08-22 19:45:31 +08:00
|
|
|
/* from channel.c */
|
2000-05-13 01:07:54 +08:00
|
|
|
void channel_layer_mask (Channel *mask,
|
|
|
|
Layer *layer);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __LAYER_H__ */
|