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.
70 lines
2.3 KiB
C
70 lines
2.3 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 __GIMPDRAWABLEP_H__
|
|
#define __GIMPDRAWABLEP_H__
|
|
|
|
#include "gimpobjectP.h"
|
|
#include "gimpdrawable.h"
|
|
#include "libgimp/gimpmatrix.h"
|
|
|
|
struct _GimpDrawable
|
|
{
|
|
GimpObject data;
|
|
|
|
char *name; /* name of drawable */
|
|
TileManager *tiles; /* tiles for drawable data */
|
|
int visible; /* controls visibility */
|
|
int width, height; /* size of drawable */
|
|
int offset_x, offset_y; /* offset of layer in image */
|
|
|
|
int bytes; /* bytes per pixel */
|
|
int dirty; /* dirty bit */
|
|
int ID; /* provides a unique ID */
|
|
guint32 tattoo; /* provides a perminant ID */
|
|
GimpImage* gimage; /* gimage owner */
|
|
int type; /* type of drawable */
|
|
int has_alpha; /* drawable has alpha */
|
|
|
|
GSList *parasites; /* Plug-in parasite data */
|
|
|
|
GimpMatrix transform; /* a matrix describing all of the
|
|
transformations this drawable
|
|
has undergone */
|
|
|
|
/* Preview variables */
|
|
TempBuf *preview; /* preview of the channel */
|
|
int preview_valid; /* is the preview valid? */
|
|
};
|
|
|
|
struct _GimpDrawableClass
|
|
{
|
|
GimpObjectClass parent_class;
|
|
|
|
void (*invalidate_preview) (GtkObject *);
|
|
};
|
|
|
|
typedef struct _GimpDrawableClass GimpDrawableClass;
|
|
|
|
#define GIMP_DRAWABLE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DRAWABLE, GimpDrawableClass))
|
|
|
|
#define GIMP_IS_DRAWABLE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DRAWABLE))
|
|
|
|
void gimp_drawable_configure (GimpDrawable *, GimpImage*,
|
|
gint, gint, gint, gchar*);
|
|
|
|
#endif /* __GIMPDRAWABLEP_H__ */
|