mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 01:13:24 +00:00

Modified Files: ChangeLog app/Makefile.am app/channel.c app/channel.h app/channel_cmds.c app/channel_cmds.h app/drawable_cmds.c app/gimage_cmds.c app/gimpdrawable.c app/gimpdrawable.h app/gimpdrawableP.h app/gimpimage.c app/gimpimage.h app/gimpimageP.h app/internal_procs.c app/layer.c app/layer.h app/layer_cmds.c app/layer_cmds.h app/parasite_cmds.c app/perspective_tool.c app/plug_in.c app/procedural_db.c app/rotate_tool.c app/scale_tool.c app/shear_tool.c app/transform_core.c app/transform_core.h docs/parasites.txt libgimp/Makefile.am libgimp/gimp.c libgimp/gimp.h libgimp/gimpdrawable.c libgimp/gimpimage.c libgimp/gimpprotocol.c libgimp/gimpprotocol.h plug-ins/gif/gif.c plug-ins/script-fu/script-fu.c plug-ins/tiff/tiff.c Added Files: libgimp/gimpmatrix.c libgimp/gimpmatrix.h libgimp/parasite.c libgimp/parasite.h libgimp/parasiteF.h libgimp/parasiteP.h Removed Files: app/parasite.c app/parasite.h app/parasiteF.h app/parasiteP.h libgimp/gimpparasite.c libgimp/gimpparasite.h Tue Oct 13 19:24:03 1998 Jay Cox (jaycox@earthlink.net) * app/parasite.c * app/parasite.h * app/parasiteF.h * app/parasiteP.h : use a single name field instead of seperate creator/type fields. moved to libgimp/parasite* * libgimp/Makefile.am * libgimp/gimp.c * libgimp/gimp.h * libgimp/gimpdrawable.c * libgimp/gimpimage.c * libgimp/gimpprotocol.c * libgimp/gimpprotocol.h * app/Makefile.am * app/channel.c * app/channel.h * app/channel_cmds.c * app/channel_cmds.h * app/drawable_cmds.c * app/gimage_cmds.c * app/gimpdrawable.c * app/gimpdrawable.h * app/gimpdrawableP.h * app/gimpimage.c * app/gimpimage.h * app/gimpimageP.h * app/internal_procs.c * app/layer.c * app/layer.h * app/layer_cmds.c * app/layer_cmds.h * app/parasite_cmds.c * app/plug_in.c * app/procedural_db.c: Add tattoos to layers and drawables. Use new style parasites. * libgimp/gimpmatrix.c * libgimp/gimpmatrix.h: new files for matrix math. * app/perspective_tool.c * app/rotate_tool.c * app/scale_tool.c * app/shear_tool.c * app/transform_core.c * app/transform_core.h: use GimpMatrix instead of the old matrix code from transform_core. * ligimp/gimpparasite*: removed. now useing the same source for plug-ins and the core. * plug-ins/script-fu/script-fu.c * plug-ins/tiff/tiff.c * plug-ins/gif/gif.c: updated to use new style parasites.
132 lines
4.8 KiB
C
132 lines
4.8 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 __CHANNEL_H__
|
|
#define __CHANNEL_H__
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "boundary.h"
|
|
#include "temp_buf.h"
|
|
#include "tile_manager.h"
|
|
#include "gimpimageF.h"
|
|
|
|
/* OPERATIONS */
|
|
|
|
#define ADD 0
|
|
#define SUB 1
|
|
#define REPLACE 2
|
|
#define INTERSECT 3
|
|
|
|
/* Half way point where a region is no longer visible in a selection */
|
|
#define HALF_WAY 127
|
|
|
|
/* structure declarations */
|
|
|
|
#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))
|
|
|
|
|
|
typedef struct _GimpChannel GimpChannel;
|
|
typedef struct _GimpChannelClass GimpChannelClass;
|
|
|
|
typedef GimpChannel Channel; /* convenience */
|
|
|
|
GtkType gimp_channel_get_type (void);
|
|
|
|
/* Special undo type */
|
|
typedef struct _channel_undo ChannelUndo;
|
|
|
|
struct _channel_undo
|
|
{
|
|
Channel * channel; /* the actual channel */
|
|
int prev_position; /* former position in list */
|
|
Channel * prev_channel; /* previous active channel */
|
|
int undo_type; /* is this a new channel undo */
|
|
/* or a remove channel undo? */
|
|
};
|
|
|
|
/* Special undo type */
|
|
typedef struct _mask_undo MaskUndo;
|
|
|
|
struct _mask_undo
|
|
{
|
|
TileManager * tiles; /* the actual mask */
|
|
int x, y; /* offsets */
|
|
};
|
|
|
|
|
|
/* function declarations */
|
|
|
|
Channel * channel_new (GimpImage*, int, int, char *, int, unsigned char *);
|
|
Channel * channel_copy (Channel *);
|
|
Channel * channel_ref (Channel *);
|
|
void channel_unref (Channel *);
|
|
|
|
char * channel_get_name (Channel *);
|
|
void channel_set_name (Channel *, char *);
|
|
|
|
Channel * channel_get_ID (int);
|
|
void channel_delete (Channel *);
|
|
void channel_scale (Channel *, int, int);
|
|
void channel_resize (Channel *, int, int, int, int);
|
|
|
|
/* access functions */
|
|
|
|
unsigned char * channel_data (Channel *);
|
|
int channel_toggle_visibility (Channel *);
|
|
TempBuf * channel_preview (Channel *, int, int);
|
|
|
|
void channel_invalidate_previews (GimpImage*);
|
|
guint32 channel_get_tattoo(const Channel *);
|
|
|
|
|
|
/* selection mask functions */
|
|
|
|
Channel * channel_new_mask (GimpImage*, int, int);
|
|
int channel_boundary (Channel *, BoundSeg **, BoundSeg **,
|
|
int *, int *, int, int, int, int);
|
|
int channel_bounds (Channel *, int *, int *, int *, int *);
|
|
int channel_value (Channel *, int, int);
|
|
int channel_is_empty (Channel *);
|
|
void channel_add_segment (Channel *, int, int, int, int);
|
|
void channel_sub_segment (Channel *, int, int, int, int);
|
|
void channel_inter_segment (Channel *, int, int, int, int);
|
|
void channel_combine_rect (Channel *, int, int, int, int, int);
|
|
void channel_combine_ellipse (Channel *, int, int, int, int, int, int);
|
|
void channel_combine_mask (Channel *, Channel *, int, int, int);
|
|
void channel_feather (Channel *, Channel *, double, int, int, int);
|
|
void channel_push_undo (Channel *);
|
|
void channel_clear (Channel *);
|
|
void channel_invert (Channel *);
|
|
void channel_sharpen (Channel *);
|
|
void channel_all (Channel *);
|
|
void channel_border (Channel *, int);
|
|
void channel_grow (Channel *, int);
|
|
void channel_shrink (Channel *, int);
|
|
void channel_translate (Channel *, int, int);
|
|
void channel_load (Channel *, Channel *);
|
|
void channel_invalidate_bounds (Channel *);
|
|
|
|
extern int channel_get_count;
|
|
|
|
#define drawable_channel GIMP_IS_CHANNEL
|
|
|
|
#endif /* __CHANNEL_H__ */
|