forked from AuroraMiddleware/gtk
New Class. Beginning of progrssive loading.
1999-10-26 Jonathan Blandford <jrb@redhat.com> * src/gdk-pixbuf-loader.h: New Class. Beginning of progrssive loading.
This commit is contained in:
parent
cfc2866019
commit
c84756cf38
@ -1,3 +1,8 @@
|
||||
1999-10-26 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* src/gdk-pixbuf-loader.h: New Class. Beginning of progrssive
|
||||
loading.
|
||||
|
||||
1999-10-25 Federico Mena Quintero <federico@redhat.com>
|
||||
|
||||
* configure.in (CFLAGS): Patch from Uwe Koloska
|
||||
|
@ -56,11 +56,12 @@ struct _GdkPixbufLoader
|
||||
typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass;
|
||||
struct _GdkPixbufLoaderClass {
|
||||
GtkObjectClass parent_class;
|
||||
#if 0
|
||||
/* If it get's implemented */
|
||||
|
||||
void (* area_updated) (GdkPixbufLoader *loader,
|
||||
int x, int y, int width, int height);
|
||||
#endif
|
||||
void (* area_prepared) (GdkPixbufLoader *loader,
|
||||
GdkPixbuf *image,
|
||||
int x, int y, int width, int height);
|
||||
};
|
||||
|
||||
|
||||
|
@ -134,3 +134,9 @@ image_load (FILE *f)
|
||||
w, h, w * 3,
|
||||
free_buffer, NULL);
|
||||
}
|
||||
|
||||
GdkImage *
|
||||
image_load_by_data (void *data, size_t count)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
@ -56,11 +56,12 @@ struct _GdkPixbufLoader
|
||||
typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass;
|
||||
struct _GdkPixbufLoaderClass {
|
||||
GtkObjectClass parent_class;
|
||||
#if 0
|
||||
/* If it get's implemented */
|
||||
|
||||
void (* area_updated) (GdkPixbufLoader *loader,
|
||||
int x, int y, int width, int height);
|
||||
#endif
|
||||
void (* area_prepared) (GdkPixbufLoader *loader,
|
||||
GdkPixbuf *image,
|
||||
int x, int y, int width, int height);
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user