]> Pileus Git - ~andy/gtk/blobdiff - gdk-pixbuf/gdk-pixbuf-private.h
[quartz] Delete the typedef of GdkDevicePrivate
[~andy/gtk] / gdk-pixbuf / gdk-pixbuf-private.h
index 4595785a0284b043bc87bf24a117ad8be641d2ca..c0220d36e58f628b3dd5783e7459b192f586e0d4 100644 (file)
@@ -1,3 +1,4 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
 /* GdkPixbuf library - Private declarations
  *
  * Copyright (C) 1999 The Free Software Foundation
@@ -8,16 +9,16 @@
  *          Havoc Pennington <hp@redhat.com>
  *
  * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
+ * 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
- * Library General Public License for more details.
+ * Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU Library General Public
+ * 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.
 #define GDK_PIXBUF_PRIVATE_H
 
 #include "gdk-pixbuf.h"
+#include "gdk-pixbuf-i18n.h"
+#include <stdio.h>
 
 \f
 
+typedef struct _GdkPixbufClass GdkPixbufClass;
+
+#define GDK_PIXBUF_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_PIXBUF, GdkPixbufClass))
+#define GDK_IS_PIXBUF_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_PIXBUF))
+#define GDK_PIXBUF_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_PIXBUF, GdkPixbufClass))
+
 /* Private part of the GdkPixbuf structure */
 struct _GdkPixbuf {
-       /* Reference count */
-       int ref_count;
+        GObject parent_instance;
 
        /* Color space */
        GdkColorspace colorspace;
@@ -59,47 +67,36 @@ struct _GdkPixbuf {
        /* User data for the destroy notification function */
        gpointer destroy_fn_data;
 
-       /* Last unref handler, determines whether the pixbuf should be finalized */
-       GdkPixbufLastUnref last_unref_fn;
-
-       /* User data for the last unref handler */
-       gpointer last_unref_fn_data;
-
        /* Do we have an alpha channel? */
        guint has_alpha : 1;
 };
 
-/* Private part of the GdkPixbufFrame structure */
-struct _GdkPixbufFrame {
-       /* The pixbuf with this frame's image data */
-       GdkPixbuf *pixbuf;
+struct _GdkPixbufClass {
+        GObjectClass parent_class;
+
+};
 
-       /* Offsets for overlaying onto the animation's area */
-       int x_offset;
-       int y_offset;
+#ifdef GDK_PIXBUF_ENABLE_BACKEND
 
-       /* Frame duration in ms */
-       int delay_time;
+gboolean _gdk_pixbuf_lock (GdkPixbufModule *image_module);
+void _gdk_pixbuf_unlock (GdkPixbufModule *image_module);
 
-       /* Overlay mode */
-       GdkPixbufFrameAction action;
-};
+GdkPixbufModule *_gdk_pixbuf_get_module (guchar *buffer, guint size,
+                                         const gchar *filename,
+                                         GError **error);
+GdkPixbufModule *_gdk_pixbuf_get_named_module (const char *name,
+                                               GError **error);
+gboolean _gdk_pixbuf_load_module (GdkPixbufModule *image_module,
+                                  GError **error);
 
-/* Private part of the GdkPixbufAnimation structure */
-struct _GdkPixbufAnimation {
-       /* Reference count */
-       int ref_count;
+GdkPixbuf *_gdk_pixbuf_generic_image_load (GdkPixbufModule *image_module,
+                                          FILE *f,
+                                          GError **error);
 
-       /* Number of frames */
-        int n_frames;
+GdkPixbufFormat *_gdk_pixbuf_get_format (GdkPixbufModule *image_module);
 
-       /* List of GdkPixbufFrame structures */
-        GList *frames;
+#endif /* GDK_PIXBUF_ENABLE_BACKEND */
 
-       /* bounding box size */
-       int width, height;
-};
+#endif /* GDK_PIXBUF_PRIVATE_H */
 
-\f
 
-#endif