gimp/app/gximage.c
Michael Natterer d1022c34b6 app/Makefile.am removed.
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
2001-05-09 22:34:59 +00:00

137 lines
2.7 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.
*/
#include "config.h"
#include <gtk/gtk.h>
#include "core/core-types.h"
#include "appenv.h"
#include "colormaps.h"
#include "gximage.h"
typedef struct _GXImage GXImage;
struct _GXImage
{
long width, height; /* width and height of ximage structure */
GdkVisual *visual; /* visual appropriate to our depth */
GdkGC *gc; /* graphics context */
guchar *data;
};
/* The static gximages for drawing to windows */
static GXImage *gximage = NULL;
#define QUANTUM 32
/* STATIC functions */
static GXImage *
create_gximage (GdkVisual *visual, int width, int height)
{
GXImage * gximage;
gximage = g_new (GXImage, 1);
gximage->visual = visual;
gximage->gc = NULL;
gximage->data = g_malloc (width * height * 3);
return gximage;
}
static void
delete_gximage (GXImage *gximage)
{
g_free (gximage->data);
if (gximage->gc)
gdk_gc_destroy (gximage->gc);
g_free (gximage);
}
/****************************************************************/
/* Function definitions */
void
gximage_init (void)
{
gximage = create_gximage (g_visual, GXIMAGE_WIDTH, GXIMAGE_HEIGHT);
}
void
gximage_free (void)
{
delete_gximage (gximage);
}
guchar*
gximage_get_data (void)
{
return gximage->data;
}
int
gximage_get_bpp (void)
{
return 3;
}
int
gximage_get_bpl (void)
{
return 3 * GXIMAGE_WIDTH;
}
int
gximage_get_byte_order (void)
{
return GDK_MSB_FIRST;
}
void
gximage_put (GdkWindow *win, int x, int y, int w, int h, int xdith, int ydith)
{
/* create the GC if it doesn't yet exist */
if (!gximage->gc)
{
gximage->gc = gdk_gc_new (win);
gdk_gc_set_exposures (gximage->gc, TRUE);
}
gdk_draw_rgb_image_dithalign (win,
gximage->gc,
x,
y,
w,
h,
/* todo: make configurable */
GDK_RGB_DITHER_MAX,
gximage->data,
GXIMAGE_WIDTH * 3,
xdith, ydith);
}