forked from AuroraMiddleware/gtk
e8597130f5
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.
246 lines
8.2 KiB
C
246 lines
8.2 KiB
C
/* GdkPixbuf library - Main header file
|
||
*
|
||
* Copyright (C) 1999 The Free Software Foundation
|
||
*
|
||
* Authors: Mark Crichton <crichton@gimp.org>
|
||
* Miguel de Icaza <miguel@gnu.org>
|
||
* Federico Mena-Quintero <federico@gimp.org>
|
||
* Havoc Pennington <hp@redhat.com>
|
||
*
|
||
* This library is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU Lesser 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
|
||
* Lesser General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Lesser 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.
|
||
*/
|
||
|
||
#ifndef GDK_PIXBUF_H
|
||
#define GDK_PIXBUF_H
|
||
|
||
#include <glib.h>
|
||
#include <gdk-pixbuf/gdk-pixbuf-features.h>
|
||
#include <gobject/gobject.h>
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
|
||
|
||
/* Color spaces; right now only RGB is supported.
|
||
* Note that these values are encoded in inline pixbufs
|
||
* as ints, so don't reorder them
|
||
*/
|
||
typedef enum {
|
||
GDK_COLORSPACE_RGB
|
||
} GdkColorspace;
|
||
|
||
/* All of these are opaque structures */
|
||
typedef struct _GdkPixbuf GdkPixbuf;
|
||
typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
|
||
typedef struct _GdkPixbufFrame GdkPixbufFrame;
|
||
|
||
#define GDK_TYPE_PIXBUF (gdk_pixbuf_get_type ())
|
||
#define GDK_PIXBUF(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF, GdkPixbuf))
|
||
#define GDK_IS_PIXBUF(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF))
|
||
|
||
#define GDK_TYPE_PIXBUF_ANIMATION (gdk_pixbuf_animation_get_type ())
|
||
#define GDK_PIXBUF_ANIMATION(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_ANIMATION, GdkPixbufAnimation))
|
||
#define GDK_IS_PIXBUF_ANIMATION(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_ANIMATION))
|
||
|
||
|
||
/* Handler that must free the pixel array */
|
||
typedef void (* GdkPixbufDestroyNotify) (guchar *pixels, gpointer data);
|
||
|
||
|
||
|
||
GType gdk_pixbuf_get_type (void) G_GNUC_CONST;
|
||
|
||
/* Reference counting */
|
||
|
||
GdkPixbuf *gdk_pixbuf_ref (GdkPixbuf *pixbuf);
|
||
void gdk_pixbuf_unref (GdkPixbuf *pixbuf);
|
||
|
||
/* GdkPixbuf accessors */
|
||
|
||
GdkColorspace gdk_pixbuf_get_colorspace (const GdkPixbuf *pixbuf);
|
||
int gdk_pixbuf_get_n_channels (const GdkPixbuf *pixbuf);
|
||
gboolean gdk_pixbuf_get_has_alpha (const GdkPixbuf *pixbuf);
|
||
int gdk_pixbuf_get_bits_per_sample (const GdkPixbuf *pixbuf);
|
||
guchar *gdk_pixbuf_get_pixels (const GdkPixbuf *pixbuf);
|
||
int gdk_pixbuf_get_width (const GdkPixbuf *pixbuf);
|
||
int gdk_pixbuf_get_height (const GdkPixbuf *pixbuf);
|
||
int gdk_pixbuf_get_rowstride (const GdkPixbuf *pixbuf);
|
||
|
||
|
||
|
||
/* Create a blank pixbuf with an optimal rowstride and a new buffer */
|
||
GdkPixbuf *gdk_pixbuf_new (GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample,
|
||
int width, int height);
|
||
|
||
/* Copy a pixbuf */
|
||
|
||
GdkPixbuf *gdk_pixbuf_copy (const GdkPixbuf *pixbuf);
|
||
|
||
/* Simple loading */
|
||
|
||
GdkPixbuf *gdk_pixbuf_new_from_file (const char *filename);
|
||
|
||
GdkPixbuf *gdk_pixbuf_new_from_data (const guchar *data,
|
||
GdkColorspace colorspace,
|
||
gboolean has_alpha,
|
||
int bits_per_sample,
|
||
int width, int height,
|
||
int rowstride,
|
||
GdkPixbufDestroyNotify destroy_fn,
|
||
gpointer destroy_fn_data);
|
||
|
||
GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
|
||
|
||
/* Read an inline pixbuf */
|
||
GdkPixbuf *gdk_pixbuf_new_from_inline (const guchar *inline_pixbuf,
|
||
gboolean copy_pixels,
|
||
int length);
|
||
|
||
/* Adding an alpha channel */
|
||
GdkPixbuf *gdk_pixbuf_add_alpha (const GdkPixbuf *pixbuf, gboolean substitute_color,
|
||
guchar r, guchar g, guchar b);
|
||
|
||
/* Copy an area of a pixbuf onto another one */
|
||
void gdk_pixbuf_copy_area (const GdkPixbuf *src_pixbuf,
|
||
int src_x, int src_y,
|
||
int width, int height,
|
||
GdkPixbuf *dest_pixbuf,
|
||
int dest_x, int dest_y);
|
||
|
||
/* Brighten/darken and optionally make it pixelated-looking */
|
||
void gdk_pixbuf_saturate_and_pixelate (const GdkPixbuf *src,
|
||
GdkPixbuf *dest,
|
||
gfloat saturation,
|
||
gboolean pixelate);
|
||
|
||
|
||
|
||
/* Rendering to a drawable */
|
||
|
||
|
||
/* Scaling */
|
||
|
||
/* Interpolation modes */
|
||
typedef enum {
|
||
GDK_INTERP_NEAREST,
|
||
GDK_INTERP_TILES,
|
||
GDK_INTERP_BILINEAR,
|
||
GDK_INTERP_HYPER
|
||
} GdkInterpType;
|
||
|
||
void gdk_pixbuf_scale (const GdkPixbuf *src,
|
||
GdkPixbuf *dest,
|
||
int dest_x,
|
||
int dest_y,
|
||
int dest_width,
|
||
int dest_height,
|
||
double offset_x,
|
||
double offset_y,
|
||
double scale_x,
|
||
double scale_y,
|
||
GdkInterpType interp_type);
|
||
void gdk_pixbuf_composite (const GdkPixbuf *src,
|
||
GdkPixbuf *dest,
|
||
int dest_x,
|
||
int dest_y,
|
||
int dest_width,
|
||
int dest_height,
|
||
double offset_x,
|
||
double offset_y,
|
||
double scale_x,
|
||
double scale_y,
|
||
GdkInterpType interp_type,
|
||
int overall_alpha);
|
||
void gdk_pixbuf_composite_color (const GdkPixbuf *src,
|
||
GdkPixbuf *dest,
|
||
int dest_x,
|
||
int dest_y,
|
||
int dest_width,
|
||
int dest_height,
|
||
double offset_x,
|
||
double offset_y,
|
||
double scale_x,
|
||
double scale_y,
|
||
GdkInterpType interp_type,
|
||
int overall_alpha,
|
||
int check_x,
|
||
int check_y,
|
||
int check_size,
|
||
guint32 color1,
|
||
guint32 color2);
|
||
|
||
GdkPixbuf *gdk_pixbuf_scale_simple (const GdkPixbuf *src,
|
||
int dest_width,
|
||
int dest_height,
|
||
GdkInterpType interp_type);
|
||
|
||
GdkPixbuf *gdk_pixbuf_composite_color_simple (const GdkPixbuf *src,
|
||
int dest_width,
|
||
int dest_height,
|
||
GdkInterpType interp_type,
|
||
int overall_alpha,
|
||
int check_size,
|
||
guint32 color1,
|
||
guint32 color2);
|
||
|
||
|
||
|
||
/* Animation support */
|
||
|
||
/* GIF-like animation overlay modes for frames */
|
||
typedef enum {
|
||
GDK_PIXBUF_FRAME_RETAIN,
|
||
GDK_PIXBUF_FRAME_DISPOSE,
|
||
GDK_PIXBUF_FRAME_REVERT
|
||
} GdkPixbufFrameAction;
|
||
|
||
GType gdk_pixbuf_animation_get_type (void) G_GNUC_CONST;
|
||
|
||
GdkPixbufAnimation *gdk_pixbuf_animation_new_from_file (const char *filename);
|
||
|
||
GdkPixbufAnimation *gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation);
|
||
void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation);
|
||
|
||
int gdk_pixbuf_animation_get_width (GdkPixbufAnimation *animation);
|
||
int gdk_pixbuf_animation_get_height (GdkPixbufAnimation *animation);
|
||
GList *gdk_pixbuf_animation_get_frames (GdkPixbufAnimation *animation);
|
||
int gdk_pixbuf_animation_get_num_frames (GdkPixbufAnimation *animation);
|
||
|
||
/* Frame accessors */
|
||
|
||
GdkPixbuf *gdk_pixbuf_frame_get_pixbuf (GdkPixbufFrame *frame);
|
||
int gdk_pixbuf_frame_get_x_offset (GdkPixbufFrame *frame);
|
||
int gdk_pixbuf_frame_get_y_offset (GdkPixbufFrame *frame);
|
||
int gdk_pixbuf_frame_get_delay_time (GdkPixbufFrame *frame);
|
||
GdkPixbufFrameAction gdk_pixbuf_frame_get_action (GdkPixbufFrame *frame);
|
||
|
||
|
||
/* General (presently empty) initialization hooks, primarily for gnome-libs */
|
||
void gdk_pixbuf_preinit (gpointer app, gpointer modinfo);
|
||
void gdk_pixbuf_postinit (gpointer app, gpointer modinfo);
|
||
/* A more user-friendly init function */
|
||
void gdk_pixbuf_init (void);
|
||
|
||
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif
|