2000-02-07 02:36:39 +00:00
|
|
|
/* GTK+ Pixbuf Engine
|
2000-03-06 16:12:22 +00:00
|
|
|
* Copyright (C) 1998-2000 Red Hat, Inc.
|
2000-02-07 02:36:39 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by Owen Taylor <otaylor@redhat.com>, based on code by
|
|
|
|
* Carsten Haitzler <raster@rasterman.com>
|
|
|
|
*/
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-03-06 18:47:32 +00:00
|
|
|
#include "pixbuf.h"
|
2000-02-07 02:36:39 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
|
2003-07-15 11:40:19 +00:00
|
|
|
static GCache *pixbuf_cache = NULL;
|
2000-02-07 02:36:39 +00:00
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
static GdkPixbuf *
|
|
|
|
bilinear_gradient (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
guchar *src_pixels = gdk_pixbuf_get_pixels (src);
|
|
|
|
guchar *p1, *p2, *p3, *p4;
|
|
|
|
guint dest_rowstride;
|
|
|
|
guchar *dest_pixels;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
int i, j, k;
|
|
|
|
|
2006-01-17 20:02:54 +00:00
|
|
|
if (src_x == 0 || src_y == 0)
|
|
|
|
{
|
2010-01-08 18:22:19 +00:00
|
|
|
g_warning ("invalid source position for bilinear gradient");
|
2006-01-17 20:02:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
p1 = src_pixels + (src_y - 1) * src_rowstride + (src_x - 1) * n_channels;
|
|
|
|
p2 = p1 + n_channels;
|
|
|
|
p3 = src_pixels + src_y * src_rowstride + (src_x - 1) * n_channels;
|
|
|
|
p4 = p3 + n_channels;
|
|
|
|
|
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
|
|
|
guchar *p = dest_pixels + dest_rowstride *i;
|
|
|
|
guint v[4];
|
|
|
|
gint dv[4];
|
|
|
|
|
|
|
|
for (k = 0; k < n_channels; k++)
|
|
|
|
{
|
|
|
|
guint start = ((height - i) * p1[k] + (1 + i) * p3[k]) / (height + 1);
|
|
|
|
guint end = ((height - i) * p2[k] + (1 + i) * p4[k]) / (height + 1);
|
|
|
|
|
|
|
|
dv[k] = (((gint)end - (gint)start) << 16) / (width + 1);
|
|
|
|
v[k] = (start << 16) + dv[k] + 0x8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = width; j; j--)
|
|
|
|
{
|
|
|
|
for (k = 0; k < n_channels; k++)
|
|
|
|
{
|
|
|
|
*(p++) = v[k] >> 16;
|
|
|
|
v[k] += dv[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
horizontal_gradient (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
guchar *src_pixels = gdk_pixbuf_get_pixels (src);
|
|
|
|
guint dest_rowstride;
|
|
|
|
guchar *dest_pixels;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
int i, j, k;
|
|
|
|
|
2006-01-17 20:02:54 +00:00
|
|
|
if (src_x == 0)
|
|
|
|
{
|
2010-01-08 18:22:19 +00:00
|
|
|
g_warning ("invalid source position for horizontal gradient");
|
2006-01-17 20:02:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
|
|
|
guchar *p = dest_pixels + dest_rowstride *i;
|
|
|
|
guchar *p1 = src_pixels + (src_y + i) * src_rowstride + (src_x - 1) * n_channels;
|
|
|
|
guchar *p2 = p1 + n_channels;
|
|
|
|
|
|
|
|
guint v[4];
|
|
|
|
gint dv[4];
|
|
|
|
|
|
|
|
for (k = 0; k < n_channels; k++)
|
|
|
|
{
|
|
|
|
dv[k] = (((gint)p2[k] - (gint)p1[k]) << 16) / (width + 1);
|
|
|
|
v[k] = (p1[k] << 16) + dv[k] + 0x8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = width; j; j--)
|
|
|
|
{
|
|
|
|
for (k = 0; k < n_channels; k++)
|
|
|
|
{
|
|
|
|
*(p++) = v[k] >> 16;
|
|
|
|
v[k] += dv[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
vertical_gradient (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
guchar *src_pixels = gdk_pixbuf_get_pixels (src);
|
|
|
|
guchar *top_pixels, *bottom_pixels;
|
|
|
|
guint dest_rowstride;
|
|
|
|
guchar *dest_pixels;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
int i, j;
|
|
|
|
|
2006-01-17 20:02:54 +00:00
|
|
|
if (src_y == 0)
|
|
|
|
{
|
2010-01-08 18:22:19 +00:00
|
|
|
g_warning ("invalid source position for vertical gradient");
|
2006-01-17 20:02:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
top_pixels = src_pixels + (src_y - 1) * src_rowstride + (src_x) * n_channels;
|
|
|
|
bottom_pixels = top_pixels + src_rowstride;
|
|
|
|
|
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
|
|
|
guchar *p = dest_pixels + dest_rowstride *i;
|
|
|
|
guchar *p1 = top_pixels;
|
|
|
|
guchar *p2 = bottom_pixels;
|
|
|
|
|
|
|
|
for (j = width * n_channels; j; j--)
|
|
|
|
*(p++) = ((height - i) * *(p1++) + (1 + i) * *(p2++)) / (height + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
static GdkPixbuf *
|
|
|
|
replicate_single (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guchar *pixels = (gdk_pixbuf_get_pixels (src) +
|
|
|
|
src_y * gdk_pixbuf_get_rowstride (src) +
|
|
|
|
src_x * n_channels);
|
|
|
|
guchar r = *(pixels++);
|
|
|
|
guchar g = *(pixels++);
|
|
|
|
guchar b = *(pixels++);
|
|
|
|
guint dest_rowstride;
|
|
|
|
guchar *dest_pixels;
|
|
|
|
guchar a = 0;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (n_channels == 4)
|
|
|
|
a = *(pixels++);
|
|
|
|
|
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
|
|
|
guchar *p = dest_pixels + dest_rowstride *i;
|
|
|
|
|
|
|
|
for (j = 0; j < width; j++)
|
|
|
|
{
|
|
|
|
*(p++) = r;
|
|
|
|
*(p++) = g;
|
|
|
|
*(p++) = b;
|
|
|
|
|
|
|
|
if (n_channels == 4)
|
|
|
|
*(p++) = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
replicate_rows (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
guchar *pixels = (gdk_pixbuf_get_pixels (src) + src_y * src_rowstride + src_x * n_channels);
|
|
|
|
guchar *dest_pixels;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
guint dest_rowstride;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
memcpy (dest_pixels + dest_rowstride * i, pixels, n_channels * width);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
replicate_cols (GdkPixbuf *src,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
guint n_channels = gdk_pixbuf_get_n_channels (src);
|
|
|
|
guint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
guchar *pixels = (gdk_pixbuf_get_pixels (src) + src_y * src_rowstride + src_x * n_channels);
|
|
|
|
guchar *dest_pixels;
|
|
|
|
GdkPixbuf *result;
|
|
|
|
guint dest_rowstride;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
result = gdk_pixbuf_new (GDK_COLORSPACE_RGB, n_channels == 4, 8,
|
|
|
|
width, height);
|
2010-01-08 18:22:19 +00:00
|
|
|
|
|
|
|
if (result == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("failed to create a %dx%d pixbuf", width, height);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
dest_rowstride = gdk_pixbuf_get_rowstride (result);
|
|
|
|
dest_pixels = gdk_pixbuf_get_pixels (result);
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++)
|
|
|
|
{
|
|
|
|
guchar *p = dest_pixels + dest_rowstride * i;
|
|
|
|
guchar *q = pixels + src_rowstride * i;
|
|
|
|
|
|
|
|
guchar r = *(q++);
|
|
|
|
guchar g = *(q++);
|
|
|
|
guchar b = *(q++);
|
|
|
|
guchar a = 0;
|
|
|
|
|
|
|
|
if (n_channels == 4)
|
|
|
|
a = *(q++);
|
|
|
|
|
|
|
|
for (j = 0; j < width; j++)
|
|
|
|
{
|
|
|
|
*(p++) = r;
|
|
|
|
*(p++) = g;
|
|
|
|
*(p++) = b;
|
|
|
|
|
|
|
|
if (n_channels == 4)
|
|
|
|
*(p++) = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2000-07-09 22:18:21 +00:00
|
|
|
/* Scale the rectangle (src_x, src_y, src_width, src_height)
|
|
|
|
* onto the rectangle (dest_x, dest_y, dest_width, dest_height)
|
|
|
|
* of the destination, clip by clip_rect and render
|
|
|
|
*/
|
2000-02-07 02:36:39 +00:00
|
|
|
static void
|
|
|
|
pixbuf_render (GdkPixbuf *src,
|
2002-01-19 05:39:43 +00:00
|
|
|
guint hints,
|
2000-02-07 02:36:39 +00:00
|
|
|
GdkWindow *window,
|
|
|
|
GdkBitmap *mask,
|
|
|
|
GdkRectangle *clip_rect,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint src_width,
|
|
|
|
gint src_height,
|
|
|
|
gint dest_x,
|
|
|
|
gint dest_y,
|
|
|
|
gint dest_width,
|
|
|
|
gint dest_height)
|
|
|
|
{
|
2006-01-17 20:02:54 +00:00
|
|
|
GdkPixbuf *tmp_pixbuf = NULL;
|
2000-02-07 02:36:39 +00:00
|
|
|
GdkRectangle rect;
|
|
|
|
int x_offset, y_offset;
|
2000-07-09 22:18:21 +00:00
|
|
|
gboolean has_alpha = gdk_pixbuf_get_has_alpha (src);
|
|
|
|
gint src_rowstride = gdk_pixbuf_get_rowstride (src);
|
|
|
|
gint src_n_channels = gdk_pixbuf_get_n_channels (src);
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
if (dest_width <= 0 || dest_height <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
rect.x = dest_x;
|
|
|
|
rect.y = dest_y;
|
|
|
|
rect.width = dest_width;
|
|
|
|
rect.height = dest_height;
|
|
|
|
|
2002-01-28 05:34:17 +00:00
|
|
|
if (hints & THEME_MISSING)
|
|
|
|
return;
|
|
|
|
|
2000-07-09 22:18:21 +00:00
|
|
|
/* FIXME: Because we use the mask to shape windows, we don't use
|
|
|
|
* clip_rect to clip what we draw to the mask, only to clip
|
|
|
|
* what we actually draw. But this leads to the horrible ineffiency
|
|
|
|
* of scale the whole image to get a little bit of it.
|
2000-02-07 02:36:39 +00:00
|
|
|
*/
|
2000-07-09 22:18:21 +00:00
|
|
|
if (!mask && clip_rect)
|
|
|
|
{
|
2002-01-19 05:39:43 +00:00
|
|
|
if (!gdk_rectangle_intersect (clip_rect, &rect, &rect))
|
2000-07-09 22:18:21 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-01-19 05:39:43 +00:00
|
|
|
|
|
|
|
if (dest_width == src_width && dest_height == src_height)
|
|
|
|
{
|
|
|
|
tmp_pixbuf = g_object_ref (src);
|
|
|
|
|
|
|
|
x_offset = src_x + rect.x - dest_x;
|
|
|
|
y_offset = src_y + rect.y - dest_y;
|
|
|
|
}
|
2002-02-07 05:43:55 +00:00
|
|
|
else if (src_width == 0 && src_height == 0)
|
|
|
|
{
|
|
|
|
tmp_pixbuf = bilinear_gradient (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
|
|
|
else if (src_width == 0 && dest_height == src_height)
|
|
|
|
{
|
|
|
|
tmp_pixbuf = horizontal_gradient (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
|
|
|
else if (src_height == 0 && dest_width == src_width)
|
|
|
|
{
|
|
|
|
tmp_pixbuf = vertical_gradient (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
2002-01-19 05:39:43 +00:00
|
|
|
else if ((hints & THEME_CONSTANT_COLS) && (hints & THEME_CONSTANT_ROWS))
|
|
|
|
{
|
|
|
|
tmp_pixbuf = replicate_single (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
|
|
|
else if (dest_width == src_width && (hints & THEME_CONSTANT_COLS))
|
|
|
|
{
|
|
|
|
tmp_pixbuf = replicate_rows (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
|
|
|
else if (dest_height == src_height && (hints & THEME_CONSTANT_ROWS))
|
|
|
|
{
|
|
|
|
tmp_pixbuf = replicate_cols (src, src_x, src_y, dest_width, dest_height);
|
|
|
|
|
|
|
|
x_offset = rect.x - dest_x;
|
|
|
|
y_offset = rect.y - dest_y;
|
|
|
|
}
|
2006-01-17 20:02:54 +00:00
|
|
|
else if (src_width > 0 && src_height > 0)
|
2000-02-07 02:36:39 +00:00
|
|
|
{
|
2000-07-09 22:18:21 +00:00
|
|
|
double x_scale = (double)dest_width / src_width;
|
|
|
|
double y_scale = (double)dest_height / src_height;
|
|
|
|
guchar *pixels;
|
|
|
|
GdkPixbuf *partial_src;
|
|
|
|
|
|
|
|
pixels = (gdk_pixbuf_get_pixels (src)
|
|
|
|
+ src_y * src_rowstride
|
|
|
|
+ src_x * src_n_channels);
|
|
|
|
|
|
|
|
partial_src = gdk_pixbuf_new_from_data (pixels, GDK_COLORSPACE_RGB,
|
|
|
|
has_alpha,
|
|
|
|
8, src_width, src_height,
|
|
|
|
src_rowstride,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
tmp_pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
|
|
|
|
has_alpha, 8,
|
|
|
|
rect.width, rect.height);
|
|
|
|
|
|
|
|
gdk_pixbuf_scale (partial_src, tmp_pixbuf,
|
|
|
|
0, 0, rect.width, rect.height,
|
2000-03-06 16:12:22 +00:00
|
|
|
dest_x - rect.x, dest_y - rect.y,
|
2000-07-09 22:18:21 +00:00
|
|
|
x_scale, y_scale,
|
|
|
|
GDK_INTERP_BILINEAR);
|
|
|
|
|
2004-11-15 18:42:12 +00:00
|
|
|
g_object_unref (partial_src);
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
x_offset = 0;
|
|
|
|
y_offset = 0;
|
|
|
|
}
|
|
|
|
|
2006-01-17 20:02:54 +00:00
|
|
|
if (tmp_pixbuf)
|
2000-02-07 02:36:39 +00:00
|
|
|
{
|
2006-01-17 20:02:54 +00:00
|
|
|
if (mask)
|
|
|
|
{
|
|
|
|
gdk_pixbuf_render_threshold_alpha (tmp_pixbuf, mask,
|
|
|
|
x_offset, y_offset,
|
|
|
|
rect.x, rect.y,
|
|
|
|
rect.width, rect.height,
|
|
|
|
128);
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_draw_pixbuf (window, NULL, tmp_pixbuf,
|
|
|
|
x_offset, y_offset,
|
|
|
|
rect.x, rect.y,
|
|
|
|
rect.width, rect.height,
|
|
|
|
GDK_RGB_DITHER_NORMAL,
|
|
|
|
0, 0);
|
|
|
|
g_object_unref (tmp_pixbuf);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemePixbuf *
|
|
|
|
theme_pixbuf_new (void)
|
|
|
|
{
|
2002-01-19 05:39:43 +00:00
|
|
|
ThemePixbuf *result = g_new0 (ThemePixbuf, 1);
|
2000-02-07 02:36:39 +00:00
|
|
|
result->filename = NULL;
|
|
|
|
result->pixbuf = NULL;
|
|
|
|
|
|
|
|
result->stretch = TRUE;
|
|
|
|
result->border_left = 0;
|
|
|
|
result->border_right = 0;
|
|
|
|
result->border_bottom = 0;
|
|
|
|
result->border_top = 0;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
theme_pixbuf_destroy (ThemePixbuf *theme_pb)
|
|
|
|
{
|
2002-01-28 05:34:17 +00:00
|
|
|
theme_pixbuf_set_filename (theme_pb, NULL);
|
|
|
|
g_free (theme_pb);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
theme_pixbuf_set_filename (ThemePixbuf *theme_pb,
|
|
|
|
const char *filename)
|
|
|
|
{
|
|
|
|
if (theme_pb->pixbuf)
|
|
|
|
{
|
|
|
|
g_cache_remove (pixbuf_cache, theme_pb->pixbuf);
|
|
|
|
theme_pb->pixbuf = NULL;
|
|
|
|
}
|
|
|
|
|
2007-03-09 21:57:37 +00:00
|
|
|
g_free (theme_pb->filename);
|
2000-02-07 02:36:39 +00:00
|
|
|
|
2002-01-28 05:34:17 +00:00
|
|
|
if (filename)
|
|
|
|
theme_pb->filename = g_strdup (filename);
|
|
|
|
else
|
|
|
|
theme_pb->filename = NULL;
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
static guint
|
|
|
|
compute_hint (GdkPixbuf *pixbuf,
|
|
|
|
gint x0,
|
|
|
|
gint x1,
|
|
|
|
gint y0,
|
|
|
|
gint y1)
|
|
|
|
{
|
|
|
|
int i, j;
|
2002-01-28 05:34:17 +00:00
|
|
|
int hints = THEME_CONSTANT_ROWS | THEME_CONSTANT_COLS | THEME_MISSING;
|
2002-01-19 05:39:43 +00:00
|
|
|
int n_channels = gdk_pixbuf_get_n_channels (pixbuf);
|
|
|
|
|
|
|
|
guchar *data = gdk_pixbuf_get_pixels (pixbuf);
|
|
|
|
int rowstride = gdk_pixbuf_get_rowstride (pixbuf);
|
|
|
|
|
|
|
|
if (x0 == x1 || y0 == y1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = y0; i < y1; i++)
|
|
|
|
{
|
|
|
|
guchar *p = data + i * rowstride + x0 * n_channels;
|
2002-01-28 20:36:38 +00:00
|
|
|
guchar r = p[0];
|
|
|
|
guchar g = p[1];
|
|
|
|
guchar b = p[2];
|
2002-01-19 05:39:43 +00:00
|
|
|
guchar a = 0;
|
|
|
|
|
|
|
|
if (n_channels == 4)
|
2002-01-28 20:36:38 +00:00
|
|
|
a = p[3];
|
2002-01-19 05:39:43 +00:00
|
|
|
|
2002-01-28 17:25:14 +00:00
|
|
|
for (j = x0; j < x1 ; j++)
|
2002-01-19 05:39:43 +00:00
|
|
|
{
|
2002-01-28 17:25:14 +00:00
|
|
|
if (n_channels != 4 || p[3] != 0)
|
2002-01-28 05:34:17 +00:00
|
|
|
{
|
|
|
|
hints &= ~THEME_MISSING;
|
|
|
|
if (!(hints & THEME_CONSTANT_ROWS))
|
|
|
|
goto cols;
|
|
|
|
}
|
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
if (r != *(p++) ||
|
|
|
|
g != *(p++) ||
|
|
|
|
b != *(p++) ||
|
2002-01-28 05:34:17 +00:00
|
|
|
(n_channels != 4 && a != *(p++)))
|
2002-01-19 05:39:43 +00:00
|
|
|
{
|
|
|
|
hints &= ~THEME_CONSTANT_ROWS;
|
2002-01-28 05:34:17 +00:00
|
|
|
if (!(hints & THEME_MISSING))
|
|
|
|
goto cols;
|
2002-01-19 05:39:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cols:
|
|
|
|
for (i = y0 + 1; i < y1; i++)
|
|
|
|
{
|
|
|
|
guchar *base = data + y0 * rowstride + x0 * n_channels;
|
|
|
|
guchar *p = data + i * rowstride + x0 * n_channels;
|
|
|
|
|
|
|
|
if (memcmp (p, base, n_channels * (x1 - x0)) != 0)
|
|
|
|
{
|
|
|
|
hints &= ~THEME_CONSTANT_COLS;
|
|
|
|
return hints;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hints;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
theme_pixbuf_compute_hints (ThemePixbuf *theme_pb)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
gint width = gdk_pixbuf_get_width (theme_pb->pixbuf);
|
|
|
|
gint height = gdk_pixbuf_get_height (theme_pb->pixbuf);
|
2002-01-19 07:52:52 +00:00
|
|
|
|
2002-02-07 05:43:55 +00:00
|
|
|
if (theme_pb->border_left + theme_pb->border_right > width ||
|
|
|
|
theme_pb->border_top + theme_pb->border_bottom > height)
|
2002-01-19 07:52:52 +00:00
|
|
|
{
|
|
|
|
g_warning ("Invalid borders specified for theme pixmap:\n"
|
|
|
|
" %s,\n"
|
2002-02-07 05:43:55 +00:00
|
|
|
"borders don't fit within the image", theme_pb->filename);
|
|
|
|
if (theme_pb->border_left + theme_pb->border_right > width)
|
|
|
|
{
|
|
|
|
theme_pb->border_left = width / 2;
|
|
|
|
theme_pb->border_right = (width + 1) / 2;
|
|
|
|
}
|
|
|
|
if (theme_pb->border_bottom + theme_pb->border_top > height)
|
|
|
|
{
|
|
|
|
theme_pb->border_top = height / 2;
|
|
|
|
theme_pb->border_bottom = (height + 1) / 2;
|
|
|
|
}
|
2002-01-19 07:52:52 +00:00
|
|
|
}
|
2002-01-19 05:39:43 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
gint y0, y1;
|
|
|
|
|
|
|
|
switch (i)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
y0 = 0;
|
|
|
|
y1 = theme_pb->border_top;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
y0 = theme_pb->border_top;
|
|
|
|
y1 = height - theme_pb->border_bottom;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
y0 = height - theme_pb->border_bottom;
|
|
|
|
y1 = height;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
{
|
|
|
|
gint x0, x1;
|
|
|
|
|
|
|
|
switch (j)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
x0 = 0;
|
|
|
|
x1 = theme_pb->border_left;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
x0 = theme_pb->border_left;
|
|
|
|
x1 = width - theme_pb->border_right;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
x0 = width - theme_pb->border_right;
|
|
|
|
x1 = width;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
theme_pb->hints[i][j] = compute_hint (theme_pb->pixbuf, x0, x1, y0, y1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-02-07 02:36:39 +00:00
|
|
|
void
|
|
|
|
theme_pixbuf_set_border (ThemePixbuf *theme_pb,
|
|
|
|
gint left,
|
|
|
|
gint right,
|
|
|
|
gint top,
|
|
|
|
gint bottom)
|
|
|
|
{
|
|
|
|
theme_pb->border_left = left;
|
|
|
|
theme_pb->border_right = right;
|
|
|
|
theme_pb->border_top = top;
|
|
|
|
theme_pb->border_bottom = bottom;
|
2002-01-19 05:39:43 +00:00
|
|
|
|
|
|
|
if (theme_pb->pixbuf)
|
|
|
|
theme_pixbuf_compute_hints (theme_pb);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
theme_pixbuf_set_stretch (ThemePixbuf *theme_pb,
|
|
|
|
gboolean stretch)
|
|
|
|
{
|
|
|
|
theme_pb->stretch = stretch;
|
2002-01-19 05:39:43 +00:00
|
|
|
|
|
|
|
if (theme_pb->pixbuf)
|
|
|
|
theme_pixbuf_compute_hints (theme_pb);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
|
2006-03-11 02:13:11 +00:00
|
|
|
static GdkPixbuf *
|
2000-02-07 02:36:39 +00:00
|
|
|
pixbuf_cache_value_new (gchar *filename)
|
|
|
|
{
|
2001-02-01 23:55:43 +00:00
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
GdkPixbuf *result = gdk_pixbuf_new_from_file (filename, &err);
|
2000-02-07 02:36:39 +00:00
|
|
|
if (!result)
|
2001-02-01 23:55:43 +00:00
|
|
|
{
|
|
|
|
g_warning ("Pixbuf theme: Cannot load pixmap file %s: %s\n",
|
|
|
|
filename, err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
}
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkPixbuf *
|
|
|
|
theme_pixbuf_get_pixbuf (ThemePixbuf *theme_pb)
|
|
|
|
{
|
|
|
|
if (!theme_pb->pixbuf)
|
|
|
|
{
|
|
|
|
if (!pixbuf_cache)
|
|
|
|
pixbuf_cache = g_cache_new ((GCacheNewFunc)pixbuf_cache_value_new,
|
2004-11-15 18:42:12 +00:00
|
|
|
(GCacheDestroyFunc)g_object_unref,
|
2000-02-07 02:36:39 +00:00
|
|
|
(GCacheDupFunc)g_strdup,
|
|
|
|
(GCacheDestroyFunc)g_free,
|
|
|
|
g_str_hash, g_direct_hash, g_str_equal);
|
|
|
|
|
|
|
|
theme_pb->pixbuf = g_cache_insert (pixbuf_cache, theme_pb->filename);
|
2002-01-19 05:39:43 +00:00
|
|
|
|
|
|
|
if (theme_pb->stretch)
|
|
|
|
theme_pixbuf_compute_hints (theme_pb);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return theme_pb->pixbuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
theme_pixbuf_render (ThemePixbuf *theme_pb,
|
|
|
|
GdkWindow *window,
|
|
|
|
GdkBitmap *mask,
|
|
|
|
GdkRectangle *clip_rect,
|
|
|
|
guint component_mask,
|
|
|
|
gboolean center,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
GdkPixbuf *pixbuf = theme_pixbuf_get_pixbuf (theme_pb);
|
|
|
|
gint src_x[4], src_y[4], dest_x[4], dest_y[4];
|
2000-07-09 22:18:21 +00:00
|
|
|
gint pixbuf_width = gdk_pixbuf_get_width (pixbuf);
|
|
|
|
gint pixbuf_height = gdk_pixbuf_get_height (pixbuf);
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
if (!pixbuf)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (theme_pb->stretch)
|
|
|
|
{
|
2005-06-12 06:04:40 +00:00
|
|
|
if (component_mask & COMPONENT_ALL)
|
|
|
|
component_mask = (COMPONENT_ALL - 1) & ~component_mask;
|
|
|
|
|
2000-02-07 02:36:39 +00:00
|
|
|
src_x[0] = 0;
|
|
|
|
src_x[1] = theme_pb->border_left;
|
2000-07-09 22:18:21 +00:00
|
|
|
src_x[2] = pixbuf_width - theme_pb->border_right;
|
|
|
|
src_x[3] = pixbuf_width;
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
src_y[0] = 0;
|
|
|
|
src_y[1] = theme_pb->border_top;
|
2000-07-09 22:18:21 +00:00
|
|
|
src_y[2] = pixbuf_height - theme_pb->border_bottom;
|
|
|
|
src_y[3] = pixbuf_height;
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
dest_x[0] = x;
|
|
|
|
dest_x[1] = x + theme_pb->border_left;
|
|
|
|
dest_x[2] = x + width - theme_pb->border_right;
|
|
|
|
dest_x[3] = x + width;
|
|
|
|
|
2005-06-12 06:04:40 +00:00
|
|
|
if (dest_x[1] > dest_x[2])
|
|
|
|
{
|
|
|
|
component_mask &= ~(COMPONENT_NORTH | COMPONENT_SOUTH | COMPONENT_CENTER);
|
|
|
|
dest_x[1] = dest_x[2] = (dest_x[1] + dest_x[2]) / 2;
|
|
|
|
}
|
|
|
|
|
2000-02-07 02:36:39 +00:00
|
|
|
dest_y[0] = y;
|
|
|
|
dest_y[1] = y + theme_pb->border_top;
|
|
|
|
dest_y[2] = y + height - theme_pb->border_bottom;
|
|
|
|
dest_y[3] = y + height;
|
|
|
|
|
2005-06-12 06:04:40 +00:00
|
|
|
if (dest_y[1] > dest_y[2])
|
|
|
|
{
|
|
|
|
component_mask &= ~(COMPONENT_EAST | COMPONENT_WEST | COMPONENT_CENTER);
|
|
|
|
dest_y[1] = dest_y[2] = (dest_y[1] + dest_y[2]) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-02-07 02:36:39 +00:00
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
#define RENDER_COMPONENT(X1,X2,Y1,Y2) \
|
|
|
|
pixbuf_render (pixbuf, theme_pb->hints[Y1][X1], window, mask, clip_rect, \
|
|
|
|
src_x[X1], src_y[Y1], \
|
|
|
|
src_x[X2] - src_x[X1], src_y[Y2] - src_y[Y1], \
|
|
|
|
dest_x[X1], dest_y[Y1], \
|
2000-02-07 02:36:39 +00:00
|
|
|
dest_x[X2] - dest_x[X1], dest_y[Y2] - dest_y[Y1]);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_NORTH_WEST)
|
|
|
|
RENDER_COMPONENT (0, 1, 0, 1);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_NORTH)
|
|
|
|
RENDER_COMPONENT (1, 2, 0, 1);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_NORTH_EAST)
|
|
|
|
RENDER_COMPONENT (2, 3, 0, 1);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_WEST)
|
|
|
|
RENDER_COMPONENT (0, 1, 1, 2);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_CENTER)
|
|
|
|
RENDER_COMPONENT (1, 2, 1, 2);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_EAST)
|
|
|
|
RENDER_COMPONENT (2, 3, 1, 2);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_SOUTH_WEST)
|
|
|
|
RENDER_COMPONENT (0, 1, 2, 3);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_SOUTH)
|
|
|
|
RENDER_COMPONENT (1, 2, 2, 3);
|
|
|
|
|
|
|
|
if (component_mask & COMPONENT_SOUTH_EAST)
|
|
|
|
RENDER_COMPONENT (2, 3, 2, 3);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (center)
|
|
|
|
{
|
2000-07-09 22:18:21 +00:00
|
|
|
x += (width - pixbuf_width) / 2;
|
|
|
|
y += (height - pixbuf_height) / 2;
|
2000-02-07 02:36:39 +00:00
|
|
|
|
2002-01-19 05:39:43 +00:00
|
|
|
pixbuf_render (pixbuf, 0, window, NULL, clip_rect,
|
2000-02-07 02:36:39 +00:00
|
|
|
0, 0,
|
2000-07-09 22:18:21 +00:00
|
|
|
pixbuf_width, pixbuf_height,
|
2000-02-07 02:36:39 +00:00
|
|
|
x, y,
|
2000-07-09 22:18:21 +00:00
|
|
|
pixbuf_width, pixbuf_height);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GdkPixmap *tmp_pixmap;
|
|
|
|
GdkGC *tmp_gc;
|
|
|
|
GdkGCValues gc_values;
|
|
|
|
|
|
|
|
tmp_pixmap = gdk_pixmap_new (window,
|
2000-07-09 22:18:21 +00:00
|
|
|
pixbuf_width,
|
|
|
|
pixbuf_height,
|
2000-02-07 02:36:39 +00:00
|
|
|
-1);
|
|
|
|
tmp_gc = gdk_gc_new (tmp_pixmap);
|
2004-11-16 01:20:47 +00:00
|
|
|
gdk_draw_pixbuf (tmp_pixmap, tmp_gc, pixbuf,
|
|
|
|
0, 0,
|
|
|
|
0, 0,
|
|
|
|
pixbuf_width, pixbuf_height,
|
|
|
|
GDK_RGB_DITHER_NORMAL,
|
|
|
|
0, 0);
|
|
|
|
g_object_unref (tmp_gc);
|
2000-02-07 02:36:39 +00:00
|
|
|
|
|
|
|
gc_values.fill = GDK_TILED;
|
|
|
|
gc_values.tile = tmp_pixmap;
|
|
|
|
tmp_gc = gdk_gc_new_with_values (window,
|
|
|
|
&gc_values, GDK_GC_FILL | GDK_GC_TILE);
|
|
|
|
if (clip_rect)
|
|
|
|
gdk_draw_rectangle (window, tmp_gc, TRUE,
|
|
|
|
clip_rect->x, clip_rect->y, clip_rect->width, clip_rect->height);
|
|
|
|
else
|
|
|
|
gdk_draw_rectangle (window, tmp_gc, TRUE, x, y, width, height);
|
|
|
|
|
2004-11-16 01:20:47 +00:00
|
|
|
g_object_unref (tmp_gc);
|
2004-11-15 18:42:12 +00:00
|
|
|
g_object_unref (tmp_pixmap);
|
2000-02-07 02:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|