]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/gdk-pixbuf-private.h
Update Norwegian bokmål translation.
[~andy/gtk] / gdk-pixbuf / gdk-pixbuf-private.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2 /* GdkPixbuf library - Private declarations
3  *
4  * Copyright (C) 1999 The Free Software Foundation
5  *
6  * Authors: Mark Crichton <crichton@gimp.org>
7  *          Miguel de Icaza <miguel@gnu.org>
8  *          Federico Mena-Quintero <federico@gimp.org>
9  *          Havoc Pennington <hp@redhat.com>
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  */
26
27 #ifndef GDK_PIXBUF_PRIVATE_H
28 #define GDK_PIXBUF_PRIVATE_H
29
30 #include "gdk-pixbuf.h"
31 #include "gdk-pixbuf-i18n.h"
32 #include <stdio.h>
33
34 \f
35
36 typedef struct _GdkPixbufClass GdkPixbufClass;
37
38 #define GDK_PIXBUF_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_PIXBUF, GdkPixbufClass))
39 #define GDK_IS_PIXBUF_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_PIXBUF))
40 #define GDK_PIXBUF_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_PIXBUF, GdkPixbufClass))
41
42 /* Private part of the GdkPixbuf structure */
43 struct _GdkPixbuf {
44         GObject parent_instance;
45
46         /* Color space */
47         GdkColorspace colorspace;
48
49         /* Number of channels, alpha included */
50         int n_channels;
51
52         /* Bits per channel */
53         int bits_per_sample;
54
55         /* Size */
56         int width, height;
57
58         /* Offset between rows */
59         int rowstride;
60
61         /* The pixel array */
62         guchar *pixels;
63
64         /* Destroy notification function; it is supposed to free the pixel array */
65         GdkPixbufDestroyNotify destroy_fn;
66
67         /* User data for the destroy notification function */
68         gpointer destroy_fn_data;
69
70         /* Do we have an alpha channel? */
71         guint has_alpha : 1;
72 };
73
74 struct _GdkPixbufClass {
75         GObjectClass parent_class;
76
77 };
78
79 #ifdef GDK_PIXBUF_ENABLE_BACKEND
80
81 gboolean _gdk_pixbuf_lock (GdkPixbufModule *image_module);
82 void _gdk_pixbuf_unlock (GdkPixbufModule *image_module);
83
84 GdkPixbufModule *_gdk_pixbuf_get_module (guchar *buffer, guint size,
85                                          const gchar *filename,
86                                          GError **error);
87 GdkPixbufModule *_gdk_pixbuf_get_named_module (const char *name,
88                                                GError **error);
89 gboolean _gdk_pixbuf_load_module (GdkPixbufModule *image_module,
90                                   GError **error);
91
92 GdkPixbuf *_gdk_pixbuf_generic_image_load (GdkPixbufModule *image_module,
93                                            FILE *f,
94                                            GError **error);
95
96 GdkPixbufFormat *_gdk_pixbuf_get_format (GdkPixbufModule *image_module);
97
98 #endif /* GDK_PIXBUF_ENABLE_BACKEND */
99
100 #endif /* GDK_PIXBUF_PRIVATE_H */
101
102