mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 14:30:15 +00:00
e0fee22e78
2001-01-22 Havoc Pennington <hp@redhat.com> * Makefile.am: Add built marshaller files to support GdkPixbufLoader signals * gdk-pixbuf-io.c (gdk_pixbuf_load_module): have GDK_PIXBUF_MODULEDIR unconditionally replace the compiled-in module location, rather than acting as a fallback, because we are using GDK_PIXBUF_MODULEDIR to use gdk-pixbuf before installing it. * gdk-pixbuf.h: include gdk-pixbuf-loader.h * gdk-pixbuf-loader.h, gdk-pixbuf-loader.c: Move back over here from gtk, and add error to close(), because stop_load may do parsing of the image. * pixops/have_mmx.S (_pixops_have_mmx): add newline at end of file * io-*.c: make individual operations static, and add fill_vtable functions which are exported. Fix the collection of type warnings that surfaced, including a number of functions that didn't properly take a GError and some that weren't const-correct. Involved adding error handling for a few loaders. * gdk-pixbuf-io.h: Add error reporting to stop_load function * gdk-pixbuf-io.c (gdk_pixbuf_load_module): change to just look up a function that fills in the GdkPixbufModule vtable, instead of looking up all the image functions individually; this means we can get type safety within modules for the loader functions. Also it means you don't have to keep the statically compiled and GModule versions in sync. * test-gdk-pixbuf.c (main): remove gdk_pixbuf_init() * make-inline-pixbuf.c (main): remove call to gdk_pixbuf_init() * gdk-pixbuf.h: nuke gdk_pixbuf_init() * gdk-pixbuf-animation.c (gdk_pixbuf_frame_get_type): g_type_init () here * gdk-pixbuf.c (gdk_pixbuf_get_type): g_type_init () here * gdk-pixbuf-animation.c (gdk_pixbuf_animation_get_type): g_type_init() here 2001-01-22 Havoc Pennington <hp@redhat.com> * demos/testanimation.c: fix to reflect gdk-pixbuf changes * demos/testpixbuf.c: fix to reflect gdk-pixbuf changes * gtk/gdk-pixbuf-loader.c, gtk/gdk-pixbuf-loader.h: Remove, move back to gdk-pixbuf * gtk/gtktextiter.c, gtk/gtktextiter.h: add sentence equivalents to all the word functions * gtk/gtktextview.c (gtk_text_view_start_cursor_blink): return before doing anything on NULL layout or if we don't have the focus * gtk/testtext.c (fill_example_buffer): "justification" * gtk/gtktexttag.h, gtk/gtktexttag.c: change the tag attribute to be called "justification" not "justify" * demos/gtk-demo/textview.c (create_tags): "justification" * gtk/gtktextlayout.c (set_para_values): Handle char-wise wrapping
296 lines
10 KiB
C
296 lines
10 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
|
||
|
||
|
||
|
||
/* Alpha compositing mode */
|
||
typedef enum
|
||
{
|
||
GDK_PIXBUF_ALPHA_BILEVEL,
|
||
GDK_PIXBUF_ALPHA_FULL
|
||
} GdkPixbufAlphaMode;
|
||
|
||
/* 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);
|
||
|
||
#define GDK_PIXBUF_ERROR gdk_pixbuf_error_quark ()
|
||
|
||
typedef enum {
|
||
/* image data hosed */
|
||
GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
|
||
/* no mem to load image */
|
||
GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY,
|
||
/* bad option value passed to save routine */
|
||
GDK_PIXBUF_ERROR_BAD_OPTION_VALUE,
|
||
/* unsupported image type (sort of an ENOSYS) */
|
||
GDK_PIXBUF_ERROR_UNKNOWN_TYPE,
|
||
/* unsupported operation (load, save) for image type */
|
||
GDK_PIXBUF_ERROR_UNSUPPORTED_OPERATION,
|
||
GDK_PIXBUF_ERROR_FAILED
|
||
} GdkPixbufError;
|
||
|
||
GQuark gdk_pixbuf_error_quark () G_GNUC_CONST;
|
||
|
||
|
||
|
||
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);
|
||
|
||
/* Create a pixbuf which points to the pixels of another pixbuf */
|
||
GdkPixbuf *gdk_pixbuf_new_subpixbuf (GdkPixbuf *src_pixbuf,
|
||
int src_x,
|
||
int src_y,
|
||
int width,
|
||
int height);
|
||
|
||
/* Simple loading */
|
||
|
||
GdkPixbuf *gdk_pixbuf_new_from_file (const char *filename,
|
||
GError **error);
|
||
|
||
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,
|
||
GError **error);
|
||
|
||
|
||
/* Saving */
|
||
|
||
gboolean gdk_pixbuf_save (GdkPixbuf *pixbuf,
|
||
const char *filename,
|
||
const char *type,
|
||
GError **error,
|
||
...);
|
||
|
||
gboolean gdk_pixbuf_savev (GdkPixbuf *pixbuf,
|
||
const char *filename,
|
||
const char *type,
|
||
char **option_keys,
|
||
char **option_values,
|
||
GError **error);
|
||
|
||
/* 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,
|
||
GError **error);
|
||
|
||
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);
|
||
GdkPixbufFrame *gdk_pixbuf_frame_copy (GdkPixbufFrame *src);
|
||
void gdk_pixbuf_frame_free (GdkPixbufFrame *frame);
|
||
GType gdk_pixbuf_frame_get_type (void) G_GNUC_CONST;
|
||
#define GDK_TYPE_PIXBUF_FRAME gdk_pixbuf_frame_get_type ()
|
||
|
||
#include <gdk-pixbuf/gdk-pixbuf-loader.h>
|
||
|
||
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif
|