mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00

2001-05-10 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/asupsample.[ch]: removed. * app/core/Makefile.am * app/core/core-types.h * app/tools/Makefile.am * app/tools/tools-types.h: new files. * app/tools/gimptoolinfo.[ch]: removed. * app/core/gimptoolinfo.[ch]: added here. * libgimp/Makefile.am * libgimp/gimp.h * libgimp/gimpadaptivesupersample.[ch] * libgimp/gimpbilinear.[ch]: removed here... * libgimpcolor/Makefile.am * libgimpcolor/gimpcolortypes.h * libgimpcolor/gimpadaptivesupersample.[ch] * libgimpcolor/gimpbilinear.[ch]: ..and added here. * tools/pdbgen/app.pl * tools/pdbgen/pdb/paths.pdb * app/*.c: changed tons of #include's
118 lines
3.2 KiB
C
118 lines
3.2 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 __APPTYPES_H__
|
|
#define __APPTYPES_H__
|
|
|
|
|
|
#include "libgimp/gimpunit.h"
|
|
|
|
#include "libgimpcolor/gimpcolortypes.h"
|
|
#include "libgimpmath/gimpmathtypes.h"
|
|
|
|
#include "undo_types.h"
|
|
|
|
#include "appenums.h"
|
|
|
|
|
|
/* other stuff */
|
|
|
|
typedef struct _Argument Argument;
|
|
|
|
typedef struct _GimpBitmapCursor GimpBitmapCursor;
|
|
|
|
typedef struct _BoundSeg BoundSeg;
|
|
|
|
typedef struct _ColorNotebook ColorNotebook;
|
|
|
|
typedef struct _GDisplay GDisplay;
|
|
|
|
typedef struct _GimpHistogram GimpHistogram;
|
|
|
|
typedef struct _GimpImageNewValues GimpImageNewValues;
|
|
|
|
typedef struct _GimpLut GimpLut;
|
|
|
|
typedef struct _GimpParasite GimpParasite;
|
|
|
|
typedef struct _GimpProgress GimpProgress;
|
|
|
|
typedef struct _Guide Guide;
|
|
|
|
typedef gpointer ImageMap;
|
|
|
|
typedef struct _InfoDialog InfoDialog;
|
|
|
|
typedef struct _Path Path;
|
|
typedef struct _PathPoint PathPoint;
|
|
typedef struct _PathList PathList;
|
|
|
|
typedef struct _PlugIn PlugIn;
|
|
typedef struct _PlugInDef PlugInDef;
|
|
typedef struct _PlugInProcDef PlugInProcDef;
|
|
|
|
typedef struct _ParasiteList ParasiteList;
|
|
|
|
typedef struct _PixelRegionIterator PixelRegionIterator;
|
|
typedef struct _PixelRegion PixelRegion;
|
|
typedef struct _PixelRegionHolder PixelRegionHolder;
|
|
|
|
typedef struct _ProcArg ProcArg;
|
|
typedef struct _ProcRecord ProcRecord;
|
|
|
|
typedef guint32 Tattoo;
|
|
|
|
typedef struct _TempBuf TempBuf;
|
|
typedef struct _TempBuf MaskBuf;
|
|
|
|
typedef struct _Tile Tile;
|
|
typedef struct _TileManager TileManager;
|
|
|
|
typedef struct _Tool Tool;
|
|
typedef struct _ToolInfo ToolInfo;
|
|
typedef struct _ToolOptions ToolOptions;
|
|
|
|
typedef struct _ScanConvertPoint ScanConvertPoint;
|
|
|
|
typedef struct _Selection Selection;
|
|
|
|
|
|
/* some undo stuff */
|
|
|
|
typedef struct _LayerUndo LayerUndo;
|
|
|
|
typedef struct _LayerMaskUndo LayerMaskUndo;
|
|
|
|
typedef struct _FStoLayerUndo FStoLayerUndo;
|
|
|
|
typedef GSList PathUndo;
|
|
|
|
|
|
/* functions */
|
|
|
|
typedef void (* TileValidateProc) (TileManager *tm,
|
|
Tile *tile);
|
|
|
|
typedef void (* ToolOptionsResetFunc) (ToolOptions *tool_options);
|
|
|
|
typedef void (* ImageMapApplyFunc) (PixelRegion *srcPR,
|
|
PixelRegion *destPR,
|
|
gpointer data);
|
|
|
|
|
|
#endif /* __APPTYPES_H__ */
|