1999-10-27 23:36:44 +00:00
|
|
|
|
/* GdkPixbuf library - Rendering functions
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
|
|
|
|
*
|
|
|
|
|
* Author: Federico Mena-Quintero <federico@gimp.org>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-10-27 23:36:44 +00:00
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1999-10-27 23:36:44 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-10-27 23:36:44 +00:00
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <gdk/gdk.h>
|
2000-04-11 07:03:25 +00:00
|
|
|
|
#include "gdk-pixbuf-private.h"
|
2000-06-21 20:47:22 +00:00
|
|
|
|
#include "gdkpixbuf.h"
|
1999-10-27 23:36:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_render_threshold_alpha:
|
|
|
|
|
* @pixbuf: A pixbuf.
|
|
|
|
|
* @bitmap: Bitmap where the bilevel mask will be painted to.
|
|
|
|
|
* @src_x: Source X coordinate.
|
|
|
|
|
* @src_y: source Y coordinate.
|
|
|
|
|
* @dest_x: Destination X coordinate.
|
|
|
|
|
* @dest_y: Destination Y coordinate.
|
|
|
|
|
* @width: Width of region to threshold.
|
|
|
|
|
* @height: Height of region to threshold.
|
|
|
|
|
* @alpha_threshold: Opacity values below this will be painted as zero; all
|
|
|
|
|
* other values will be painted as one.
|
1999-10-28 23:25:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Takes the opacity values in a rectangular portion of a pixbuf and thresholds
|
|
|
|
|
* them to produce a bi-level alpha mask that can be used as a clipping mask for
|
|
|
|
|
* a drawable.
|
1999-11-04 20:16:17 +00:00
|
|
|
|
*
|
1999-10-27 23:36:44 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gdk_pixbuf_render_threshold_alpha (GdkPixbuf *pixbuf,
|
|
|
|
|
GdkBitmap *bitmap,
|
|
|
|
|
int src_x, int src_y,
|
1999-10-27 23:36:44 +00:00
|
|
|
|
int dest_x, int dest_y,
|
2000-06-21 23:29:51 +00:00
|
|
|
|
int width, int height,
|
1999-10-27 23:36:44 +00:00
|
|
|
|
int alpha_threshold)
|
|
|
|
|
{
|
2000-06-21 23:29:51 +00:00
|
|
|
|
GdkGC *gc;
|
|
|
|
|
GdkColor color;
|
|
|
|
|
int x, y;
|
|
|
|
|
guchar *p;
|
|
|
|
|
int start, start_status;
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (pixbuf != NULL);
|
|
|
|
|
g_return_if_fail (pixbuf->colorspace == GDK_COLORSPACE_RGB);
|
|
|
|
|
g_return_if_fail (pixbuf->n_channels == 3 || pixbuf->n_channels == 4);
|
|
|
|
|
g_return_if_fail (pixbuf->bits_per_sample == 8);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (bitmap != NULL);
|
|
|
|
|
g_return_if_fail (width >= 0 && height >= 0);
|
|
|
|
|
g_return_if_fail (src_x >= 0 && src_x + width <= pixbuf->width);
|
|
|
|
|
g_return_if_fail (src_y >= 0 && src_y + height <= pixbuf->height);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (alpha_threshold >= 0 && alpha_threshold <= 255);
|
|
|
|
|
|
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gc = gdk_gc_new (bitmap);
|
|
|
|
|
|
|
|
|
|
if (!pixbuf->has_alpha)
|
|
|
|
|
{
|
|
|
|
|
color.pixel = (alpha_threshold == 255) ? 0 : 1;
|
|
|
|
|
gdk_gc_set_foreground (gc, &color);
|
|
|
|
|
gdk_draw_rectangle (bitmap, gc, TRUE, dest_x, dest_y, width, height);
|
|
|
|
|
gdk_gc_unref (gc);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
color.pixel = 0;
|
|
|
|
|
gdk_gc_set_foreground (gc, &color);
|
|
|
|
|
gdk_draw_rectangle (bitmap, gc, TRUE, dest_x, dest_y, width, height);
|
|
|
|
|
|
|
|
|
|
color.pixel = 1;
|
|
|
|
|
gdk_gc_set_foreground (gc, &color);
|
|
|
|
|
|
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
|
{
|
|
|
|
|
p = (pixbuf->pixels + (y + src_y) * pixbuf->rowstride + src_x * pixbuf->n_channels
|
|
|
|
|
+ pixbuf->n_channels - 1);
|
|
|
|
|
|
|
|
|
|
start = 0;
|
|
|
|
|
start_status = *p < alpha_threshold;
|
|
|
|
|
|
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
|
{
|
|
|
|
|
status = *p < alpha_threshold;
|
|
|
|
|
|
|
|
|
|
if (status != start_status)
|
|
|
|
|
{
|
|
|
|
|
if (!start_status)
|
|
|
|
|
gdk_draw_line (bitmap, gc,
|
|
|
|
|
start + dest_x, y + dest_y,
|
|
|
|
|
x - 1 + dest_x, y + dest_y);
|
|
|
|
|
|
|
|
|
|
start = x;
|
|
|
|
|
start_status = status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p += pixbuf->n_channels;
|
1999-10-27 23:36:44 +00:00
|
|
|
|
}
|
2000-06-21 23:29:51 +00:00
|
|
|
|
|
|
|
|
|
if (!start_status)
|
|
|
|
|
gdk_draw_line (bitmap, gc,
|
|
|
|
|
start + dest_x, y + dest_y,
|
|
|
|
|
x - 1 + dest_x, y + dest_y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gdk_gc_unref (gc);
|
1999-10-27 23:36:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-28 23:25:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_render_to_drawable:
|
|
|
|
|
* @pixbuf: A pixbuf.
|
|
|
|
|
* @drawable: Destination drawable.
|
|
|
|
|
* @gc: GC used for rendering.
|
|
|
|
|
* @src_x: Source X coordinate within pixbuf.
|
|
|
|
|
* @src_y: Source Y coordinate within pixbuf.
|
|
|
|
|
* @dest_x: Destination X coordinate within drawable.
|
|
|
|
|
* @dest_y: Destination Y coordinate within drawable.
|
|
|
|
|
* @width: Width of region to render, in pixels.
|
|
|
|
|
* @height: Height of region to render, in pixels.
|
|
|
|
|
* @dither: Dithering mode for GdkRGB.
|
|
|
|
|
* @x_dither: X offset for dither.
|
|
|
|
|
* @y_dither: Y offset for dither.
|
2000-01-17 01:48:21 +00:00
|
|
|
|
*
|
1999-10-28 23:25:02 +00:00
|
|
|
|
* Renders a rectangular portion of a pixbuf to a drawable while using the
|
|
|
|
|
* specified GC. This is done using GdkRGB, so the specified drawable must have
|
|
|
|
|
* the GdkRGB visual and colormap. Note that this function will ignore the
|
|
|
|
|
* opacity information for images with an alpha channel; the GC must already
|
|
|
|
|
* have the clipping mask set if you want transparent regions to show through.
|
1999-11-04 20:16:17 +00:00
|
|
|
|
*
|
1999-11-04 21:52:08 +00:00
|
|
|
|
* For an explanation of dither offsets, see the GdkRGB documentation. In
|
|
|
|
|
* brief, the dither offset is important when re-rendering partial regions of an
|
|
|
|
|
* image to a rendered version of the full image, or for when the offsets to a
|
|
|
|
|
* base position change, as in scrolling. The dither matrix has to be shifted
|
|
|
|
|
* for consistent visual results. If you do not have any of these cases, the
|
|
|
|
|
* dither offsets can be both zero.
|
1999-10-28 23:25:02 +00:00
|
|
|
|
**/
|
1999-10-27 23:36:44 +00:00
|
|
|
|
void
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gdk_pixbuf_render_to_drawable (GdkPixbuf *pixbuf,
|
|
|
|
|
GdkDrawable *drawable,
|
|
|
|
|
GdkGC *gc,
|
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height,
|
1999-10-27 23:36:44 +00:00
|
|
|
|
GdkRgbDither dither,
|
|
|
|
|
int x_dither, int y_dither)
|
|
|
|
|
{
|
2000-06-21 23:29:51 +00:00
|
|
|
|
int rowstride;
|
Add gdk_rgb_find_color() to get a pixel value using GdkRGB functionality
Sun Jul 2 12:45:50 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
value using GdkRGB functionality given GdkColormap and GdkColor.
(name not final, waiting for inspiration.)
* gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
set the foreground/background of a GC using the GC's colormap
and GdkRGB. (name not final, waiting for inspiration.)
* gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from
gdk_rgb_get_cmap(), put #define in gdkcompat.h.
* gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
purely a function of the corresponding colormap. Make
gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
* gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
gdk_pixbuf_*create_from_xpm_* in terms of
gdk_pixbuf_new_from_xpm_data(), move into platform independent
code.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
advantage of the new draw_rgb_32_image_dithalign.
* gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
* gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
on each created GC.
* gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
* gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
which we initialize from the drawable when the GC is created,
if the drawable has a colormap.
* gdk/x11/gdkgc-x11.c: include string.h for memset.
* gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
* gtk/gtklayout.[ch]: Remove unsed configure serial member.
2000-07-02 17:03:21 +00:00
|
|
|
|
guchar *buf;
|
2000-06-21 23:29:51 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (pixbuf != NULL);
|
|
|
|
|
g_return_if_fail (pixbuf->colorspace == GDK_COLORSPACE_RGB);
|
|
|
|
|
g_return_if_fail (pixbuf->n_channels == 3 || pixbuf->n_channels == 4);
|
|
|
|
|
g_return_if_fail (pixbuf->bits_per_sample == 8);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (drawable != NULL);
|
|
|
|
|
g_return_if_fail (gc != NULL);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (width >= 0 && height >= 0);
|
|
|
|
|
g_return_if_fail (src_x >= 0 && src_x + width <= pixbuf->width);
|
|
|
|
|
g_return_if_fail (src_y >= 0 && src_y + height <= pixbuf->height);
|
|
|
|
|
|
|
|
|
|
if (width == 0 || height == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* This will have to be modified once we support other image types.
|
|
|
|
|
*/
|
|
|
|
|
|
Add gdk_rgb_find_color() to get a pixel value using GdkRGB functionality
Sun Jul 2 12:45:50 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
value using GdkRGB functionality given GdkColormap and GdkColor.
(name not final, waiting for inspiration.)
* gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
set the foreground/background of a GC using the GC's colormap
and GdkRGB. (name not final, waiting for inspiration.)
* gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from
gdk_rgb_get_cmap(), put #define in gdkcompat.h.
* gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
purely a function of the corresponding colormap. Make
gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
* gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
gdk_pixbuf_*create_from_xpm_* in terms of
gdk_pixbuf_new_from_xpm_data(), move into platform independent
code.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
advantage of the new draw_rgb_32_image_dithalign.
* gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
* gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
on each created GC.
* gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
* gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
which we initialize from the drawable when the GC is created,
if the drawable has a colormap.
* gdk/x11/gdkgc-x11.c: include string.h for memset.
* gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
* gtk/gtklayout.[ch]: Remove unsed configure serial member.
2000-07-02 17:03:21 +00:00
|
|
|
|
if (pixbuf->n_channels == 4)
|
2000-06-21 23:29:51 +00:00
|
|
|
|
{
|
2000-07-14 20:24:14 +00:00
|
|
|
|
buf = pixbuf->pixels + src_y * pixbuf->rowstride + src_x * 4;
|
2000-06-21 23:29:51 +00:00
|
|
|
|
rowstride = pixbuf->rowstride;
|
|
|
|
|
|
Add gdk_rgb_find_color() to get a pixel value using GdkRGB functionality
Sun Jul 2 12:45:50 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
value using GdkRGB functionality given GdkColormap and GdkColor.
(name not final, waiting for inspiration.)
* gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
set the foreground/background of a GC using the GC's colormap
and GdkRGB. (name not final, waiting for inspiration.)
* gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from
gdk_rgb_get_cmap(), put #define in gdkcompat.h.
* gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
purely a function of the corresponding colormap. Make
gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
* gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
gdk_pixbuf_*create_from_xpm_* in terms of
gdk_pixbuf_new_from_xpm_data(), move into platform independent
code.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
advantage of the new draw_rgb_32_image_dithalign.
* gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
* gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
on each created GC.
* gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
* gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
which we initialize from the drawable when the GC is created,
if the drawable has a colormap.
* gdk/x11/gdkgc-x11.c: include string.h for memset.
* gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
* gtk/gtklayout.[ch]: Remove unsed configure serial member.
2000-07-02 17:03:21 +00:00
|
|
|
|
gdk_draw_rgb_32_image_dithalign (drawable, gc,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
width, height,
|
|
|
|
|
dither,
|
|
|
|
|
buf, rowstride,
|
|
|
|
|
x_dither, y_dither);
|
|
|
|
|
}
|
|
|
|
|
else /* n_channels == 3 */
|
|
|
|
|
{
|
|
|
|
|
buf = pixbuf->pixels + src_y * pixbuf->rowstride + src_x * 3;
|
|
|
|
|
rowstride = pixbuf->rowstride;
|
2000-06-21 23:29:51 +00:00
|
|
|
|
|
Add gdk_rgb_find_color() to get a pixel value using GdkRGB functionality
Sun Jul 2 12:45:50 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.[ch]: Add gdk_rgb_find_color() to get a pixel
value using GdkRGB functionality given GdkColormap and GdkColor.
(name not final, waiting for inspiration.)
* gdk/gdkgc.[ch] (gdk_gc_set_rgb_fg/bg_color): New functions to
set the foreground/background of a GC using the GC's colormap
and GdkRGB. (name not final, waiting for inspiration.)
* gdk/gdkcompat.h gdk/gdkrgb.c (gdk_rgb_get_colormap): Rename from
gdk_rgb_get_cmap(), put #define in gdkcompat.h.
* gtk/gtkwidget.[ch] gtkcompat.h: Make visuals for
gtk_widget_get_visual(), gtk_widget_get_default_visual, etc,
purely a function of the corresponding colormap. Make
gtk_widget_set_visual(), etc, noop macros in gtkcompat.h.
* gdk/gdkpixmap.c gdk/x11/gdkpixmap-c11.c: Rewrite
gdk_pixbuf_*create_from_xpm_* in terms of
gdk_pixbuf_new_from_xpm_data(), move into platform independent
code.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable): Take
advantage of the new draw_rgb_32_image_dithalign.
* gdk/gdkrgb.c (gdk_draw_rgb_32_image_dithalign): Added.
* gtk/gtkgc.c (gtk_gc_new): Set the appropriate colormap
on each created GC.
* gdk/gdkgc.[ch]: Add gdk_gc_get/set_colormap.
* gdk/gdkgc.[ch]: Add a colormap field to the GdkGC structure
which we initialize from the drawable when the GC is created,
if the drawable has a colormap.
* gdk/x11/gdkgc-x11.c: include string.h for memset.
* gdk/x11/gdkinput-x11.c: include string.h for strlen, etc.
* gtk/gtklayout.[ch]: Remove unsed configure serial member.
2000-07-02 17:03:21 +00:00
|
|
|
|
gdk_draw_rgb_image_dithalign (drawable, gc,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
width, height,
|
|
|
|
|
dither,
|
|
|
|
|
buf, rowstride,
|
|
|
|
|
x_dither, y_dither);
|
|
|
|
|
}
|
1999-10-28 23:25:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_render_to_drawable_alpha:
|
|
|
|
|
* @pixbuf: A pixbuf.
|
|
|
|
|
* @drawable: Destination drawable.
|
|
|
|
|
* @src_x: Source X coordinate within pixbuf.
|
|
|
|
|
* @src_y: Source Y coordinates within pixbuf.
|
|
|
|
|
* @dest_x: Destination X coordinate within drawable.
|
|
|
|
|
* @dest_y: Destination Y coordinate within drawable.
|
|
|
|
|
* @width: Width of region to render, in pixels.
|
|
|
|
|
* @height: Height of region to render, in pixels.
|
|
|
|
|
* @alpha_mode: If the image does not have opacity information, this is ignored.
|
|
|
|
|
* Otherwise, specifies how to handle transparency when rendering.
|
|
|
|
|
* @alpha_threshold: If the image does have opacity information and @alpha_mode
|
|
|
|
|
* is GDK_PIXBUF_ALPHA_BILEVEL, specifies the threshold value for opacity
|
|
|
|
|
* values.
|
|
|
|
|
* @dither: Dithering mode for GdkRGB.
|
|
|
|
|
* @x_dither: X offset for dither.
|
|
|
|
|
* @y_dither: Y offset for dither.
|
|
|
|
|
*
|
|
|
|
|
* Renders a rectangular portion of a pixbuf to a drawable. This is done using
|
|
|
|
|
* GdkRGB, so the specified drawable must have the GdkRGB visual and colormap.
|
1999-11-04 20:16:17 +00:00
|
|
|
|
*
|
1999-11-04 21:52:08 +00:00
|
|
|
|
* When used with #GDK_PIXBUF_ALPHA_BILEVEL, this function has to create a bitmap
|
|
|
|
|
* out of the thresholded alpha channel of the image and, it has to set this
|
|
|
|
|
* bitmap as the clipping mask for the GC used for drawing. This can be a
|
|
|
|
|
* significant performance penalty depending on the size and the complexity of
|
|
|
|
|
* the alpha channel of the image. If performance is crucial, consider handling
|
|
|
|
|
* the alpha channel yourself (possibly by caching it in your application) and
|
|
|
|
|
* using gdk_pixbuf_render_to_drawable() or GdkRGB directly instead.
|
2000-11-01 07:07:46 +00:00
|
|
|
|
*
|
|
|
|
|
* The #GDK_PIXBUF_ALPHA_FULL mode involves round trips to the X
|
|
|
|
|
* server, and may also be somewhat slow in its current implementation
|
|
|
|
|
* (though in the future it could be made significantly faster, in
|
|
|
|
|
* principle).
|
1999-10-28 23:25:02 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gdk_pixbuf_render_to_drawable_alpha (GdkPixbuf *pixbuf,
|
|
|
|
|
GdkDrawable *drawable,
|
|
|
|
|
int src_x, int src_y,
|
|
|
|
|
int dest_x, int dest_y,
|
|
|
|
|
int width, int height,
|
1999-10-28 23:25:02 +00:00
|
|
|
|
GdkPixbufAlphaMode alpha_mode,
|
2000-06-21 23:29:51 +00:00
|
|
|
|
int alpha_threshold,
|
|
|
|
|
GdkRgbDither dither,
|
1999-10-28 23:25:02 +00:00
|
|
|
|
int x_dither, int y_dither)
|
|
|
|
|
{
|
2000-06-21 23:29:51 +00:00
|
|
|
|
GdkBitmap *bitmap = NULL;
|
|
|
|
|
GdkGC *gc;
|
2000-11-01 07:07:46 +00:00
|
|
|
|
GdkPixbuf *composited = NULL;
|
2000-11-01 16:34:23 +00:00
|
|
|
|
gint dwidth, dheight;
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
GdkRegion *clip;
|
|
|
|
|
GdkRegion *drect;
|
|
|
|
|
GdkRectangle tmp_rect;
|
2000-11-01 07:07:46 +00:00
|
|
|
|
|
2000-06-21 23:29:51 +00:00
|
|
|
|
g_return_if_fail (pixbuf != NULL);
|
|
|
|
|
g_return_if_fail (pixbuf->colorspace == GDK_COLORSPACE_RGB);
|
|
|
|
|
g_return_if_fail (pixbuf->n_channels == 3 || pixbuf->n_channels == 4);
|
|
|
|
|
g_return_if_fail (pixbuf->bits_per_sample == 8);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (drawable != NULL);
|
|
|
|
|
g_return_if_fail (width >= 0 && height >= 0);
|
|
|
|
|
g_return_if_fail (src_x >= 0 && src_x + width <= pixbuf->width);
|
|
|
|
|
g_return_if_fail (src_y >= 0 && src_y + height <= pixbuf->height);
|
|
|
|
|
|
2000-11-01 16:34:23 +00:00
|
|
|
|
/* Clip to the drawable; this is required for get_from_drawable() so
|
|
|
|
|
* can't be done implicitly
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (dest_x < 0)
|
|
|
|
|
{
|
|
|
|
|
src_x -= dest_x;
|
|
|
|
|
width += dest_x;
|
|
|
|
|
dest_x = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dest_y < 0)
|
|
|
|
|
{
|
|
|
|
|
src_y -= dest_y;
|
|
|
|
|
height += dest_y;
|
|
|
|
|
dest_y = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gdk_drawable_get_size (drawable, &dwidth, &dheight);
|
|
|
|
|
|
|
|
|
|
if ((dest_x + width) > dwidth)
|
|
|
|
|
width = dwidth - dest_x;
|
|
|
|
|
|
|
|
|
|
if ((dest_y + height) > dheight)
|
|
|
|
|
height = dheight - dest_y;
|
|
|
|
|
|
|
|
|
|
if (width <= 0 || height <= 0)
|
2000-06-21 23:29:51 +00:00
|
|
|
|
return;
|
|
|
|
|
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
/* Clip to the clip region; this avoids getting more
|
|
|
|
|
* image data from the server than we need to.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
tmp_rect.x = dest_x;
|
|
|
|
|
tmp_rect.y = dest_y;
|
|
|
|
|
tmp_rect.width = width;
|
|
|
|
|
tmp_rect.height = height;
|
|
|
|
|
|
|
|
|
|
drect = gdk_region_rectangle (&tmp_rect);
|
|
|
|
|
clip = gdk_drawable_get_clip_region (drawable);
|
|
|
|
|
|
|
|
|
|
gdk_region_intersect (drect, clip);
|
|
|
|
|
|
|
|
|
|
gdk_region_get_clipbox (drect, &tmp_rect);
|
|
|
|
|
|
|
|
|
|
gdk_region_destroy (drect);
|
|
|
|
|
gdk_region_destroy (clip);
|
|
|
|
|
|
|
|
|
|
if (tmp_rect.width == 0 ||
|
|
|
|
|
tmp_rect.height == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2000-11-01 16:34:23 +00:00
|
|
|
|
/* Actually draw */
|
|
|
|
|
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gc = gdk_gc_new (drawable);
|
|
|
|
|
|
|
|
|
|
if (pixbuf->has_alpha)
|
|
|
|
|
{
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
if (alpha_mode == GDK_PIXBUF_ALPHA_FULL)
|
2000-11-01 07:07:46 +00:00
|
|
|
|
{
|
|
|
|
|
GdkPixbuf *sub = NULL;
|
|
|
|
|
|
|
|
|
|
composited = gdk_pixbuf_get_from_drawable (NULL,
|
|
|
|
|
drawable,
|
|
|
|
|
NULL,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
0, 0,
|
|
|
|
|
width, height);
|
|
|
|
|
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
if (composited)
|
2000-11-01 07:07:46 +00:00
|
|
|
|
{
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
if (src_x != 0 || src_y != 0)
|
|
|
|
|
{
|
|
|
|
|
sub = gdk_pixbuf_new_subpixbuf (pixbuf, src_x, src_y,
|
|
|
|
|
width, height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gdk_pixbuf_composite (sub ? sub : pixbuf,
|
|
|
|
|
composited,
|
|
|
|
|
0, 0,
|
|
|
|
|
width, height,
|
|
|
|
|
0, 0,
|
|
|
|
|
1.0, 1.0,
|
|
|
|
|
GDK_INTERP_BILINEAR,
|
|
|
|
|
255);
|
|
|
|
|
|
|
|
|
|
if (sub)
|
|
|
|
|
g_object_unref (G_OBJECT (sub));
|
2000-11-01 07:07:46 +00:00
|
|
|
|
}
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
else
|
|
|
|
|
alpha_mode = GDK_PIXBUF_ALPHA_BILEVEL; /* fall back */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (alpha_mode == GDK_PIXBUF_ALPHA_BILEVEL)
|
|
|
|
|
{
|
|
|
|
|
bitmap = gdk_pixmap_new (NULL, width, height, 1);
|
|
|
|
|
gdk_pixbuf_render_threshold_alpha (pixbuf, bitmap,
|
|
|
|
|
src_x, src_y,
|
|
|
|
|
0, 0,
|
|
|
|
|
width, height,
|
|
|
|
|
alpha_threshold);
|
2000-11-01 07:07:46 +00:00
|
|
|
|
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
gdk_gc_set_clip_mask (gc, bitmap);
|
|
|
|
|
gdk_gc_set_clip_origin (gc, dest_x, dest_y);
|
2000-11-01 07:07:46 +00:00
|
|
|
|
}
|
2000-06-21 23:29:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-11-01 07:07:46 +00:00
|
|
|
|
if (composited)
|
|
|
|
|
{
|
|
|
|
|
gdk_pixbuf_render_to_drawable (composited,
|
|
|
|
|
drawable, gc,
|
|
|
|
|
0, 0,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
width, height,
|
|
|
|
|
dither,
|
|
|
|
|
x_dither, y_dither);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gdk_pixbuf_render_to_drawable (pixbuf,
|
|
|
|
|
drawable, gc,
|
|
|
|
|
src_x, src_y,
|
|
|
|
|
dest_x, dest_y,
|
|
|
|
|
width, height,
|
|
|
|
|
dither,
|
|
|
|
|
x_dither, y_dither);
|
|
|
|
|
}
|
2000-06-21 23:29:51 +00:00
|
|
|
|
|
|
|
|
|
if (bitmap)
|
|
|
|
|
gdk_bitmap_unref (bitmap);
|
|
|
|
|
|
2000-11-01 07:07:46 +00:00
|
|
|
|
if (composited)
|
|
|
|
|
g_object_unref (G_OBJECT (composited));
|
|
|
|
|
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gdk_gc_unref (gc);
|
1999-10-27 23:36:44 +00:00
|
|
|
|
}
|
1999-11-30 17:56:02 +00:00
|
|
|
|
|
2000-01-14 20:59:18 +00:00
|
|
|
|
/**
|
2000-01-17 01:48:21 +00:00
|
|
|
|
* gdk_pixbuf_render_pixmap_and_mask:
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* @pixbuf: A pixbuf.
|
2000-01-17 01:48:21 +00:00
|
|
|
|
* @pixmap_return: Return value for the created pixmap.
|
|
|
|
|
* @mask_return: Return value for the created mask.
|
|
|
|
|
* @alpha_threshold: Threshold value for opacity values.
|
2000-01-14 20:59:18 +00:00
|
|
|
|
*
|
2000-01-17 01:48:21 +00:00
|
|
|
|
* Creates a pixmap and a mask bitmap which are returned in the @pixmap_return
|
|
|
|
|
* and @mask_return arguments, respectively, and renders a pixbuf and its
|
|
|
|
|
* corresponding tresholded alpha mask to them. This is merely a convenience
|
|
|
|
|
* function; applications that need to render pixbufs with dither offsets or to
|
|
|
|
|
* given drawables should use gdk_pixbuf_render_to_drawable_alpha() or
|
|
|
|
|
* gdk_pixbuf_render_to_drawable(), and gdk_pixbuf_render_threshold_alpha().
|
2000-04-11 07:03:25 +00:00
|
|
|
|
*
|
|
|
|
|
* If the pixbuf does not have an alpha channel, then *@mask_return will be set
|
|
|
|
|
* to NULL.
|
2000-01-14 20:59:18 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
2000-06-21 23:29:51 +00:00
|
|
|
|
gdk_pixbuf_render_pixmap_and_mask (GdkPixbuf *pixbuf,
|
|
|
|
|
GdkPixmap **pixmap_return,
|
|
|
|
|
GdkBitmap **mask_return,
|
|
|
|
|
int alpha_threshold)
|
2000-01-14 20:59:18 +00:00
|
|
|
|
{
|
2000-06-21 23:29:51 +00:00
|
|
|
|
g_return_if_fail (pixbuf != NULL);
|
|
|
|
|
|
|
|
|
|
if (pixmap_return)
|
|
|
|
|
{
|
|
|
|
|
GdkGC *gc;
|
|
|
|
|
|
|
|
|
|
*pixmap_return = gdk_pixmap_new (NULL, pixbuf->width, pixbuf->height,
|
|
|
|
|
gdk_rgb_get_visual ()->depth);
|
|
|
|
|
gc = gdk_gc_new (*pixmap_return);
|
|
|
|
|
gdk_pixbuf_render_to_drawable (pixbuf, *pixmap_return, gc,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
pixbuf->width, pixbuf->height,
|
|
|
|
|
GDK_RGB_DITHER_NORMAL,
|
|
|
|
|
0, 0);
|
|
|
|
|
gdk_gc_unref (gc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mask_return)
|
|
|
|
|
{
|
|
|
|
|
if (pixbuf->has_alpha)
|
|
|
|
|
{
|
|
|
|
|
*mask_return = gdk_pixmap_new (NULL, pixbuf->width, pixbuf->height, 1);
|
|
|
|
|
gdk_pixbuf_render_threshold_alpha (pixbuf, *mask_return,
|
|
|
|
|
0, 0, 0, 0,
|
|
|
|
|
pixbuf->width, pixbuf->height,
|
|
|
|
|
alpha_threshold);
|
2000-01-17 01:48:21 +00:00
|
|
|
|
}
|
2000-06-21 23:29:51 +00:00
|
|
|
|
else
|
|
|
|
|
*mask_return = NULL;
|
|
|
|
|
}
|
2000-01-14 20:59:18 +00:00
|
|
|
|
}
|