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 __CHANNEL_H__
|
|
|
|
#define __CHANNEL_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 "temp_buf.h"
|
|
|
|
#include "tile_manager.h"
|
1998-06-29 08:24:44 +08:00
|
|
|
#include "gimpimageF.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* OPERATIONS */
|
|
|
|
|
1999-04-10 12:54:34 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
ADD,
|
|
|
|
SUB,
|
|
|
|
REPLACE,
|
|
|
|
INTERSECT
|
|
|
|
} ChannelOps;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Half way point where a region is no longer visible in a selection */
|
|
|
|
#define HALF_WAY 127
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
/* structure declarations */
|
1998-06-28 16:01:38 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
#define GIMP_TYPE_CHANNEL (gimp_channel_get_type ())
|
|
|
|
#define GIMP_CHANNEL(obj) (GTK_CHECK_CAST ((obj), GIMP_TYPE_CHANNEL, GimpChannel))
|
|
|
|
#define GIMP_CHANNEL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CHANNEL, GimpChannelClass))
|
|
|
|
#define GIMP_IS_CHANNEL(obj) (GTK_CHECK_TYPE ((obj), GIMP_TYPE_CHANNEL))
|
|
|
|
#define GIMP_IS_CHANNEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CHANNEL))
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-06-28 16:01:38 +08:00
|
|
|
GtkType gimp_channel_get_type (void);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
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
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Special undo type */
|
1999-08-22 19:45:31 +08:00
|
|
|
typedef struct _ChannelUndo ChannelUndo;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
struct _ChannelUndo
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
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
|
|
|
Channel *channel; /* the actual channel */
|
|
|
|
gint prev_position; /* former position in list */
|
|
|
|
Channel *prev_channel; /* previous active channel */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Special undo type */
|
1999-08-22 19:45:31 +08:00
|
|
|
typedef struct _MaskUndo MaskUndo;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
struct _MaskUndo
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
TileManager *tiles; /* the actual mask */
|
|
|
|
gint x, y; /* offsets */
|
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
|
|
|
Channel * channel_new (GimpImage*,
|
|
|
|
gint, gint, gchar *, gint, guchar *);
|
|
|
|
Channel * channel_copy (Channel *);
|
|
|
|
Channel * channel_ref (Channel *);
|
|
|
|
void channel_unref (Channel *);
|
1998-02-05 08:07:31 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
gchar * channel_get_name (Channel *);
|
|
|
|
void channel_set_name (Channel *, gchar *);
|
1998-09-24 09:19:57 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
gint channel_get_opacity (Channel *);
|
|
|
|
void channel_set_opacity (Channel *, gint);
|
1999-08-08 04:55:26 +08:00
|
|
|
|
1999-12-07 06:44:40 +08:00
|
|
|
guchar * channel_get_color (Channel *);
|
|
|
|
void channel_set_color (Channel *, guchar *);
|
1999-07-07 11:18:54 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
Channel * channel_get_ID (gint);
|
|
|
|
void channel_delete (Channel *);
|
2000-01-21 01:10:49 +08:00
|
|
|
void channel_removed (Channel *, gpointer);
|
1999-08-22 19:45:31 +08:00
|
|
|
void channel_scale (Channel *, gint, gint);
|
|
|
|
void channel_resize (Channel *, gint, gint, gint, gint);
|
|
|
|
void channel_update (Channel *);
|
1997-11-25 06:05:25 +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
|
|
|
gboolean channel_toggle_visibility (Channel *);
|
|
|
|
TempBuf * channel_preview (Channel *, gint, gint);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-06-29 08:24:44 +08:00
|
|
|
void channel_invalidate_previews (GimpImage*);
|
1999-08-22 19:45:31 +08:00
|
|
|
Tattoo channel_get_tattoo (const Channel *);
|
2000-02-16 07:49:03 +08:00
|
|
|
void channel_set_tattoo (const Channel *,Tattoo);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* selection mask functions */
|
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
Channel * channel_new_mask (GimpImage *, gint, gint);
|
|
|
|
gboolean channel_boundary (Channel *, BoundSeg **, BoundSeg **,
|
|
|
|
gint *, gint *, gint, gint, gint, gint);
|
|
|
|
gboolean channel_bounds (Channel *,
|
|
|
|
gint *, gint *, gint *, gint *);
|
|
|
|
gint channel_value (Channel *, gint, gint);
|
|
|
|
gboolean channel_is_empty (Channel *);
|
|
|
|
void channel_add_segment (Channel *, gint, gint, gint, gint);
|
|
|
|
void channel_sub_segment (Channel *, gint, gint, gint, gint);
|
|
|
|
void channel_inter_segment (Channel *, gint, gint, gint, gint);
|
|
|
|
void channel_combine_rect (Channel *,
|
|
|
|
ChannelOps, gint, gint, gint, gint);
|
|
|
|
void channel_combine_ellipse (Channel *,
|
|
|
|
ChannelOps,
|
|
|
|
gint, gint, gint, gint, gboolean);
|
|
|
|
void channel_combine_mask (Channel *, Channel *,
|
|
|
|
ChannelOps, gint, gint);
|
1999-05-07 07:10:29 +08:00
|
|
|
void channel_feather (Channel *, Channel *,
|
1999-08-22 19:45:31 +08:00
|
|
|
gdouble, gdouble,
|
|
|
|
ChannelOps, gint, gint);
|
1997-11-25 06:05:25 +08:00
|
|
|
void channel_push_undo (Channel *);
|
|
|
|
void channel_clear (Channel *);
|
|
|
|
void channel_invert (Channel *);
|
|
|
|
void channel_sharpen (Channel *);
|
|
|
|
void channel_all (Channel *);
|
1999-05-07 07:10:29 +08:00
|
|
|
|
|
|
|
void channel_border (Channel * channel,
|
1999-08-22 19:45:31 +08:00
|
|
|
gint radius_x,
|
|
|
|
gint radius_y);
|
1999-05-07 07:10:29 +08:00
|
|
|
void channel_grow (Channel * channel,
|
1999-08-22 19:45:31 +08:00
|
|
|
gint radius_x,
|
|
|
|
gint radius_y);
|
1999-05-07 07:10:29 +08:00
|
|
|
void channel_shrink (Channel * channel,
|
1999-08-22 19:45:31 +08:00
|
|
|
gint radius_x,
|
|
|
|
gint radius_y,
|
|
|
|
gboolean edge_lock);
|
1999-05-07 07:10:29 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
void channel_translate (Channel *, gint, gint);
|
1997-11-25 06:05:25 +08:00
|
|
|
void channel_load (Channel *, Channel *);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
void channel_invalidate_bounds (Channel *);
|
1998-01-22 15:02:57 +08:00
|
|
|
|
1998-06-30 23:31:32 +08:00
|
|
|
#define drawable_channel GIMP_IS_CHANNEL
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#endif /* __CHANNEL_H__ */
|