Libgimp cleanup part II (with a little help from Yosh who moved the CVS
2000-05-27 Michael Natterer <mitch@gimp.org> Libgimp cleanup part II (with a little help from Yosh who moved the CVS files). * libgimp/Makefile.am * libgimp/gimpchannel_pdb.c * libgimp/gimpdisplay_pdb.c * libgimp/gimpdrawable_pdb.c * libgimp/gimpgradient_pdb.c * libgimp/gimphelp_pdb.c * libgimp/gimpimage_pdb.c * libgimp/gimplayer_pdb.c * libgimp/gimppalette_pdb.c * libgimp/gimpparasite_pdb.c * libgimp/gimpselection_pdb.c * libgimp/gimpunit_pdb.c: new names of all files which contain PDB wrappers. * modules/Makefile.am * libgimp/gimpcolordisplay.h * libgimp/gimpcolorselector.h * modules/gimpmodregister.[ch]: renamed. * libgimp/gimpparasiteF.h * libgimp/gimpparasiteP.h: removed because gimp.h had to include the private header anyway. * app/color_notebook.c * app/color_select.c * app/gdisplay_color.[ch] * app/gdisplay_color_ui.c * app/gimpbrushpipe.c * app/gimpdrawable.[ch] * app/gimpimage.c * app/gimpimage.h * app/gimpparasite.[ch] * app/gimprc.c * app/image_new.c * app/layer.c * app/parasite_cmds.c * app/parasitelist.[ch] * app/plug_in.c * app/procedural_db.c * app/undo.c * app/xcf.c * libgimp/gimp.[ch] * libgimp/gimpcolordisplay.h * libgimp/gimpparasite.[ch] * modules/cdisplay_gamma.c * modules/cdisplay_highcontrast.c * modules/colorsel_gtk.c * modules/colorsel_triangle.c * modules/colorsel_water.c * plug-ins/FractalExplorer/Dialogs.c * plug-ins/FractalExplorer/Events.c * plug-ins/Lighting/lighting_apply.c * plug-ins/Lighting/lighting_shade.c * plug-ins/MapObject/mapobject_image.c * plug-ins/common/gpb.c * plug-ins/common/psp.c * plug-ins/sel2path/sel2path.c * po-libgimp/POTFILES.in * tools/pdbgen/pdb.pl * tools/pdbgen/pdb/parasite.pdb: changed includes accordingly.
This commit is contained in:
committed by
Michael Natterer
parent
763bd6ab98
commit
6fa33d6855
@ -22,19 +22,18 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "libgimp/gimpenums.h"
|
||||
#include "libgimp/gimpcolorspace.h"
|
||||
#include "libgimp/gimpfeatures.h"
|
||||
#include "libgimp/gimpenv.h"
|
||||
#include "libgimp/gimplimits.h"
|
||||
#include "libgimp/gimpmath.h"
|
||||
#include "libgimp/gimpparasite.h"
|
||||
#include "libgimp/gimpparasiteP.h"
|
||||
#include "libgimp/gimpunit.h"
|
||||
#include "libgimp/gimputils.h"
|
||||
#include "libgimp/gimpvector.h"
|
||||
#include <libgimp/gimpenums.h>
|
||||
#include <libgimp/gimpcolorspace.h>
|
||||
#include <libgimp/gimpfeatures.h>
|
||||
#include <libgimp/gimpenv.h>
|
||||
#include <libgimp/gimplimits.h>
|
||||
#include <libgimp/gimpmath.h>
|
||||
#include <libgimp/gimpparasite.h>
|
||||
#include <libgimp/gimpunit.h>
|
||||
#include <libgimp/gimputils.h>
|
||||
#include <libgimp/gimpvector.h>
|
||||
|
||||
#include "libgimp/gimpcompat.h" /* to be removed in 1.3 */
|
||||
#include <libgimp/gimpcompat.h> /* to be removed in 1.3 */
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
# include <stdlib.h> /* For _-argc and __argv */
|
||||
@ -95,47 +94,47 @@ struct _GPlugInInfo
|
||||
|
||||
struct _GTile
|
||||
{
|
||||
guint ewidth; /* the effective width of the tile */
|
||||
guint eheight; /* the effective height of the tile */
|
||||
guint bpp; /* the bytes per pixel (1, 2, 3 or 4 ) */
|
||||
guint tile_num; /* the number of this tile within the drawable */
|
||||
guint16 ref_count; /* reference count for the tile */
|
||||
guint dirty : 1; /* is the tile dirty? has it been modified? */
|
||||
guint shadow: 1; /* is this a shadow tile */
|
||||
guchar *data; /* the pixel data for the tile */
|
||||
guint ewidth; /* the effective width of the tile */
|
||||
guint eheight; /* the effective height of the tile */
|
||||
guint bpp; /* the bytes per pixel (1, 2, 3 or 4 ) */
|
||||
guint tile_num; /* the number of this tile within the drawable */
|
||||
guint16 ref_count; /* reference count for the tile */
|
||||
guint dirty : 1; /* is the tile dirty? has it been modified? */
|
||||
guint shadow: 1; /* is this a shadow tile */
|
||||
guchar *data; /* the pixel data for the tile */
|
||||
GDrawable *drawable; /* the drawable this tile came from */
|
||||
};
|
||||
|
||||
struct _GDrawable
|
||||
{
|
||||
gint32 id; /* drawable ID */
|
||||
guint width; /* width of drawble */
|
||||
guint height; /* height of drawble */
|
||||
guint bpp; /* bytes per pixel of drawable */
|
||||
guint ntile_rows; /* # of tile rows */
|
||||
guint ntile_cols; /* # of tile columns */
|
||||
GTile *tiles; /* the normal tiles */
|
||||
GTile *shadow_tiles; /* the shadow tiles */
|
||||
gint32 id; /* drawable ID */
|
||||
guint width; /* width of drawble */
|
||||
guint height; /* height of drawble */
|
||||
guint bpp; /* bytes per pixel of drawable */
|
||||
guint ntile_rows; /* # of tile rows */
|
||||
guint ntile_cols; /* # of tile columns */
|
||||
GTile *tiles; /* the normal tiles */
|
||||
GTile *shadow_tiles; /* the shadow tiles */
|
||||
};
|
||||
|
||||
struct _GPixelRgn
|
||||
{
|
||||
guchar *data; /* pointer to region data */
|
||||
GDrawable *drawable; /* pointer to drawable */
|
||||
guint bpp; /* bytes per pixel */
|
||||
guint rowstride; /* bytes per pixel row */
|
||||
guint x, y; /* origin */
|
||||
guint w, h; /* width and height of region */
|
||||
guint dirty : 1; /* will this region be dirtied? */
|
||||
guint shadow : 1; /* will this region use the shadow or normal tiles */
|
||||
guint process_count; /* used internally */
|
||||
guchar *data; /* pointer to region data */
|
||||
GDrawable *drawable; /* pointer to drawable */
|
||||
guint bpp; /* bytes per pixel */
|
||||
guint rowstride; /* bytes per pixel row */
|
||||
guint x, y; /* origin */
|
||||
guint w, h; /* width and height of region */
|
||||
guint dirty : 1; /* will this region be dirtied? */
|
||||
guint shadow : 1; /* will this region use the shadow or normal tiles */
|
||||
guint process_count; /* used internally */
|
||||
};
|
||||
|
||||
struct _GParamDef
|
||||
{
|
||||
GParamType type;
|
||||
gchar *name;
|
||||
gchar *description;
|
||||
GParamType type;
|
||||
gchar *name;
|
||||
gchar *description;
|
||||
};
|
||||
|
||||
struct _GParamColor
|
||||
|
||||
Reference in New Issue
Block a user