1999-10-20 21:20:49 +00:00
|
|
|
|
/* GdkPixbuf library - Image creation from in-memory buffers
|
1999-10-08 23:01:05 +00:00
|
|
|
|
*
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* 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-20 21:20:49 +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-20 21:20:49 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-10-20 21:20:49 +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.
|
1999-10-08 23:01:05 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2004-08-11 04:10:18 +00:00
|
|
|
|
#include "gdk-pixbuf-alias.h"
|
1999-12-02 20:44:43 +00:00
|
|
|
|
#include "gdk-pixbuf.h"
|
2000-04-11 07:03:25 +00:00
|
|
|
|
#include "gdk-pixbuf-private.h"
|
Move more text widget headers into the private header list
2000-09-26 Havoc Pennington <hp@redhat.com>
* gtk/Makefile.am (gtk_private_h_sources): Move more text widget
headers into the private header list
* Makefile.am (pkgconfig_DATA): install pkg-config files
* configure.in: add pkg-config files
* gdk-2.0.pc.in, gdk-pixbuf.pc.in, gtk+-2.0.pc.in: pkg-config files
* gtk/gtkwindow.c (gtk_window_read_rcfiles): Invalidate
outstanding icon caches on theme change.
* gtk/gtkiconfactory.h, gtk/gtkiconfactory.c: New icon system. Three
important types:
(GtkIconSource): Specification for creating a pixbuf
appropriate for a direction/state/size triplet from
a source pixbuf or filename
(GtkIconSet): List of GtkIconSource objects that are used to
create the "same" icon (e.g. an OK button icon), and cache for
rendered icons
(GtkIconFactory): Hash from stock ID to GtkIconSet; used to look
up the icon set for a given stock ID. GTK maintains a stack of
GtkIconFactory to search, and applications or libraries can add
additional icon factories on top of the stack
* gtk/gtkrc.h, gtk/gtkrc.c: When loading an RcStyle, parse
the set of GtkIconSource specified for a given stock ID into
a GtkIconSet, and put the GtkIconSet into a GtkIconFactory for the
RcStyle, under the specified stock ID.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Add a virtual function
render_icon used to derive a GdkPixbuf from a GtkIconSource.
This allows people to theme how prelight, insensitive, etc. are
done.
(gtk_style_lookup_icon_set): Look up a stock ID in the list of
icon factories for a style, and return the resulting
icon set if any.
(gtk_style_render_icon): Render an icon using the render_icon
method in the GtkStyleClass.
* gtk/gtkwidget.h, gtk/gtkwidget.c (gtk_widget_render_icon):
Use the style for a given widget to look up a stock ID, get the
icon set, and render an icon using the render_icon method
of the style
* gtk/gtkstock.h, gtk/gtkstock.c: Header with the GtkStockItem type
(contains information about a stock item), the built-in stock item
IDs, and functions to add/lookup stock items.
* gtk/stock-icons/*: Stock icons that come with GTK
* gtk/gtkbutton.h, gtk/gtkbutton.c (gtk_button_new_stock): Returns
a button based on a GtkStockItem
(gtk_button_new_accel): Takes a uline string and accel group, and
installs the accelerator.
* gtk/gtkimage.h, gtk/gtkimage.c: Make this into a generic
image-display widget.
2000-09-26 20:22:17 +00:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_new_from_data:
|
|
|
|
|
* @data: Image data in 8-bit/sample packed format.
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* @colorspace: Colorspace for the image data.
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* @has_alpha: Whether the data has an opacity channel.
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* @bits_per_sample: Number of bits per sample.
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* @width: Width of the image in pixels.
|
|
|
|
|
* @height: Height of the image in pixels.
|
2003-08-03 21:51:24 +00:00
|
|
|
|
* @rowstride: Distance in bytes between row starts.
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* @destroy_fn: Function used to free the data when the pixbuf's reference count
|
More precise documentation about underscores and mnemonics. (#66380)
* gtk/gtklabel.c (gtk_label_new_with_mnemonic),
gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
documentation about underscores and mnemonics. (#66380)
* gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
cyclic reference in docs.
* gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
of default value. (#65402)
* gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale):
Markup fixes.
* gdk-pixbuf-io.c, gdk-pixbuf-animation.c, gdk-pixbuf-data.c,
gdk-pixbuf-loader.c, gdk-pixbuf-scale.c, gdk-pixbuf-util.c,
gdk-pixdata.c: Markup fixes.
* gtk/text_widget.sgml: More precise wording. (#63388)
* gtk/tmpl/gtksignal.sgml (GTK_SIGNAL_OFFSET): Add docs.
* gtk/resources.sgml: Fix markup of mail URLs.
* gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkobject.sgml: Markup fixes.
* gtk/tmpl/gtktoolbar.sgml (gtk_toolbar_{prepend,append}_element):
Expand documentation. (#60471)
* gtk/tmpl/gtkmain.sgml: Remove misleading information about
gtk_set_locale(). (#65758)
2001-12-20 23:09:29 +00:00
|
|
|
|
* drops to zero, or %NULL if the data should not be freed.
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* @destroy_fn_data: Closure data to pass to the destroy notification function.
|
1999-10-20 21:20:49 +00:00
|
|
|
|
*
|
2000-04-11 07:03:25 +00:00
|
|
|
|
* Creates a new #GdkPixbuf out of in-memory image data. Currently only RGB
|
|
|
|
|
* images with 8 bits per sample are supported.
|
1999-10-20 21:20:49 +00:00
|
|
|
|
*
|
2003-08-03 21:51:24 +00:00
|
|
|
|
* Return value: A newly-created #GdkPixbuf structure with a reference count of 1.
|
1999-10-20 21:20:49 +00:00
|
|
|
|
**/
|
|
|
|
|
GdkPixbuf *
|
2000-04-11 07:03:25 +00:00
|
|
|
|
gdk_pixbuf_new_from_data (const guchar *data, GdkColorspace colorspace, gboolean has_alpha,
|
|
|
|
|
int bits_per_sample, int width, int height, int rowstride,
|
More precise documentation about underscores and mnemonics. (#66380)
* gtk/gtklabel.c (gtk_label_new_with_mnemonic),
gtk/gtkbutton.c (gtk_button_new_with_mnemonic): More precise
documentation about underscores and mnemonics. (#66380)
* gtk/gtktextiter.c (gtk_text_iter_backward_word_starts): Fix
cyclic reference in docs.
* gtk/gtklabel.c (gtk_label_set_justify): Correct documentation
of default value. (#65402)
* gtk/gtkmain.c (gtk_set_locale, gtk_disable_set_locale):
Markup fixes.
* gdk-pixbuf-io.c, gdk-pixbuf-animation.c, gdk-pixbuf-data.c,
gdk-pixbuf-loader.c, gdk-pixbuf-scale.c, gdk-pixbuf-util.c,
gdk-pixdata.c: Markup fixes.
* gtk/text_widget.sgml: More precise wording. (#63388)
* gtk/tmpl/gtksignal.sgml (GTK_SIGNAL_OFFSET): Add docs.
* gtk/resources.sgml: Fix markup of mail URLs.
* gtk/tmpl/gtkpaned.sgml, gtk/tmpl/gtkobject.sgml: Markup fixes.
* gtk/tmpl/gtktoolbar.sgml (gtk_toolbar_{prepend,append}_element):
Expand documentation. (#60471)
* gtk/tmpl/gtkmain.sgml: Remove misleading information about
gtk_set_locale(). (#65758)
2001-12-20 23:09:29 +00:00
|
|
|
|
GdkPixbufDestroyNotify destroy_fn, gpointer destroy_fn_data)
|
1999-10-08 23:01:05 +00:00
|
|
|
|
{
|
2000-04-11 07:03:25 +00:00
|
|
|
|
GdkPixbuf *pixbuf;
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
/* Only 8-bit/sample RGB buffers are supported for now */
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
g_return_val_if_fail (data != NULL, NULL);
|
2000-04-11 07:03:25 +00:00
|
|
|
|
g_return_val_if_fail (colorspace == GDK_COLORSPACE_RGB, NULL);
|
|
|
|
|
g_return_val_if_fail (bits_per_sample == 8, NULL);
|
1999-10-20 21:20:49 +00:00
|
|
|
|
g_return_val_if_fail (width > 0, NULL);
|
|
|
|
|
g_return_val_if_fail (height > 0, NULL);
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
2004-01-03 23:45:06 +00:00
|
|
|
|
pixbuf = g_object_new (GDK_TYPE_PIXBUF,
|
|
|
|
|
"colorspace", colorspace,
|
|
|
|
|
"n_channels", has_alpha ? 4 : 3,
|
|
|
|
|
"bits_per_sample", bits_per_sample,
|
|
|
|
|
"has_alpha", has_alpha ? TRUE : FALSE,
|
|
|
|
|
"width", width,
|
|
|
|
|
"height", height,
|
|
|
|
|
"rowstride", rowstride,
|
|
|
|
|
"pixels", data,
|
|
|
|
|
NULL);
|
2000-06-22 15:36:12 +00:00
|
|
|
|
|
2000-04-11 07:03:25 +00:00
|
|
|
|
pixbuf->destroy_fn = destroy_fn;
|
|
|
|
|
pixbuf->destroy_fn_data = destroy_fn_data;
|
1999-10-08 23:01:05 +00:00
|
|
|
|
|
2000-04-11 07:03:25 +00:00
|
|
|
|
return pixbuf;
|
1999-10-08 23:01:05 +00:00
|
|
|
|
}
|