]> Pileus Git - ~andy/gtk/blob - gdk-pixbuf/ChangeLog
gdk/gdk.def Update.
[~andy/gtk] / gdk-pixbuf / ChangeLog
1 2000-11-11  Tor Lillqvist  <tml@iki.fi>
2
3         * gdk_pixbuf.def: Add gdk_pixbuf_new_subpixbuf.
4
5         * io-tiff.c (gdk_pixbuf__tiff_image_begin_load): Use
6         g_file_open_tmp() (just added to GLib) instead of mkstemp() (or
7         mktemp() and open()).
8         
9         * io-xpm.c (gdk_pixbuf__xpm_image_begin_load): Ditto.
10
11 2000-11-01  Havoc Pennington  <hp@pobox.com>
12
13         * gdk-pixbuf.c (gdk_pixbuf_new_subpixbuf): New function to create 
14         a pixbuf pointing to a subregion of another pixbuf.
15
16 2000-10-16  Tor Lillqvist  <tml@iki.fi>
17
18         * gdk-pixbuf-io.c: Define also m_save (for the non-gmodule case).
19
20 2000-10-16  Havoc Pennington  <hp@redhat.com>
21
22         * gdk-pixbuf-io.c (gdk_pixbuf_get_module)
23         (gdk_pixbuf_get_named_module) (gdk_pixbuf_load_module): 
24         add error reporting here also
25
26         * make-inline-pixbuf.c (main): use GError
27
28         * io-xpm.c: include unistd.h
29
30         * gdk-pixbuf-util.c: include string.h
31
32         * io-*.c: add error reporting
33         
34         * gdk-pixbuf-animation.c (gdk_pixbuf_animation_new_from_file): add
35         error reporting
36
37         * gdk-pixbuf-io.c (gdk_pixbuf_new_from_file): Add error reporting
38
39         * gdk-pixbuf-io.h: Add GError** to load_increment and load 
40         methods
41
42         * gdk-pixbuf-io.c (gdk_pixbuf_save) (gdk_pixbuf_savev): return 
43         a G_FILE_ERROR if we fail to write or close the file.
44
45         * gdk-pixbuf.h: remove GDK_PIXBUF_ERROR_IO, instead we'll use
46         G_FILE_ERROR_*. Rename enum to GdkPixbufError, properly following
47         the GError naming rules. Add GError** to load functions.
48
49 2000-10-06  Havoc Pennington  <hp@redhat.com>
50
51         * gdk-pixbuf.h: add GdkPixbufAlphaMode
52
53 2000-10-06  Havoc Pennington  <hp@redhat.com>
54
55         This entry is a summary of the merged-in changes from 1.0. 
56         Relevant original ChangeLog entries are spliced in after 
57         this entry; the files they refer to are from the 1.0
58         gdk-pixbuf sources.
59         
60         * pixops/pixops.c (pixops_composite_nearest): sync a small fix
61         from 1.0
62
63         * io-xpm.c (xpm_seek_string): add fscanf error check from 1.0
64         Add progressive loader from 1.0
65
66         * io-tiff.c (gdk_pixbuf__tiff_image_begin_load): mem leak fixes
67         from 1.0 tree
68
69         * io-pnm.c: new version from 1.0 tree
70
71         * io-jpeg.c (gdk_pixbuf__jpeg_image_load): sync from 1.0, use 
72         malloc not g_malloc
73
74         * io-gif.c (lzw_read_byte): sync from 1.0, change a g_error to
75         g_warning
76         (gif_get_next_step): return 0 here, sync from 1.0
77
78         * gdk-pixbuf-util.c: sync email address change for Cody
79         Russell
80
81 2000-09-11  Jeffrey Stedfast  <fejj@helixcode.com>
82
83         * gdk-pixbuf/io-pnm.c: Pretty much totally rewrote again because
84         last nights code was still "broken". Should now properly handle
85         all error conditions gracefully.
86
87 2000-09-10  Jeffrey Stedfast  <fejj@helixcode.com>
88
89         * gdk-pixbuf/io-pnm.c: Rewrote.
90
91 2000-09-09  Federico Mena Quintero  <federico@helixcode.com>
92
93         * gdk-pixbuf/pixops/pixops.c (pixops_composite_nearest): Compute
94         the correct dest offset.
95
96 2000-08-25  Federico Mena Quintero  <federico@helixcode.com>
97
98         * gdk-pixbuf/io-xpm.c: #include <unistd.h>
99
100 2000-08-05  Larry Ewing  <lewing@helixcode.com>
101
102         * gdk-pixbuf/io-tiff.c: stop leaking context->tempname.
103
104         * gdk-pixbuf/io-xpm.c: same as above.
105
106 2000-07-26  Michael Meeks  <michael@helixcode.com>
107
108         * gdk-pixbuf/io-jpeg.c (gdk_pixbuf__jpeg_image_load): make
109         g_malloc a malloc.
110
111 2000-07-21  Larry Ewing  <lewing@helixcode.com>
112
113         * gdk-pixbuf/io-xpm.c: add a fake progressive loader so that
114         xpm at least supports the progressive interface like the one in
115         io-tiff.c. This should be reimplemented as an actual progressive
116         loader.
117
118 2000-07-19  Jonathan Blandford  <jrb@redhat.com>
119
120         * demo/pixbuf-demo.c (update_timeout): changed scaling level to
121         make it look better.
122         * gdk-pixbuf/testpixbuf.c (update_timeout): Patch from michael
123         meeks to handle errors better.
124         
125 2000-10-07  Tor Lillqvist  <tml@iki.fi>
126
127         * gdk_pixbuf.def
128         * pixbufloader_jpeg.def
129         * pixbufloader_png.def: Add new entry points.
130
131         * makefile.mingw.in: Use libintl.
132
133 2000-10-06  Havoc Pennington  <hp@redhat.com>
134
135         * gdk-pixbuf-io.c (gdk_pixbuf_save): s/format/type/g to be
136         consistent with gdk_pixbuf_loader_new_with_type(). 
137         Return runtime error if a module is missing.
138
139         * gdk-pixbuf.h: add GDK_PIXBUF_ERROR_UNKNOWN_TYPE
140
141 2000-10-05  Havoc Pennington  <hp@redhat.com>
142
143         Pixbuf saving, patch from David Welton.
144         
145         * Makefile.am (GDK_PIXBUF_LIBS): add INTLLIBS
146         (libgdk_pixbuf_1_3_la_SOURCES): add gdk-pixbuf-i18n.h
147
148         * gdk-pixbuf-i18n.h: Add _() to gdk-pixbuf
149
150         * io-png.c (gdk_pixbuf__png_image_save): PNG save routine.
151
152         * io-jpeg.c (gdk_pixbuf__jpeg_image_save): JPEG save routine.
153
154         * gdk-pixbuf-io.c (gdk_pixbuf_save): 
155         (gdk_pixbuf_savev): Implement pixbuf saving routines
156
157         * gdk-pixbuf.c (gdk_pixbuf_error_quark): pixbuf error quark
158         function
159
160         * gdk-pixbuf.h: Add public save routines; add pixbuf error 
161         types
162
163         * gdk-pixbuf-io.h: Add save function to GdkPixbufModule
164
165 2000-10-05  Dan Winship  <danw@helixcode.com>
166
167         * io-png.c, io-tiff.c, io-xpm.c: Fix comments to not claim that
168         all three of these files are the JPEG image loader. (From
169         gdk-pixbuf module.)
170
171 2000-10-03  Tor Lillqvist  <tml@iki.fi>
172
173         * makefile.mingw.in: Add rule for make-inline-pixbuf. Use
174         gdk-pixbuf's version number in the rule for makefile.mingw itself.
175
176         * gdk_pixbuf.def: Add new entry points.
177
178 2000-09-26  Havoc Pennington  <hp@redhat.com>
179
180         * gdk-pixbuf-util.c (gdk_pixbuf_saturate_and_pixelate): Add this
181         function here, instead of putting it in a private GTK+ file.
182
183         * gdk-pixbuf-private.h (GdkPixbufInlineFormat): include an 
184         enum here for the known formats of inlined pixbufs.
185         Also, #define our file magic here.
186
187 2000-06-23  Havoc Pennington  <hp@redhat.com>
188
189         * make-inline-pixbuf.c: Small program that creates C variable
190         declarations of inline pixbuf data. This can be read 
191         by gdk_pixbuf_new_from_inline.
192
193         * gdk-pixbuf.h (gdk_pixbuf_new_from_inline): New function to read
194         inline pixbuf data and create a pixbuf from it. 
195
196         * gdk-pixbuf-data.c (gdk_pixbuf_new_from_inline): implement here
197
198 2000-09-07  Tor Lillqvist  <tml@iki.fi>
199
200         * makefile.mingw.in: Use own version number for gdk-pixbuf DLLs,
201         like on Unix.
202
203 2000-08-12  Tor Lillqvist  <tml@iki.fi>
204
205         * gdk_pixbuf.def: Add missing entry point.
206
207 2000-08-10  Havoc Pennington  <hp@redhat.com>
208
209         * Makefile.am (EXTRA_DIST): The *.def files had the wrong names
210         (s/pixbuf_/pixbufloader_)
211         
212 2000-08-02  Tor Lillqvist  <tml@iki.fi>
213
214         * io-bmp.c
215         * io-ico.c
216         * io-ras.c
217         * io-tiff.c
218         * io-wbmp.c: Conditionalise inclusion of <unistd.h>.
219
220         * makefile.mingw.in: List loaders alphabetically. Add the wbmp
221         one. Fix names of DLLs to have '-' instead of '_'.
222
223 2000-07-31  Elliot Lee  <sopwith@redhat.com>
224         * io-wbmp.c: Some bug fixes - now tested to work.
225
226 2000-07-27  Elliot Lee  <sopwith@redhat.com>
227
228         * gdk-pixbuf-io.h, gdk-pixbuf-io.c: Add gdk_pixbuf_get_named_module() function to facilitate above change
229         * io-wbmp.c, pixbufloader_wbmp.defs, gdk-pixbuf-io.c, Makefile: Implement loader for WBMP format.
230         * io-bmp.c: Don't malloc a temporary buffer - use stack instead.
231
232 2000-07-23  Tor Lillqvist  <tml@iki.fi>
233
234         Win32 build setup:
235         
236         * makefile.mingw.in
237         * pixops/makefile.mingw.in
238         * pixbuf_*.def: New files.
239
240         * Makefile.am
241         * pixops/Makefile.am: Add them. Add rule to generate makefile.mingw.
242
243         * gdk-pixbuf-io.c (gtk_win32_get_installation_directory):
244         New function, to get the GTK+ installation directory from
245         the Windows Registry, where the installation program
246         for whatever software includes GTK+ has stored it.
247
248         Used to avoid having hardcoding the directory where to look for
249         loaders. This function is needed by gtk, too, so it should
250         really be just in one place. Maybe a small static library
251         one level up from here?
252
253         * gdk-pixbuf-animation.c (gdk_pixbuf_animation_new_from_file)
254         * gdk-pixbuf-io.c (gdk_pixbuf_new_from_file): 
255         Open file in binary mode. This *is* standard C. (No-op on Unix,
256         of course.)
257
258         * io-jpeg.c: If we don't HAVE_SIGSETJMP, use normal setjmp().
259
260         * io-tiff.c: Use g_get_tmp_dir(). If we don't HAVE_MKSTEMP, use
261         mktemp() and open().
262         (gdk_pixbuf__tiff_image_stop_load): g_free() also the tempname.
263
264         * pixops/*.S: The Gas from mingw32 doesn't like the .type
265         pseudo-op. Conditionalise on __MINGW32__, but probably
266         should conditionalise on Gas version instead? Or could we
267         do without .type on all systems?
268
269         * pixops/timescale.c: Use g_get_current_time()
270         instead of gettimeofday().
271
272 Sat Jul 22 10:57:22 2000  Owen Taylor  <otaylor@redhat.com>
273
274         * Makefile.am (test_gdk_pixbuf_LDADD): Remove -lgmodule
275
276 Tue Jul 11 11:26:42 2000  Owen Taylor  <otaylor@redhat.com>
277
278         * gdk-pixbuf.c: Add <string.h> include.
279
280 Tue Jul 11 06:20:14 2000  Tim Janik  <timj@gtk.org>
281
282         * io-gif.c (gdk_pixbuf__gif_image_load_animation): 
283         * gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): 
284         * gdk-pixbuf-animation.c (gdk_pixbuf_animation_new_from_file): 
285         use g_object_new() instead of g_type_create_instance() which
286         is a private function for fundamental type implementations.
287         
288 Thu Jul  6 11:49:47 2000  Owen Taylor  <otaylor@redhat.com>
289
290         * Makefile.am (libgdk_pixbuf_la_LDFLAGS): Use GTK+ version
291         soname scheme for gdk-pixbuf.
292         
293 2000-06-21  Havoc Pennington  <hp@pobox.com>
294
295         * gdk-pixbuf.c: Convert GdkPixbuf to GObject, leaving it opaque
296         (i.e. derivation is not allowed, and there are no virtual methods
297         anyway).
298         (gdk_pixbuf_preinit): Call g_type_init() here.
299         (gdk_pixbuf_init): Add a user-friendly init function, for users
300         of standalone gdk-pixbuf
301
302         * gdk-pixbuf-animation.c: Convert to GObject, in the same
303         way GdkPixbufAnimation was done.
304         
305         * gdk-pixbuf.h: Remove gdk_pixbuf_set_unref_handler() and
306         gdk_pixbuf_finalize() from API, since these are broken and don't
307         make sense with new GObject stuff.
308
309 Wed Jun 21 16:02:48 2000  Owen Taylor  <otaylor@redhat.com>
310
311         * gdk-pixbuf-io.c (gdk_pixbuf_load_module): Add feature to
312         support a GDK_PIXBUF_MODULEDIR env variable as a secondary
313         load location.
314
315 2000-06-10  Federico Mena Quintero  <federico@helixcode.com>
316
317         * demo/pixbuf-demo.c: It was cold and rainy this Saturday morning,
318         so I needed something to warm my thighs.  Running plain infinite
319         loops on your laptop to make it hot is not very much fun.  A demo
320         of the gdk-pixbuf scaling functions is way better, and looks
321         prettier, too.
322
323         * configure.in (AC_OUTPUT): Added the demo Makefile.
324
325         * Makefile.am (SUBDIRS): Added the demo directory.
326
327 2000-06-09  Larry Ewing  <lewing@helixcode.com>
328
329         * gdk-pixbuf/io-png.c (gdk_pixbuf__png_image_load_increment):
330         setjmp for the png error handler.  It seems setting the error
331         handling functions does not avoid the jump, and so not calling
332         setjmp was causing the incremental loader to jump into lala land.
333         (gdk_pixbuf__png_image_begin_load): setjmp for error handling, I'm
334         not sure this one is actually required but the docs say it must be
335         set for every call to a png_* function.
336         Also changed the comment to reflect the fact that setting the
337         error handlers does _not_ avoid the longjmp.
338
339 2000-06-06  Larry Ewing  <lewing@helixcode.com>
340
341         * gdk-pixbuf/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
342         take frame offest into account when trying to calculate the
343         animation bbox.  Also set the width to the width not the height.
344         (gdk_pixbuf_loader_animation_done): cycle over the frames to
345         calculate bbox because now we finally have all the offset
346         information for each frame.
347
348 2000-06-05      Mathieu Lacage  <mathieu@gnome.org>
349
350         * configure.in: add some gtk parameters to the
351         GDK_PIXBUF_LIB²S and GDK_PIXBUG_INCLUDEDIR vars. One more
352         fight in my crusade for strange prefix compile...
353
354 2000-05-30  Not Zed  <NotZed@HelixCode.com>
355
356         * gdk-pixbuf/io-jpeg.c (gdk_pixbuf__jpeg_image_begin_load):
357         Initialise the error handler exit routine to our own.  Note this
358         means that every function that accesses the jpeg lib on this
359         object MUST do a setjmp.
360         (gdk_pixbuf__jpeg_image_stop_load): setjmp before accessing jpeg
361         lib for handling fatal error.
362         (gdk_pixbuf__jpeg_image_load_increment): And here too.  So now
363         your applications dont quit if there's a jpeg error!
364
365 2000-05-30  Federico Mena Quintero  <federico@helixcode.com>
366
367         * gdk-pixbuf.spec.in: Include all the loader libraries.  Patch
368         from Frank de Lange <frank@unternet.org>.
369
370 2000-05-09  Darin Adler  <darin@eazel.com>
371
372         * gdk-pixbuf/test-gdk-pixbuf.c:
373         Fixed includes to get rid of accidental GNOME dependency.
374
375 2000-05-26  Cody Russell  <car0969@gamma2.uta.edu>
376         * Makefile.am: Added gdk-pixbuf.spec to EXTRA_DIST
377
378 2000-05-22  Federico Mena Quintero  <federico@helixcode.com>
379
380         * configure.in: Bumped version number to 0.8.0.
381
382         * doc/Makefile.am (content_files): The toplevel gdk-pixbuf.sgml
383         file was not being distributed.
384
385         * gdk-pixbuf/pixops/Makefile.am (EXTRA_DIST): Added DETAILS.
386
387 2000-05-09  Darin Adler  <darin@eazel.com>
388
389         * gdk-pixbuf/gdk-pixbuf-drawable.c: (rgb565lsb), (rgb565msb),
390         (rgb565alsb), (rgb565amsb), (rgb555lsb), (rgb555msb), (rgb555alsb),
391         (rgb555amsb), (convert_real_slow): Change all conversion from 16-bit
392         formats to 32-bit formats to re-use the high bits of the color values
393         so that white maps to full white.
394
395 Fri May  5 12:16:32 2000  Owen Taylor  <otaylor@redhat.com>
396
397         * gdk-pixbuf/pixops/DETAILS: Add beginnings of file with 
398         detailed information about the structure and algorithms
399         of pixops so people can fix it instead of breaking it.
400
401 2000-05-04  Darin Adler  <darin@eazel.com>
402
403         * gdk-pixbuf/pixops/pixops.c: (pixops_composite_nearest),
404         (composite_pixel), (composite_line):
405         * gdk-pixbuf/test-gdk-pixbuf.c: (simple_composite_test_one_type):
406         Now that Owen explained the algorithm, I think I implemented it
407         right for the cases where the destination pixbuf is not opaque.
408         The test does seem to confirm it.
409
410 2000-05-04  Darin Adler  <darin@eazel.com>
411
412         * gdk-pixbuf/.cvsignore:
413         * gdk-pixbuf/Makefile.am:
414         * gdk-pixbuf/test-gdk-pixbuf.c (store_pixel), (fill_with_pixel),
415         (load_pixel), (simple_composite_test_one),
416         (simple_composite_test_one_type), (simple_composite_test), (main):
417         Added some tests of composite to highlight problems in the old
418         implementation. These tests run without any user interaction.
419         Just do "make check".
420
421         * gdk-pixbuf/pixops/pixops.c (pixops_composite_nearest),
422         (composite_pixel), (composite_line): Fix composite to do a textbook
423         "A over B" composite. This was clearly the intent, and it was easy
424         to fix the code to do it. (Note to those that read my earlier tries
425         at a patch; this version fixes typos that were present in all
426         my patch attempts. I checked the final version by adding more tests.)
427
428 2000-04-22 05:27:43 2000  Owen Taylor  <otaylor@redhat.com>
429
430         * gdk-pixbuf/pixops/pixops.c (pixops_scale_nearest): Properly
431         offset y coordinate accordining to render_y0.
432
433         * gdk-pixbuf/gdk-pixbuf-scale.c: Properly handle nonzero
434         dest_x, dest_y.
435
436 2000-04-22  James Henstridge  <james@daa.com.au>
437
438         * gdk-pixbuf.spec.in (%files): moved %{prefix}/bin/* from the main
439         package to the devel package.  The only file installed in bin is
440         gdk-pixbuf-config, which belongs in -devel.  This should allow having
441         multiple versions of the main gdk-pixbuf package installed.
442
443 2000-04-17  Karl Eichwalder  <ke@suse.de>
444
445         * gdk-pixbuf/Makefile.am (INCLUDES): Add $(GNOME_CFLAGS).
446         Reported by Jens Finke.
447
448 2000-04-14 Tomasz K³opczko <kloczek@pld.org.pl>
449
450         * gdk-pixbuf/pixops/makefile.am: $(LIBART_CFLAGS) replaced by 
451         $(GTK_CFLAGS) - now gdk-pixbuf compiles correctly.
452
453 2000-04-13  James Henstridge  <james@daa.com.au>
454
455         * configure.in: when performing the configure check to see if
456         gmodule works, set CFLAGS to GLIB_CFLAGS and LIBS to GLIB_LIBS,
457         rather than the other way round.  Also, call AC_MSG_RESULT in the
458         even that dynamic modules were not supported.
459
460 2000-04-12  Federico Mena Quintero  <federico@helixcode.com>
461
462         This comes from an excellent idea by Tim Janik (timj@gtk.org) to
463         hook to the last unref operation.
464
465         * gdk-pixbuf/gdk-pixbuf.c (gdk_pixbuf_set_last_unref_handler): New
466         function to set the last unref handler for a pixbuf.
467         (gdk_pixbuf_finalize): New function to actually finalize a pixbuf.
468         It calls the pixbuf's destroy notification function and frees the
469         GdkPixbuf structure itself.
470         (gdk_pixbuf_unref): Use the last unref function of the pixbuf if
471         available.
472
473         * gdk-pixbuf/gdk-pixbuf-private.h (struct _GdkPixbuf): New fields
474         for the last unref handler and its user data.
475
476         * gdk-pixbuf/gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Use
477         g_new0() to allocate the pixbuf.
478
479         * gdk-pixbuf/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init):
480         Fixed the call to gtk_signal_new() for the "frame_done" signal; it
481         was not specifying the `frame' argument.
482
483         * gdk-pixbuf/gdk-pixbuf-animation.c
484         (gdk_pixbuf_animation_get_width): Fixed docstring.
485         (gdk_pixbuf_animation_get_height): Likewise.
486         (gdk_pixbuf_animation_get_num_frames): Likewise.
487         (gdk_pixbuf_animation_get_frames): Likewise.
488
489         * doc/gdk-pixbuf-sections.txt: Updated with the new functions and
490         types.
491
492         * doc/tmpl/gdk-pixbuf.sgml: Added the description for GdkColorspace.
493
494         * doc/tmpl/scaling.sgml: Added the description for GdkInterpType.
495
496         * doc/tmpl/refcounting.sgml: Updated with the information about
497         the last unref handler.
498
499         * doc/tmpl/*.sgml: Markup tweaks.
500
501         * gdk-pixbuf/Makefile.am (libgnomecanvaspixbuf_la_LDFLAGS): Sigh,
502         update the libtool version number for libgnomecanvaspixbuf as
503         well.
504         (libpixbufloader_*_la_LDFLAGS): The loaders need to be versioned
505         as well, or the old ones won't work with the new stuff.  Also,
506         renamed the modules as follows.
507
508         * gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_load_module): Now the
509         modules are called "libpixbufloader-<format>.so" instead of
510         "libpixbuf-<format>.so".  They needed renaming so that the new
511         loaders won't overwrite the old ones; even with the versioning
512         stuff, the new .so symlink to the .so.1.0.0 would overwrite the
513         old real .so file.
514
515 2000-04-12  Paolo Molaro <lupus@debian.org>
516
517         * .cvsignore, src/.cvsignore: shut up cvs.
518
519 2000-04-11  Federico Mena Quintero  <federico@helixcode.com>
520
521         Most of this patch is based on a patch by Havoc Pennington
522         (hp@redhat.com) to make GdkPixbuf's structures opaque and to
523         remove the libart dependency.
524
525         * gdk-pixbuf/gdk-pixbuf.h: Removed the public structures.
526         (GdkColorspace): New enum that for now only contains
527         GDK_COLORSPACE_RGB.
528         (GdkPixbufDestroyNotify): New type for the pixbuf's pixels destroy
529         notification function.
530         (GdkInterpType): New num with interpolation types.
531
532         * *.[ch]: Replace the libart stuff with our own stuff.
533
534         * pixops/*.[ch]: Likewise.
535
536         * gdk-pixbuf/gdk-pixbuf-private.h: New file with the private
537         declarations of the GdkPixbuf structures.
538
539         * gdk-pixbuf/gdk-pixbuf.c (gdk_pixbuf_new_from_art_pixbuf):
540         Removed function.
541         (gdk_pixbuf_get_format): Constify.
542         (gdk_pixbuf_get_n_channels): Constify.
543         (gdk_pixbuf_get_has_alpha): Constify.
544         (gdk_pixbuf_get_bits_per_sample): Constify.
545         (gdk_pixbuf_get_pixels): Constify.
546         (gdk_pixbuf_get_width): Constify.
547         (gdk_pixbuf_get_height): Constify.
548         (gdk_pixbuf_get_rowstride): Constify.
549
550         * gdk-pixbuf/gdk-pixbuf.c (gdk_pixbuf_copy): New function to copy
551         a pixbuf.
552
553         * gdk-pixbuf/gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Added a
554         bits_per_sample argument; currently only 8 bits per sample are
555         supported.
556
557         * gdk-pixbuf/gdk-pixbuf-animation.c (gdk_pixbuf_frame_get_pixbuf):
558         New accessor.
559         (gdk_pixbuf_frame_get_x_offset): New accessor.
560         (gdk_pixbuf_frame_get_y_offset): New accessor.
561         (gdk_pixbuf_frame_get_delay_time): New accessor.
562         (gdk_pixbuf_frame_get_action): New accessor.
563
564         * gdk-pixbuf/gdk-pixbuf-render.c
565         (gdk_pixbuf_render_pixmap_and_mask): Instead of returning a solid
566         mask rectangle for pixbufs without an alpha channel, set the
567         *mask_return to NULL.
568
569         * gdk-pixbuf/gdk-pixbuf-util.c (gdk_pixbuf_add_alpha): Constify.
570
571         * gdk-pixbuf/gdk-pixbuf-scale.c: Fix includes.
572
573         * gdk-pixbuf/gdk-pixbuf-scale.c (gdk_pixbuf_scale): Added some
574         preconditions.  Maybe we should also check for the colorspace,
575         bits per pixel, and such.
576         (gdk_pixbuf_composite): Likewise.
577         (gdk_pixbuf_composite_color): Likewise.
578         (gdk_pixbuf_scale_simple): Likewise, and fail gracefully if we
579         cannot allocate the new pixbuf.
580         (gdk_pixbuf_composite_color_simple): Likewise.
581
582         * gdk-pixbuf/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_render):
583         Use art_rgb_rgba_affine() or art_rgb_affine() since we no longer
584         have an ArtPixBuf.
585
586         * gdk-pixbuf/io-bmp.c: Fix includes.
587
588         * gdk-pixbuf/pixops/pixops.c (pixops_scale_nearest): Fixed cast in
589         an lvalue.
590
591         * TODO: Populated.
592
593         * configure.in: Removed checks for libart.
594
595         * gdk-pixbuf/Makefile.am: Removed references to libart.
596         (noinst_HEADERS): Added gdk-pixbuf-private.h.
597
598         * gdk-pixbuf/Makefile.am (libgdk_pixbuf_la_LDFLAGS): Incremented
599         the version number of the libtool library to indicate that this
600         definitely is not compatible with the old usage.  I know you love
601         me.  I know you do.
602
603         * configure.in: Bumped version number to 0.7.0.
604
605         * README: Updated.
606
607         * gdk-pixbuf-config.in (--libs): We no longer require libart.
608
609         * DEPENDS.libgdk_pixbuf: We no longer depend on libart.
610
611         * gdk-pixbuf.spec.in: Updated, but I don't guarantee anything.
612
613 2000-04-06  Jonathan Blandford  <jrb@redhat.com>
614
615         * gdk-pixbuf/testanimation.c (main): add more info to the
616         testanimation frames.
617
618 2000-04-04  Ettore Perazzoli  <ettore@helixcode.com>
619
620         * gdk-pixbuf/gdk-pixbuf-animation.c
621         (gdk_pixbuf_animation_get_width): New accessor function.
622         (gdk_pixbuf_animation_get_height): New accessor function.
623         (gdk_pixbuf_animation_get_num_frames): New accessor function.
624         (gdk_pixbuf_animation_get_frames): New accessor function.
625
626 2000-04-01  Federico Mena Quintero  <federico@helixcode.com>
627
628         * gdk-pixbuf/gdk-pixbuf.c: Reverted Mark's change.  The refcount
629         is private information, and the art_pixbuf will go away soon.
630
631 2000-03-31  Mark Crichton  <crichton@gimp.org>
632
633         * gdk-pixbuf/gdk-pixbuf.c: Added gdk_pixbuf_get_refcount
634         and gdk_pixbuf_get_artpixbuf accessor functions.
635
636 2000-03-29  Federico Mena Quintero  <federico@helixcode.com>
637
638         * gdk-pixbuf/gdk-pixbuf.c (gdk_pixbuf_get_has_alpha): Return
639         gboolean instead of int.
640
641 2000-03-29  Radek Doulik  <rodo@helixcode.com>
642
643         * gdk-pixbuf/gdk-pixbuf-animation.c
644         (gdk_pixbuf_animation_new_from_file): same as below
645
646         * gdk-pixbuf/io-gif.c (gif_get_lzw): added update of width and
647         height in GdkPixbufAnimation
648
649 2000-03-28  Radek Doulik  <rodo@helixcode.com>
650
651         * gdk-pixbuf/io-gif.c (gif_get_lzw): test also for
652         context->frame_done_func and context->anim_done_func to make
653         progressive animation loading work
654
655         * gdk-pixbuf/gdk-pixbuf-loader.c (gdk_pixbuf_loader_frame_done):
656         added priv->pixbuf = NULL as pixbuf is now in frame (and to make
657         gdk_pixbuf_loader_prepare happy)
658         (gdk_pixbuf_loader_frame_done): update animation bbox
659
660         * gdk-pixbuf/gdk-pixbuf.h: added bbox size (width, height) to
661         _GdkPixbufAnimation
662
663 2000-03-27  Radek Doulik  <rodo@helixcode.com>
664
665         * gdk-pixbuf/io-gif.c (gif_get_lzw): use frame_len and frame_width
666         instead of width and height
667
668 2000-03-27  Owen Taylor  <otaylor@redhat.com>
669
670         * gdk-pixbuf/pixops/pixops.c: Fix problem with 
671         precendence of >> and & which was keeping composite_color
672         from working with non-gray images.
673
674 2000-03-08  Jonathan Blandford  <jrb@redhat.com>
675
676         * gdk-pixbuf/io-gif.c (gdk_pixbuf__gif_image_load): free the context.
677         (gdk_pixbuf__gif_image_load_animation): free the context.
678
679 2000-03-06  Arjan van de Ven <arjan@fenrus.demon.nl>
680
681         * gdk-pixbuf/io-bmp.c: Fixed to pointer-bugs and a 
682         mis-interpretation of the Microsoft documentation. Now
683         it can load .BMP files that are not generated by The Gimp
684         as well.
685
686 2000-03-01  Mark Crichton  <crichton@gimp.org>
687
688         * configure.in: Added BUILD_CANVAS_ITEM stuff to (finally)
689         fix the last auto* build bug (where we have libart, but no
690         gnome-libs)
691
692         * gdk-pixbuf/Makefile.am: Same.
693
694 2000-02-28  Matt Wilson  <msw@redhat.com>
695
696         * gdk-pixbuf/gdk-pixbuf-drawable.c: s/unsigned long/guint32/g,
697         s/unsigned short/guint16/g, s/unsigned char/guint8/g
698
699 2000-02-26  Federico Mena Quintero  <federico@helixcode.com>
700
701         * README: We don't require libgif/ungif nor libXpm.
702
703         * NEWS: This was outdated, so updated it.
704
705 2000-02-25  Federico Mena Quintero  <federico@helixcode.com>
706
707         * gdk-pixbuf.m4: Use the correct name for
708         gdk-pixbuf/gdk-pixbuf.h.  Thanks to Jacob Berkman for pointing
709         this out.
710
711 2000-02-21  Federico Mena Quintero  <federico@helixcode.com>
712
713         * configure.in (GDK_PIXBUF_MINOR): Bumped version number to 0.6.0.
714
715         * doc/compiling.sgml: New appendix documenting the gdk-pixbuf
716         library's particular options to configure.in.
717
718         * doc/gdk-pixbuf.sgml: Include compiling.sgml appendix via an
719         entity.
720
721         * doc/Makefile.am (gdk-pixbuf.html): Added compiling.sgml.
722
723         * gdk-pixbuf/io-ico.c (gdk_pixbuf__ico_image_load_increment):
724         Fixed typo in prototype name.
725
726         * configure.in: Changed duplicated AC_MSG_CHECKING message to
727         something more meaningful; now it is "checking whether dynamic
728         modules work".
729
730         * gdk-pixbuf/pixops/Makefile.am (noinst_PROGRAMS): Do not install
731         the timescale program.
732
733         Integrated Miguel de Icaza's <miguel@gnu.org> patch for optionally
734         creating a single static library with all the image format modules
735         in it.
736
737 2000-02-20  Miguel de Icaza  <miguel@gnu.org>
738
739         * gdk-pixbuf/io-xpm.c (gdk_pixbuf__xpm_image_load): Add prefix.
740         (gdk_pixbuf__xpm_image_load_xpm_data): Add prefix.
741
742         * gdk-pixbuf/io-tiff.c (gdk_pixbuf__tiff_image_load_real): Add prefix.
743         (gdk_pixbuf__tiff_image_stop_load): Add prefix.
744         (gdk_pixbuf__tiff_image_load_increment): Add prefix.
745         (gdk_pixbuf__tiff_image_load): Add prefix.
746         (gdk_pixbuf__tiff_image_stop_load): Update invocation.
747         (gdk_pixbuf__tiff_image_begin_load): Add prefix.
748
749         * gdk-pixbuf/io-ras.c (gdk_pixbuf__ras_image_load): Add prefix.
750         (gdk_pixbuf__ras_image_load): Updated invocation.
751         (gdk_pixbuf__ras_image_begin_load): Add prefix.
752         (gdk_pixbuf__ras_image_stop_load): Add prefix.
753         (gdk_pixbuf__ras_image_load_increment): Add prefix.
754
755         * gdk-pixbuf/io-pnm.c (gdk_pixbuf__pnm_image_begin_load): Add prefix.
756         (gdk_pixbuf__pnm_image_stop_load): Add prefix.
757         (gdk_pixbuf__pnm_image_load_increment): Add prefix
758         (gdk_pixbuf__pnm_image_load): Add prefix.
759
760         * gdk-pixbuf/io-jpeg.c (gdk_pixbuf__jpeg_image_load): Add prefix.
761         (gdk_pixbuf__jpeg_image_load_increment): Add prefix.
762         (gdk_pixbuf__jpeg_image_begin_load): Add prefix.
763         (gdk_pixbuf__jpeg_image_stop_load): Add prefix.
764
765         * gdk-pixbuf/io-ico.c (gdk_pixbuf__ico_image_load): Add prefix.
766         (gdk_pixbuf__ico_image_load): update invocation.
767         (gdk_pixbuf__ico_image_load_increment): Add prefix.
768         (gdk_pixbuf__ico_image_load): update invocation.
769         (gdk_pixbuf__ico_image_begin_load): Add prefix.
770         (gdk_pixbuf__ico_image_load): update invocation.
771         (gdk_pixbuf__ico_image_stop_load): Add prefix.
772
773         * gdk-pixbuf/io-gif.c (gdk_pixbuf__gif_image_load_animation): Add prefix.
774         (gdk_pixbuf__gif_image_load): Add prefix.
775         (gdk_pixbuf__gif_image_begin_load): Add prefix.
776         (gdk_pixbuf__gif_image_load_increment): Add prefix.
777         (gdk_pixbuf__gif_image_load_animation): Add prefix.
778         (gdk_pixbuf__gif_image_stop_load): Add prefix.
779
780         * gdk-pixbuf/io-bmp.c (gdk_pixbuf__bmp_image_load): Add prefix.
781         (gdk_pixbuf__bmp_image_load): Rename function called.
782         (gdk_pixbuf__bmp_image_load_increment): Add prefix
783
784         * gdk-pixbuf/io-png.c (gdk_pixbuf__png_image_load): Add prefix.
785         (gdk_pixbuf__png_image_begin_load): Add prefix.
786         (gdk_pixbuf__png_image_stop_load): Add prefix.
787         (gdk_pixbuf__png_image_load_increment): Add prefix.
788
789         * gdk-pixbuf/gdk-pixbuf-io.c (file_formats): Make this static.
790         (gdk_pixbuf_load_module): Load the shared library entry points
791         using a "gdk_pixbuf__$module_name" prefix.
792         (pixbuf_module_symbol): Wrapper routine that uses the module
793         prefix for the modules to load the information.
794
795         * configure.in (GDK_PIXBUF_VERSION): New option --disable-modules
796         lets the user specify that gdk-pixbuf should link all image loader
797         code into the library instaed of creating shared library modules.
798         
799         (dynworks): Renamed the automake conditional DYNAMIC_MODULES_WORK
800         to BUILD_DYNAMIC_MODULES.
801
802 2000-02-19  Jonathan Blandford  <jrb@redhat.com>
803
804         * gdk-pixbuf/io-gif.c (new_context): fix case where initial
805         colormap entry is Transparent.
806
807 2000-02-19  Owen Taylor  <otaylor@redhat.com>
808
809         * gdk-pixbuf/pixops/pixops.c (scale_pixel): Fix error in
810         scale factors for non-alpha case.
811
812 2000-02-14  Mark Crichton  <crichton@gimp.org>
813
814         * gdk-pixbuf/io-xpm.c (xpm_extract_color): Added check for "g" color type.
815         Imlib/libXpm handle this, but we didn't.
816
817 2000-02-14  Darin Adler  <darin@eazel.com>
818
819         * gdk-pixbuf/testpixbuf.c: Remove now-unnecessary cast.
820         * .cvsignore: gdk-pixbuf/.cvsignore: More to ignore.
821
822 2000-02-14  Elliot Lee  <sopwith@redhat.com>
823         * gdk-pixbuf/gdk-pixbuf.h, gdk-pixbuf/gdk-pixbuf-data.c: Make passed-in argument 'const'.
824
825 2000-02-04  Michael Meeks  <mmeeks@gnu.org>
826
827         * gdk-pixbuf/io-gif.c (struct _GifContext): add x,y_offset.
828         (gif_get_frame_info): put the offsets on the context.
829         (gif_get_lzw): copy them off into the frame.
830         (new_context): no change required; will 0 offsets by default.
831
832 2000-01-28  Michael Meeks  <michael@mejm2.dow.cam.ac.uk>
833
834         * gdk-pixbuf/pixops/pixops.c (pixops_process): const + nasty
835         un-consting cast.
836
837         * gdk-pixbuf/pixops/pixops.h: const.
838
839         * gdk-pixbuf/gdk-pixbuf-util.c: const.
840         
841         * gdk-pixbuf/gdk-pixbuf-scale.c: const.
842
843         * gdk-pixbuf/gdk-pixbuf.h: constify lots of things.
844
845 2000-02-03  Federico Mena Quintero  <federico@helixcode.com>
846
847         * gdk-pixbuf/gdk-pixbuf-render.c
848         (gdk_pixbuf_render_threshold_alpha): Added sanity check for width
849         and height being >= 0.  Also, do nothing if either of them is
850         zero.  Thanks to Ettore for pointing this out.
851         (gdk_pixbuf_render_to_drawable): Likewise.
852         (gdk_pixbuf_render_to_drawable_alpha): Likewise.
853
854 2000-02-02  Federico Mena Quintero  <federico@helixcode.com>
855
856         * gdk-pixbuf/io-gif.c (gif_get_lzw): Removed debugging g_print.
857         Thanks to John Sullivan <sullivan@eazel.com> for the patch.
858
859         * gdk-pixbuf/testpixbuf-drawable.c (configure_cb): Get a new area
860         of the screen when the window is resized.  Thanks to David
861         N. Welton <davidw@linuxcare.com> for pointing this out.
862         Misc. cleanups to the rest of the file.
863
864 2000-02-01  Federico Mena Quintero  <federico@helixcode.com>
865
866         * doc/tmpl/rendering.sgml: gnome_init() does not call
867         gdk_rgb_init(), so don't mention that it does in the
868         documentation.  Thanks to Alexander Kruuse <kruuse@home.se> for
869         pointing this out.
870
871 2000-01-31  Havoc Pennington  <hp@redhat.com>
872
873         * gdk-pixbuf/Makefile.am (noinst_PROGRAMS): no testpixbuf-foo target
874
875 Mon Jan 31 12:38:50 2000  Owen Taylor  <otaylor@redhat.com>
876
877         * gdk-pixbuf/pixops/pixops.c (scale_line): Fix from Peter
878         Wainwright to fix 4a => 4a scaling.
879
880 2000-01-29  Mark Crichton  <crichton@gimp.org>
881
882         * gdk-pixbuf-config: Oh dear, we weren't Telsa/Alan proof...
883         put `libart-config --libs` in instead of -lart_lgpl.
884
885 2000-01-22  Federico Mena Quintero  <federico@helixcode.com>
886
887         * gdk-pixbuf/io-pnm.c (pnm_read_raw_scanline): Return an error on
888         invalid pnm type.
889         (pnm_read_ascii_scanline): Initialize data and mask.
890
891         * gdk-pixbuf/io-xpm.c (pixbuf_create_from_xpm): Initialize
892         fallbackcolor to keep gcc happy.
893
894         * configure.in: Bumped version number to 0.5.0.
895
896         * gdk-pixbuf/pixops/timescale.c (dump_array): Removed unused variable.
897         (main): Return 0.
898
899         * gdk-pixbuf/pixops/pixops.c (pixops_composite_color_nearest): Put
900         parentheses around + in a shift to remove a compiler warning.
901         (pixops_process): Likewise.
902
903         Patch from Ross Golder <rossigee@bigfoot.com> to create an RPM
904         specfile:
905
906         * configure.in: Added gdk-pixbuf.spec to AC_OUTPUT.
907
908         * Makefile.am (EXTRA_DIST): Added gdk-pixbuf.spec.in
909
910 2000-01-22  Federico Mena Quintero  <federico@helixcode.com>
911
912         * gdk-pixbuf/gnome-canvas-pixbuf.c (PixbufPrivate): Removed the
913         x_set and y_set arguments.  Now they are always on and start with
914         defaults of 0.0 in units.
915         (gnome_canvas_pixbuf_class_init): Likewise.
916         (gnome_canvas_pixbuf_set_arg): Likewise.
917         (gnome_canvas_pixbuf_get_arg): Likewise.
918         (compute_viewport_affine): Likewise; always use the priv->x and
919         priv->y fields.
920
921         * doc/tmpl/gnome-canvas-pixbuf.sgml: Modified to reflect the
922         removal of the x_set/y_set arguments.
923
924 2000-01-21  Federico Mena Quintero  <federico@helixcode.com>
925
926         * gdk-pixbuf/gdk-pixbuf.c (gdk_pixbuf_ref): Return the same pixbuf
927         as the input parameter.
928
929         * gdk-pixbuf/gdk-pixbuf-animation.c (gdk_pixbuf_animation_ref):
930         Return the same animation as the input parameter.
931
932 2000-01-16  Elliot Lee  <sopwith@redhat.com>
933
934         * gdk-pixbuf/Makefile.am: Don't link against libgnomecanvaspixbuf.la
935
936 2000-01-16  Federico Mena Quintero  <federico@helixcode.com>
937
938         * configure.in: Removed the broken --enable-canvas-pixbuf option.
939         Added the stuff necessary to substitute the variables in
940         gnomecanvaspixbufConf.sh.in.
941
942         * gnomecanvaspixbufConf.sh.in: New gnome-config handler for the
943         tiny gnomecanvaspixbuf library.
944
945         * Makefile.am: Build gnomecanvaspixbufConf.sh.
946
947         * gdk-pixbuf/Makefile.am: Create a libgnomecanvaspixbuf and only
948         build it if gdk-pixbuf is being built outside of gnome-libs.
949
950         * doc/gdk-pixbuf-sections.txt: Added gdk_pixbuf_render_pixmap_and_mask().
951
952         * gdk-pixbuf/gdk-pixbuf-render.c
953         (gdk_pixbuf_render_pixmap_and_mask): Renamed from
954         gdk_pixbuf_render_pixmap().  Do not create the mask if it is not
955         needed, and do not use a clipping mask when rendering the pixmap.
956         Tweaked documentation a little.
957
958         * HACKING: New file with hacking policies for the gdk-pixbuf
959         module.
960
961         * doc/Makefile.am (tmpl_sources): Added missing backslash.
962
963         * doc/Makefile.am: Use gnomecanvaspixbuf in gnome-config when
964         scanning for docstrings.
965
966         * gdk-pixbuf/gdk-pixbuf-util.c (gdk_pixbuf_copy_area): Made sanity
967         checks more stringent.  Removed "gint" abominations.  Made
968         documentation consistent with the rest of the functions.
969
970         * doc/gdk-pixbuf-sections.txt: Added gdk_pixbuf_copy_area() to the
971         utilities section.
972
973 2000-01-14  Jonathan Blandford  <jrb@redhat.com>
974
975         * gdk-pixbuf/gdk-pixbuf-render.c (gdk_pixbuf_render_pixmap): new
976         function to let you create a gdk_pixmap from a gdk_pixbuf.
977
978 2000-01-11  Jacob Berkman  <jacob@helixcode.com>
979
980         * gdk-pixbuf/pixops/Makefile.am (INCLUDES): added
981         $LIBART_CFLAGS to $INCLUDES
982
983 2000-01-10  Elliot Lee  <sopwith@redhat.com>
984
985         * configure.in, gdk-pixbuf/Makefile.am: Build a libcanvas_pixbuf.
986
987         * configure.in: Define version macros. Generate
988         gdk-pixbuf/gdk-pixbuf-features.h. Always INSIDE_GNOME.
989
990         * gdk-pixbuf/Makefile.am: Add gdk-pixbuf-features.h
991
992         * gdk-pixbuf/gdk-pixbuf.c: Add definitions of
993         gdk-pixbuf-features.h declarations, plus some initialization
994         stubs.
995
996 2000-01-05  Owen Taylor  <otaylor@redhat.com>
997
998         * gdk-pixbuf/pixops/pixops.c: Fixed src_channels/dest_channels
999         confusion. (Again caught by Tomas Ogren's Purify)
1000
1001 2000-01-07  Jonathan Blandford  <jrb@redhat.com>
1002
1003         * gdk-pixbuf/gdk-pixbuf-xform.c (gdk_pixbuf_rotate): comment out
1004         debugging printing.
1005
1006         * gdk-pixbuf/gdk-pixbuf-io.c: Added progressive animation loading.
1007         * gdk-pixbuf/gdk-pixbuf-io.h: Added progressive animation loading.
1008         * gdk-pixbuf/gdk-pixbuf-loader.c: Added progressive animation
1009         loading.
1010         * gdk-pixbuf/gdk-pixbuf-loader.h: Added progressive animation
1011         loading.
1012         * gdk-pixbuf/io-gif.c (image_load_increment): I think the
1013         ref-counting mess is finally fixed.  Added progressive animation
1014         loading.
1015         (gif_get_lzw): remove memory_leak
1016
1017         * doc/tmpl/gdk-pixbuf-loader.sgml: much longer long description
1018         added.
1019
1020 2000-01-05  Owen Taylor  <otaylor@redhat.com>
1021
1022         * gdk-pixbuf/pixops/pixops.c (pixops_process): Fix computation of end of run indices.
1023
1024         * gdk-pixbuf/pixops/pixops.c: Fix double increments when dest_channels == 4.
1025           (Pointed out by Tomas Ogren)
1026
1027 2000-01-05  Mark Crichton  <crichton@gimp.org>
1028
1029         * gdk-pixbuf/gdk-pixbuf-loader.c (gdk_pixbuf_loader_eat_header_write):
1030         Return 0 if gdk_pixbuf_load_loader_module returns FALSE.
1031
1032 2000-01-05 Elliot Lee <sopwith@redhat.com>
1033
1034         * gdk-pixbuf/pixops/Makefile.am: Link with -lm (to get 'ceil' function)
1035
1036 2000-01-05  Owen Taylor  <otaylor@redhat.com>
1037
1038         * doc/Makefile.am doc/gdk-pixbuf-sections.txt
1039           doc/gdk-pixbuf.sgml doc/tmpl/scaling.sgml:
1040         Added scaling functions into gtk-doc framework.
1041
1042         * gdk-pixbuf/gdk-pixbuf-scale.c: Documentation fixes.
1043
1044         * gdk-pixbuf/testpixbuf-scale.c (expose_cb): Simplify a bit.
1045
1046         * gdk-pixbuf/pixops/pixops.c (pixops_composite_color): Return
1047         immediately if scale_x or scale_y is 0.
1048
1049 2000-01-05  Owen Taylor  <otaylor@redhat.com>
1050
1051         * gdk-pixbuf/pixops/timescale.c: quick fix for initializing
1052         arrays in benchmark.
1053
1054 2000-01-05  Jonathan Blandford  <jrb@redhat.com>
1055
1056         * gdk-pixbuf/gdk-pixbuf-io.h: Change the order of the update func
1057         to make it more compatible with the rest of GTK.  Added animation
1058         framework for progressive loading.
1059
1060         * gdk-pixbuf/io-bmp.c (image_begin_load): Modified to handle new
1061         system.
1062         * gdk-pixbuf/io-ico.c (image_begin_load): ditto
1063         * gdk-pixbuf/io-png.c (image_begin_load): ditto
1064         * gdk-pixbuf/io-ras.c (image_begin_load): ditto
1065         * gdk-pixbuf/io-jpeg.c (image_begin_load): ditto
1066         * gdk-pixbuf/io-pnm.c (image_begin_load): ditto
1067         * gdk-pixbuf/io-tiff.c (image_begin_load): ditto
1068         * gdk-pixbuf/io-gif.c (image_begin_load): ditto
1069
1070 2000-01-05  Owen Taylor  <otaylor@redhat.com>
1071
1072         * gdk-pixbuf/pixops/README: Added a README with a TODO
1073         and some explainations of the algorithms.
1074
1075         * gdk-pixbuf/testpixbuf-scale.c: Set a background pixmap of None
1076         to reduce flashing when resizing.
1077
1078 2000-01-05  Owen Taylor  <otaylor@redhat.com>
1079
1080         * gdk-pixbuf/pixops/: Directory full of pixel data scaling
1081         code that will eventually migrate into libart.
1082
1083         * configure.in acconfig.h: Add checks for MMX compiler support
1084
1085         * gdk-pixbuf/gdk-pixbuf.h gdk-pixbuf/gdk-pixbuf-scale.c:
1086         Nice wrapper routines for the code in pixops that operate
1087         on pixbufs instead of raw data.
1088
1089         * gdk-pixbuf/testpixbuf-scale: Test program for scaling
1090         routines.
1091
1092 2000-01-05  Jonathan Blandford  <jrb@redhat.com>
1093
1094         * doc/tmpl/animation.sgml: Documentation changes.
1095
1096 2000-01-01  Federico Mena Quintero  <federico@helixcode.com>
1097
1098         * gdk-pixbuf/gdk-pixbuf.h (GdkPixbufAnimation): Added reference
1099         counting to animations.  A web browser may want to share a single
1100         copy of an animated GIF if it appears multiple times in a web
1101         page, for example.
1102
1103         * gdk-pixbuf/gdk-pixbuf-animation.c: New file.  Moved the
1104         animation functions here.
1105         (gdk_pixbuf_animation_new_from_file): Prettified.  Return a NULL
1106         animation if the loader does not support multiframe loading and
1107         the single-frame load returned NULL.  Check that the filename is
1108         not NULL.  Updated inline documentation.
1109         (gdk_pixbuf_animation_ref): New function.
1110         (gdk_pixbuf_animation_unref): New function.
1111         Removed gdk_pixbuf_animation_destroy() in favor of reference
1112         counting.
1113
1114         * gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_new_from_file):
1115         Prettified.  Made ref_count assertion more paranoid.  Check that
1116         the filename is not NULL.
1117         (gdk_pixbuf_get_module): Use guchar * and guint for buffer and
1118         size, respectively.
1119         (gdk_pixbuf_new_from_xpm_data): Changed the "data" argument to
1120         const char **.
1121
1122         * gdk-pixbuf/io-gif.c (image_load_animation): Create the animation
1123         with a reference count of 1.
1124
1125         * gdk-pixbuf/Makefile.am (libgdk_pixbuf_la_SOURCES): Added
1126         gdk-pixbuf-animation.c.
1127
1128         * doc/tmpl/animation.sgml: Populated.  It is still missing a
1129         description of the overlay modes.
1130
1131         * doc/gdk-pixbuf-sections.txt: Added the animation section.  Moved
1132         the canvas item section to the end, as it will be moved later to
1133         gnome-libs.
1134
1135         * doc/gdk-pixbuf.sgml: Added the animation section.
1136
1137         * doc/Makefile.am (tmpl_sources): Added tmpl/animation.sgml.
1138
1139 1999-12-26  Peter Teichman  <pat@gnu.org>
1140
1141         * gdk-pixbuf/Makefile.am (libpixbuf_tiff_la_LIBADD): add
1142         $(LIBTIFF) to libpixbuf_tiff_la_LIBADD, proxying for mmarker.
1143         This closes bug #4676.
1144
1145 1999-12-23  Havoc Pennington  <hp@pobox.com>
1146
1147         * gdk-pixbuf/io-gif.c (image_load): Stuff that should have been
1148         set to NULL here (specifically context->animation) was not being
1149         set to NULL. use g_new0() to alloc the struct.
1150
1151 1999-12-20  Jonathan Blandford  <jrb@redhat.com>
1152
1153         * gdk-pixbuf/io-gif.c: finished work to make animated gifs load
1154         correctly.  Progressive loading needs some work, but that all
1155         needs doing from the gdk-pixbuf-loader end, not here.
1156
1157 1999-12-17  Jonathan Blandford  <jrb@redhat.com>
1158
1159         * gdk-pixbuf/gdk-pixbuf-io.c (gdk_pixbuf_animation_new_from_file):
1160         moved the file here.  It seems natural to put this function here,
1161         as that's where the gdk_pixbuf_new_from_file function is, but it's
1162         still a little convoluted.  The source files might be played with
1163         in a bit.
1164
1165 1999-12-14  Jonathan Blandford  <jrb@redhat.com>
1166
1167         * gdk-pixbuf/gdk-pixbuf-loader.c
1168         (gdk_pixbuf_loader_get_animation):  Gets the animation from the
1169         loader.
1170
1171 1999-12-16  Federico Mena Quintero  <federico@redhat.com>
1172
1173         * doc/tmpl/rendering.sgml: Added notice about initializing GdkRGB
1174         before using the GdkPixbuf rendering functions.  Thanks to Joe
1175         Shaw <joe@off.net> for pointing this out.
1176
1177 1999-12-13  Federico Mena Quintero  <federico@redhat.com>
1178
1179         * gdk-pixbuf/gnome-canvas-pixbuf.c
1180         (gnome_canvas_pixbuf_class_init): Renamed arguments to
1181         width_in_pixels, height_in_pixels, x_in_pixels, y_in_pixels, for
1182         consistency with the new canvas.
1183         (PixbufPrivate): Do the same renaming in the structure fields, for
1184         consistency.
1185
1186         * doc/tmpl/gnome-canvas-pixbuf.sgml: Updated for new argument names.
1187
1188 1999-12-12  Federico Mena Quintero  <federico@redhat.com>
1189
1190         * gdk-pixbuf/Makefile.am (libgdk_pixbuf_la_LDFLAGS): Use a
1191         conditional to see whether to link $(GNOME_LIBS) or not.
1192
1193 1999-12-10  Jonathan Blandford  <jrb@redhat.com>
1194
1195         * gdk-pixbuf/gdk-pixbuf-io.h: thinking about the new loading API.
1196
1197         * gdk-pixbuf/gdk-pixbuf-drawable.c (gdk_pixbuf_get_from_drawable):
1198         make a warning go away.
1199
1200         * gdk-pixbuf/gdk-pixbuf.h: added new prototypes for animations.
1201
1202         * gdk-pixbuf/gdk-pixbuf-loader.h: added new prototypes for
1203         animations.
1204
1205 1999-12-09  Michael Zucchi  <zucchi@zedzone.mmc.com.au>
1206
1207         * gdk-pixbuf/gdk-pixbuf.h: Enable gdk_pixbuf_get_from_drawable()
1208         api call.
1209
1210         * gdk-pixbuf/gdk-pixbuf-drawable.c (gdk_pixbuf_get_from_drawable):
1211         Filled in body of function.
1212         (rgbconvert): Added GdkColormap parameter, and to all conversion
1213         functions also.
1214         (convert_real_slow): New function - should convert ANY visual/data
1215         format properly, but it aint fast.  Used as a fallback when an
1216         optimised routine wont match.
1217         (rgbconvert): Do very specific tests on the data format to verify
1218         properly if the optimised version will do, otherwise use the
1219         fallback function for all other data formats.
1220
1221         * gdk-pixbuf/Makefile.am: Re-enabled building of
1222         textpixbuf-drawable.
1223
1224         * gdk-pixbuf/testpixbuf-drawable.c (main): Changed to use
1225         gdk_pixbuf_get_from_drawable().
1226
1227 1999-12-08  Arjan van de Ven <arjan@fenrus.demon.nl>
1228
1229         * gdk-pixbuf/gdk-pixbuf-drawable.c : Fixed the red/green/red
1230         bug on two occasions.
1231         * gdk-pixbuf/io-ras.c: Changed from the custom be32_to_cpu
1232         function to the generic glib one.
1233
1234 1999-12-08  Federico Mena Quintero  <federico@redhat.com>
1235
1236         * gdk-pixbuf/gdk-pixbuf-drawable.c: Fix includes.
1237         (gdk_pixbuf_get_from_drawable): Implemented the zillion sanity
1238         checks and API definition.  The body needs filling in and it needs
1239         to do the Right Thing(tm) for pixmaps plus the given colormap and
1240         windows and their own colormaps.
1241
1242         * gdk-pixbuf/gdk-pixbuf.h: Added prototype for
1243         gdk_pixbuf_get_from_drawable().  Killed gdk-pixbuf-drawable.h.
1244
1245         * gdk-pixbuf/Makefile.am: Re-added the gdk-pixbuf-drawable sources.
1246
1247         * doc/tmpl/from-drawables.sgml: Populated.
1248
1249         * doc/gdk-pixbuf.sgml: Added the from-drawables section.
1250
1251         * doc/Makefile.am (tmpl_sources): Added tmpl/from-drawables.sgml.
1252
1253         * doc/gdk-pixbuf-sections.txt: Added a section for getting pixbufs
1254         from drawables.
1255
1256 1999-12-07  Federico Mena Quintero  <federico@redhat.com>
1257
1258         * doc/tmpl/gnome-canvas-pixbuf.sgml: Added clarification about
1259         reference counting for GdkPixbuf structures.
1260
1261 1999-12-07  Martin Baulig  <martin@home-of-linux.org>
1262
1263         * gdk-pixbuf/Makefile.am (testpixbuf_LDADD): Conditionally
1264         include $(GNOME_LIBS) here.
1265
1266 1999-12-05  Arjan van de Ven <arjan@fenrus.demon.nl>
1267
1268         Added missing "include <string.h>" to:
1269         * gdk-pixbuf/io-ras.c
1270         * gdk-pixbuf/io-bmp.c
1271         * gdk-pixbuf/io-ico.c
1272
1273 1999-12-06  Federico Mena Quintero  <federico@redhat.com>
1274
1275         * gdk-pixbuf/gdk-pixbuf-io.c (file_formats): Patch from Arjan to
1276         fix an initializer.
1277
1278 1999-12-05  Federico Mena Quintero  <federico@redhat.com>
1279
1280         * gdk-pixbuf/Makefile.am (testpixbuf_LDADD): Add back
1281         $(GNOME_LIBS).  This must compile outside of gnome-libs.  If you
1282         want, send me a patch to do the conditional stuff properly.
1283         Otherwise, please read the GNOME Programming Guidelines,
1284         especially the "CVS policies" section.
1285
1286 1999-12-05  Jaka Mocnik  <jaka.mocnik@kiss.uni-lj.si>
1287
1288         * gdk-pixbuf/Makefile.am: removed GNOME_LIBS from testpixbuf_LDADD.
1289
1290 1999-12-05  Arjan van de Ven <arjan@fenrus.demon.nl>
1291
1292         * gdk-pixbuf/io-ico.c: Bug in palet-size
1293         calculation fixed
1294
1295 1999-12-04  Arjan van de Ven <arjan@fenrus.demon.nl>
1296
1297         * gdk-pixbuf/io-bmp.c: Major cleanup, added support for
1298         32 bpp and 4 bpp (uncompressed) images, fixed 1bpp.
1299
1300         * gdk-pixbuf/io-ras.c: Minor cleanup, ran through lclint
1301
1302         * gdk-pixbuf/io-ico.c: Minor cleanup, fixed 1bpp icons,
1303         ran through lclint.
1304
1305         * gdk-pixbuf/gdk-pixbuf-io.c: Added detection of .CUR files
1306         (Windows Cursor files). These are identical to .ICO files,
1307         except for the signature and 2 extra fields for the hotspot.
1308
1309 1999-12-03  Federico Mena Quintero  <federico@redhat.com>
1310
1311         * gdk-pixbuf/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_get_arg):
1312         Removed unused variable `item'.
1313
1314 1999-12-03  Jonathan Blandford  <jrb@redhat.com>
1315
1316         * gdk-pixbuf/io-gif.c (gif_fill_in_lines): added a comment to
1317         explain this function better.
1318
1319 1999-12-02  Federico Mena Quintero  <federico@redhat.com>
1320
1321         Source files moved from src/ to gdk-pixbuf/, to be consistent with
1322         other libraries.
1323
1324         * doc/Makefile.am: Modified for the new source directory.
1325
1326         * configure.in: Likewise.
1327
1328         * Makefile.am: Likewise.
1329
1330         * autogen.sh: Likewise.
1331
1332         * gdk-pixbuf/Makefile.am: Likewise.
1333
1334 1999-12-02  Federico Mena Quintero  <federico@redhat.com>
1335
1336         * src/testpixbuf.c: #include <config.h>, and fix includes.
1337
1338         * src/testpixbuf-drawable.c: #include <config.h>, and fix includes.
1339
1340         * src/io-xpm.c: Fix includes.
1341
1342         * src/io-tiff.c: Fix includes.
1343
1344         * src/io-ras.c: Fix includes, and do not include more stuff than needed.
1345
1346         * src/io-pnm.c: Fix inlcudes, and do not include more stuff than needed.
1347
1348         * src/io-png.c: Fix includes.
1349
1350         * src/io-ico.c: Fix includes, and do not include more stuff than needed.
1351
1352         * src/io-gif.c: Fix includes, and do not include more stuff than needed.
1353
1354         * src/io-bmp.c: Fix includes, and do not include more stuff than needed.
1355
1356         * src/gnome-canvas-pixbuf.c: Fix includes.
1357
1358         * src/gdk-pixbuf.c: Fix includes.
1359
1360         * src/gdk-pixbuf-util.c: Fix includes.
1361
1362         * src/gdk-pixbuf-render.c: Fix includes.
1363
1364         * src/gdk-pixbuf-io.h: Fix includes.
1365
1366         * src/gdk-pixbuf-drawable.c: Fix includes.
1367
1368         * src/gdk-pixbuf-drawable.h: Use angle brackets for the gdk-pixbuf
1369         include files.
1370
1371         * src/gdk-pixbuf-data.c: Fix includes.
1372
1373         * src/gdk-pixbuf-loader.c: #include <config.h>
1374
1375         * src/gdk-pixbuf-loader.h: Use angle brackets for the gdk-pixbuf
1376         include files.
1377
1378         * src/Makefile.am: Commented out the gdk-pixbuf-drawable stuff,
1379         since it is not finished.
1380
1381         * src/gdk-pixbuf.h: Removed unused transformation prototypes.
1382
1383         * src/gdk-pixbuf-util.c: New file with utility and convenience
1384         functions for pixbufs.
1385
1386         * src/Makefile.am (libgdk_pixbuf_la_SOURCES): Added gdk-pixbuf-util.c.
1387
1388         * doc/gdk-pixbuf-sections.txt: Added section for utility functions.
1389
1390         * doc/Makefile.am (tmpl_sources): Added tmpl/util.sgml.
1391
1392         * doc/gdk-pixbuf.sgml: Added the utilities section.
1393
1394         * doc/tmpl/util.sgml: Documentation for the utility functions.
1395
1396 1999-11-29  Owen Taylor  <otaylor@redhat.com>
1397
1398         * src/gdk-pixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
1399         Keep the mask around until after we draw ... since
1400         the GC changes aren't flushed to the X server until we
1401         draw, destroying it before that may result in BadPixmap
1402         errors.
1403
1404 1999-11-30  Havoc Pennington  <hp@pobox.com>
1405
1406         * configure.in: Add AM_CONDITIONAL for inside gnome-libs
1407
1408         * src/Makefile.am: conditionalize GnomeCanvasPixbuf
1409
1410 1999-11-29  Federico Mena Quintero  <federico@redhat.com>
1411
1412         * src/Makefile.am: Uncomment the GnomeCanvasPixbuf sources.  This
1413         should be made conditional, not blindly commented out.
1414
1415 1999-11-29  Jonathan Blandford  <jrb@redhat.com>
1416
1417         * src/Makefile.am (ICO_LIB): Added another loader from Arjan to
1418         handle .ico files.  Cool.
1419
1420 1999-11-24  Jonathan Blandford  <jrb@redhat.com>
1421
1422         * src/io-bmp.c (OneLine24): new patch from Arjan to handle
1423         compressed bmps.
1424
1425 1999-11-24  James Henstridge  <james@daa.com.au>
1426
1427         * configure.in (AC_OUTPUT): altered hack to place the symlink in the
1428         top builddir rather than src.  This still builds fine, and does not
1429         get gtk-doc into an infinite loop when trying to find all the source
1430         files.
1431
1432 1999-11-23  Jonathan Blandford  <jrb@redhat.com>
1433
1434         * Removed #PRAGMA } from headers.  Also, make compile if you don't
1435         have it installed, already.
1436
1437 1999-11-22  Federico Mena Quintero  <federico@redhat.com>
1438
1439         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_draw): Create the
1440         temporary buffer to the size of the interesction of the bounding
1441         box and the expose area, not the whole expose area.  This speeds
1442         up things a lot.
1443
1444         * src/gdk-pixbuf-render.c (gdk_pixbuf_render_threshold_alpha): Do
1445         not paint black on the mask, since we already cleared it in a
1446         single gdk_draw_rectangle() operation.
1447
1448 1999-11-22  Raja R Harinath  <harinath@cs.umn.edu>
1449
1450         * configure.in (GDK_PIXBUF_DIR): Fix for srcdir != builddir.
1451
1452 1999-11-22  Havoc Pennington  <hp@pobox.com>
1453
1454         * src/Makefile.am (GDK_PIXBUF_LIBS): Patch from Paul Fisher
1455         <pnfisher@redhat.com> adds all -lgdk-pixbuf and all other
1456         dependencies to LIBADD variables for loadable modules. Necessary
1457         for a Java dynamic loading thing to be able to figure it out.
1458
1459 1999-11-22  Havoc Pennington  <hp@pobox.com>
1460
1461         * src/io-png.c (image_load_increment): Call the update_area
1462         callback depending on the number of rows loaded in this increment.
1463
1464         * src/testpixbuf.c (main): slow down the progressive load demo
1465
1466 1999-11-16  Havoc Pennington  <hp@pobox.com>
1467
1468         * src/gdk-pixbuf-drawable.h: Get the quotes right on the #include
1469
1470 1999-11-22  Jonathan Blandford  <jrb@redhat.com>
1471
1472         * configure.in (GDK_PIXBUF_DIR): make the symlink.  Does not work
1473         for srcdir != buildir != .  Beats me why; I can't figure it out.
1474         AC_OUTPUT_COMMANDS doesn't seem to let me substitute it correctly.
1475
1476 1999-11-21  Jonathan Blandford  <jrb@redhat.com>
1477
1478         * src/gdk-pixbuf-io.c: added io-bmp from Arjan
1479         <arjan@fenrus.demon.nl>
1480
1481 1999-11-20  Michael Zucchi  <zucchi@zedzone.mmc.com.au>
1482
1483         * src/gdk-pixbuf-drawable.c (gdk_pixbuf_from_drawable_core):
1484         Rework/reorder of the code.  Each case has been separated into
1485         another function; its big but it should be quick.
1486         gdk_pixbuf_rgba_from_drawable() will now return a pixbuf with
1487         opaque alpha information.  Not all depths/formats have been
1488         tested, but 8, 15/16 and 24 (alinged 32) should work ok.
1489
1490 1999-11-17  Larry Ewing  <lewing@gimp.org>
1491
1492         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_bounds):
1493         implement the bounds method correctly.
1494         (compute_viewport_affine): compute the affine need to fit the
1495         image within the viewport given by the args.
1496         (compute_render_affine): call compute_viewport_affine.
1497
1498 1999-11-16  Havoc Pennington  <hp@pobox.com>
1499
1500         * src/gdk-pixbuf-drawable.h: Use includes from the current
1501         directory, not the system directory.
1502
1503 Mon Nov 15 17:18:28 1999  George Lebl <jirka@5z.com>
1504
1505         * src/testpixbuf-drawable.c: use includes from the current directory
1506           rather then from the system include directory as gdk-pixbuf
1507           includes are not yet installed when this is compiled.
1508
1509 1999-11-13  Cody Russell  <bratsche@dfw.net>
1510         * src/testpixbuf-drawable.c: Added a test program for drawable
1511         code.
1512
1513         * src/Makefile.am: Build testpixbuf-drawable.
1514
1515 1999-11-12  Cody Russell  <bratsche@dfw.net>
1516
1517         * src/gdk-pixbuf-drawable.c: Merged in Michael Zucchi's changes.
1518
1519 1999-11-10  Federico Mena Quintero  <federico@redhat.com>
1520
1521         * doc/tmpl/gdk-pixbuf-loader.sgml: Populated.
1522
1523         * doc/gdk-pixbuf.signals: Put in the real names of signal
1524         arguments.
1525
1526         * src/gdk-pixbuf-loader.c: Improved documentation comments.
1527
1528 1999-11-10  Jonathan Blandford  <jrb@redhat.com>
1529
1530         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_close): emit the
1531         closed signal.
1532
1533         * src/io-ras.c (OneLineMapped_file): Now can handle indexing
1534         correctly.  Patch from Arjan to do so.
1535
1536 1999-11-10  Michael Fulbright  <drmike@redhat.com>
1537
1538         * src/io-pnm.c (pnm_ascii_read_scanline): Fixed loading of ASCII PNM
1539         files.
1540
1541         * src/testpixbuf.c: Added final queued draw when done loading image.
1542
1543 1999-11-10  Jonathan Blandford  <jrb@redhat.com>
1544
1545         * src/gdk-pixbuf-io.c (gdk_pixbuf_load_module): removed spurious
1546         print statements.
1547
1548 1999-11-10  Federico Mena Quintero  <federico@redhat.com>
1549
1550         * src/gdk-pixbuf-io.c (gdk_pixbuf_new_from_xpm_data): Added
1551         documentation.
1552
1553 1999-11-09  Federico Mena Quintero  <federico@redhat.com>
1554
1555         * src/io-png.c: Fixed some incompatible pointer initializations.
1556
1557         * src/io-jpeg.c (image_load_increment): Remove unused variable.
1558
1559 1999-11-09  Michael Fulbright  <drmike@redhat.com>
1560
1561         * src/testpixbuf.c: Fixed it to use timeout to read from file
1562         for progressive loading. Set TBF_KBPS=n, where n is the number of
1563         kilobytes/second to simulate in downloading. n has to be an integer.
1564
1565         * src/io-jpeg.c: Slight cosmetic cleanup.
1566
1567         * src/io-pnm.c: Fixed raw PNM loading bug. Also discovered that ASCII
1568         PBM loading has a similar problem and will address tomorrow.
1569
1570 1999-11-09  Havoc Pennington  <hp@pobox.com>
1571
1572         * src/Makefile.am (libgdk_pixbuf_la_SOURCES): build the
1573         gdk-pixbuf-drawable stuff.
1574
1575 1999-11-09  Federico Mena Quintero  <federico@redhat.com>
1576
1577         * configure.in: Bumped version number to 0.4.
1578
1579 1999-11-09  Michael Fulbright  <drmike@redhat.com>
1580
1581         * src/io-pnm.c : Finished progressive PNM loading code. Should handle
1582         all types of PNM files now.
1583
1584         * src/io-jpeg.c (image_load_increment): Figured out problem with
1585         loading Progressive JPEG's progressively (say that 10 times fast).
1586         Currently for Progressive JPEG's the entire image is loaded before
1587         it is displayed. libjpeg supports a fancier mechanism which I may
1588         implement later.
1589
1590         With these changes all JPEG formats appear to load properly for me.
1591
1592 1999-11-08  Jonathan Blandford  <jrb@redhat.com>
1593
1594         * src/io-ras.c (image_load_increment): Final patch from Arjan.
1595         Seems to do progressive loading.
1596
1597 1999-11-08  Michael Fulbright  <drmike@redhat.com>
1598
1599         * src/io-pnm.c image_load (): Fixed so we do not create a separate
1600         pixel buffer when reading in image - we reuse the pixel data in
1601         the GdkPixbuf structure instead.
1602
1603 1999-11-08  Michael Fulbright  <drmike@redhat.com>
1604
1605         * src/io-pnm.c pnm_read_ascii_scanline (): Added support for
1606         ASCII PNM files. Note I haven't tested loaded ASCII PBM files because
1607         I can't seem to find a utility to convert into this format.
1608         Next is to add progressive loading support for the PNM format.
1609
1610 1999-11-07  Federico Mena Quintero  <federico@redhat.com>
1611
1612         * doc/tmpl/gnome-canvas-pixbuf.sgml: Finished detailed explanation
1613         of the width, height, x, and y setting and pixels arguments.
1614
1615 1999-11-05  Jonathan Blandford  <jrb@redhat.com>
1616
1617         * src/io-ras.c (image_load): third patch.  Now it seems to load.
1618
1619         * src/gdk-pixbuf-io.c: second patch Arjan van de Ven
1620         <arjan@fenrus.demon.nl> to autodetect/load the sunras files.
1621
1622         * src/io-ras.c (image_load): new file from Arjan van de Ven
1623         <arjan@fenrus.demon.nl> to begin the ras loader.
1624
1625 1999-11-05  Federico Mena Quintero  <federico@redhat.com>
1626
1627         * doc/gdk-pixbuf-sections.txt: Removed gdk-pixbuf-io, since it is
1628         for internal use only.
1629
1630         * doc/gdk-pixbuf.sgml: Likewise.
1631
1632         * doc/tmpl/gnome-canvas-pixbuf.sgml: Finished docs.
1633
1634 1999-11-05  Michael Fulbright  <drmike@redhat.com>
1635
1636         * src/io-pnm.c: Implemented support for reading raw PBM/PGM/PPM
1637         files from a file. Next step is support for ASCII files, and
1638         then incremental loading.
1639
1640 1999-11-04  Federico Mena Quintero  <federico@redhat.com>
1641
1642         * Makefile.am: Added doc to SUBDIRS.
1643
1644 1999-11-04  Michael Fulbright  <drmike@redhat.com>
1645
1646         * src/io-jpeg.c: Prettied up code slightly.
1647         * src/io-pnm.c:  Start of pnm loader (from file and progressively).
1648                          Doesn't do much yet (will finish tomorrow).
1649         * src/gdk-pixbuf-io.c: Added pnm to structure of known types.
1650
1651 1999-11-04  Federico Mena Quintero  <federico@redhat.com>
1652
1653         * doc/tmpl/rendering.sgml: Populated.
1654
1655         * doc/Makefile.am: Added the template files.
1656
1657 1999-11-04  Havoc Pennington  <hp@pobox.com>
1658
1659         * src/gdk-pixbuf-render.c (gdk_pixbuf_render_to_drawable): In
1660         docs, explain what a dither offset is for.
1661         (gdk_pixbuf_render_to_drawable_alpha): Explain why you would use
1662         this function vs. gdk_pixbuf_render_to_drawable().
1663
1664 1999-11-04  Havoc Pennington  <hp@pobox.com>
1665
1666         * configure.in: Use libart-config correctly; find gnome-config
1667         separately. Fix GNOME_LIBS to be correct in "no gnome installed
1668         yet" case.
1669
1670         * src/Makefile.am: Link to GNOME_LIBS instead of a hardcoded
1671         library list.
1672
1673         Patch untested in the inside-gnome-libs case, I need to commit
1674         then check out to the gnome-libs I'm using.
1675
1676 1999-11-04  Michael Fulbright  <drmike@redhat.com>
1677
1678         * src/io-jpeg.c (image_begin_load): Add update_func callback.
1679         * src/io-jpeg.c (image_load_increment): Call updated callback when
1680         new graphic data decoded.
1681
1682 1999-11-04  Jonathan Blandford  <jrb@redhat.com>
1683
1684         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_update): handle the
1685         actual update.
1686         * src/io-png.c (image_begin_load): add a update_func callback.
1687         * src/io-gif.c (image_begin_load): add a update_func callback.
1688         (gif_get_lzw): added the update_func ability
1689
1690         * src/io-tiff.c (image_begin_load): add a update_func callback.
1691
1692 1999-11-04  Federico Mena Quintero  <federico@redhat.com>
1693
1694         * doc/tmpl/gdk-pixbuf.sgml: Populated.
1695
1696         * doc/tmpl/refcounting.sgml: Populated.
1697
1698         * doc/tmpl/file-loading.sgml: Populated.
1699
1700         * src/gdk-pixbuf.c: Added documentation comments.
1701
1702         * src/gdk-pixbuf-io.c (gdk_pixbuf_new_from_file): Added
1703         documentation comments.
1704
1705         * doc/: Finished integrating the documentation framework.
1706
1707 1999-11-03  Federico Mena Quintero  <federico@redhat.com>
1708
1709         * configure.in: Removed libgif stuff now that we do not depend on it.
1710         Added the necessary cruft for gtk-doc.
1711
1712         * src/Makefile.am: Unconditionally build the GIF loader.
1713
1714 1999-11-03  Jonathan Blandford  <jrb@redhat.com>
1715
1716         * src/io-gif.c (gif_read): renamed ReadOK to gif_read.
1717         Added a lot of comments to the file.
1718
1719         * src/Makefile.am (libpixbuf_gif_la_LIBADD): Remove dependency on
1720         lib*gif!!!!
1721
1722 1999-11-03  Michael Fulbright  <drmike@redhat.com>
1723
1724         * src/io-jpeg.c (image_load_increment): Further removal of
1725         bugginess in local buffering code. Handles grayscale jpegs
1726         correctly now.
1727
1728         * src/io-jpeg.c (image_load_stop): Was freeing local context
1729         for jpeg library before calling jpeg_decompres_finish ().
1730
1731 1999-11-03  Jonathan Blandford  <jrb@redhat.com>
1732
1733         * src/io-gif.c (image_load_increment): now handle arbitrary buffer
1734         sizes.
1735         (gif_get_lzw): set the transparency to the right val.
1736
1737 1999-11-03  Federico Mena Quintero  <federico@redhat.com>
1738
1739         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_init):
1740         Initiailize the x and y fields.
1741         (gnome_canvas_pixbuf_destroy): Queue a redraw upon destruction.
1742         (PixbufPrivate): Renamed need_size_update to need_xform_update.
1743         (recompute_bounding_box): Do not use temporary values.
1744
1745 1999-11-03  Jonathan Blandford  <jrb@redhat.com>
1746
1747         * src/io-gif.c (set_gif_lzw_clear_code): new state.  Fixes
1748         un-compressed gifs.
1749
1750         * src/gnome-canvas-pixbuf.c (recompute_bounding_box): remove
1751         unneeded x,y,h,w vars.
1752
1753 1999-11-03  Larry Ewing  <lewing@gimp.org>
1754
1755         * src/gnome-canvas-pixbuf.c (compute_render_affine): adjust
1756         render_affine calculation for x,y offsets.
1757         (gnome_canvas_pixbuf_set_arg): add x,y args.
1758         (gnome_canvas_pixbuf_get_arg): add x,y args.
1759         (recompute_bounding_box): simply code using ArtDrect and the
1760         render_affine.  Removed compute_xform_vectors as it was no longer
1761         needed.
1762
1763 1999-11-03  Federico Mena Quintero  <federico@redhat.com>
1764
1765         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_point): I'm a
1766         doofus.  Return a distance, not a boolean, for opaque images.
1767
1768         * src/gnome-canvas-pixbuf.c (recompute_bounding_box): Do proper
1769         rounding of bounding box coordinates.
1770         (gnome_canvas_pixbuf_bounds): Implemented the ::bounds() method.
1771         (gnome_canvas_pixbuf_draw): Use the correct alpha threshold value.
1772
1773 1999-11-03  Jonathan Blandford  <jrb@redhat.com>
1774
1775         * src/io-gif.c (gif_prepare_lzw): s/lwz/lzw/g
1776
1777 1999-11-03  Michael Fulbright  <drmike@redhat.com>
1778
1779         * src/io-jpg.c (image_load_increment): Fixed code which moved
1780         buffer around as new data comes in to work properly. JPEG progressive
1781         loading should be working now except for grayscale JPEG's, which I
1782         will look into next.
1783
1784 1999-11-03    <sopwith@redhat.com>
1785         * src/testpixbuf.c: A GtkFunction needs to return a value for deterministic behaviour.
1786           Also put dot printing back in.
1787
1788 1999-11-03    <jrb@redhat.com>
1789
1790         * src/io-gif.c (gif_get_extension): Read 'til the next empty block
1791         correctly, now.
1792
1793 1999-11-02  Cody Russell  <bratsche@dfw.net>
1794         * src/gdk-pixbuf-drawable.c: Changed the behavior to return NULL
1795         if part of the requested image is offscreen, rather than clipping
1796         the image.
1797
1798 1999-11-02  Jonathan Blandford  <jrb@redhat.com>
1799
1800         * src/io-gif.c (gif_fill_in_lines): Fill in the gif's blank areas
1801         for interlacing and progressive loading.
1802
1803 1999-11-02  Cody Russell  <bratsche@dfw.net>
1804         * src/gdk-pixbuf-drawable.c (gdk_pixbuf_from_drawable_core): Now
1805         calls gdk_pixbuf_new_from_art_pixbuf() instead of gdk_pixbuf_new().
1806
1807 1999-11-02  Jonathan Blandford  <jrb@redhat.com>
1808
1809         * src/io-gif.c (gif_main_loop): Now progressive gif loading works!
1810         It's a little slow though. )-:
1811
1812 1999-11-02 Elliot Lee <sopwith@redhat.com>
1813         * src/gdk-pixbuf-loader.[ch], src/gdk-pixbuf-io.h: Make the arguments to the
1814         write/load_increment operations const-correct.
1815
1816 1999-11-02  Federico Mena Quintero  <federico@redhat.com>
1817
1818         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_point):
1819         Implemented the ::point() method.  We do a simple containment test
1820         instead of a full distance calculation since the canvas is going
1821         to change to that scheme, anyways.
1822
1823 1999-11-02 Elliot Lee <sopwith@redhat.com>
1824
1825         * src/testpixbuf.c: Allow using $TBF_READLEN to specify the size of the chunks
1826         that are read from the input file.
1827
1828 1999-11-02  Larry Ewing  <lewing@gimp.org>
1829
1830         * src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_render): add aa
1831         render function.
1832         (gnome_canvas_pixbuf_class_init): add gnome_canvas_pixbuf_render
1833         to class.
1834
1835 1999-11-02  Federico Mena Quintero  <federico@redhat.com>
1836
1837         * src/gnome-canvas-pixbuf.c (compute_render_affine): Moved the
1838         affine computation code from ::draw() to here, since it is needed
1839         by ::point() as well.
1840
1841 1999-11-02 Elliot Lee <sopwith@redhat.com>
1842
1843         * src/gdk-pixbuf-loader.c: Reorganize gdk_pixbuf_loader_write into
1844         three functions, and eliminate duplication of code from write()
1845         and close(). Also fix bug where the 128-byte header was being
1846         written twice.
1847
1848 1999-11-01  Federico Mena Quintero  <federico@redhat.com>
1849         * src/gnome-canvas-pixbuf.c (recompute_bounding_box): Fixed
1850         bounding box computation.
1851
1852 1999-11-01  Federico Mena Quintero  <federico@redhat.com>
1853
1854         * src/gnome-canvas-pixbuf.c: Start of the pixbuf canvas item.
1855         Drawing affines seem to work.  Bounding box is fubared.  ::point()
1856         is not implemented.  This is a work in progress.
1857
1858         * src/Makefile.am: Added gnome-canvas-pixbuf.[ch] to the list of
1859         sources.
1860
1861         * configure.in: Sigh.  We need to link in libgnomeui for the
1862         canvas stuff.  This mess will disappear when gdk-pixbuf gets
1863         folded into gnome-libs.
1864
1865 1999-10-30  Jonathan Blandford  <jrb@redhat.com>
1866
1867         * src/io-gif.c: Some more work.  Now it generates a gdk_pixbuf of
1868         the right size, at a minimum, even if the image is squished and
1869         the wrong color.
1870         (ReadImage): lets get the offset right.  This will let transparent
1871         gifs work.
1872
1873 1999-10-29  Michael Fulbright  <drmike@redhat.com>
1874
1875         * src/io-jpeg.c: image_load_increment(): Fixed bug when
1876         image width was not a multiple of 4 - always use the
1877         gdk_pixbuf rowstride to increment pointers!
1878
1879 1999-10-29  Michael Fulbright  <drmike@redhat.com>
1880
1881         * src/io-jpeg.c: Added first cut at progressive jpeg loading.
1882         Currently does not handle either progressive jpeg files (jpeg
1883         files with multiple scans at different quality settings), but
1884         I plan on adding this support soon. These are fairly rare in
1885         my experience, so it shouldn't slow people down too much.
1886         Grayscale jpegs also don't work but that should be easy to fix.
1887
1888 1999-10-29  Michael Fulbright  <drmike@redhat.com>
1889
1890         * src/testpixbuf.c: Added title to windows so you can identify
1891         progressive and file windows.
1892
1893 1999-10-29  Michael Fulbright  <drmike@redhat.com>
1894
1895         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_write): Actually
1896         load the image handler when we determine the image type.
1897
1898         * src/gdk-pixbuf-io.[ch] (gdk_pixbuf_load_module): Changed the
1899         previously static function load_image_handler () to
1900         a public function gdk_pixbuf_load_module (). It is needed in
1901         gdk-pixbuf-loader.c to load image handler modules.  This function
1902         is different from gdk_pixbuf_get_module (), which only returns
1903         a reference to the required handler, because it actually loads
1904         the handler into memory. Both actions should possibly be combined
1905         in a convenience function since one w/o the other doesn't seem to
1906         make much sense.
1907
1908 1999-10-28  Jonathan Blandford  <jrb@redhat.com>
1909
1910         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_write): don't send a
1911         0 length buffer.
1912
1913 1999-10-28  Federico Mena Quintero  <federico@redhat.com>
1914
1915         * src/gdk-pixbuf-render.c (gdk_pixbuf_render_to_drawable): New
1916         function to render a portion of a pixbuf to a drawable.  Ignores
1917         alpha information and takes in a GC.
1918         (gdk_pixbuf_render_to_drawable_alpha): New function to render a
1919         portion of a pixbuf to a drawable.  It automatically creates a GC
1920         and a clipping mask for alpha pixbufs.
1921
1922 1999-10-28  Jonathan Blandford  <jrb@redhat.com>
1923
1924         * src/gdk-pixbuf.h: turned convenience macros into convenience
1925         functions so some error checking could be added.
1926
1927         * src/io-tiff.c (image_load_increment): started work on the tiff
1928         non-incremental loader.
1929         (image_begin_load): Finished the incremental loader.
1930
1931         * src/io-gif.c (image_load_increment): started work on the gif
1932         incremental loader.
1933
1934         * src/gdk-pixbuf-io.h: Changed ModuleType to GdkPixbufModule.
1935
1936 1999-10-27  Federico Mena Quintero  <federico@redhat.com>
1937
1938         * src/gdk-pixbuf-render.c (gdk_pixbuf_render_threshold_alpha): New
1939         function to threshold a pixbuf's alpha channel into a bitmap.
1940
1941         * src/gdk-pixbuf.c (gdk_pixbuf_new): Fixed so that it will
1942         contemplate future extensions to ArtPixBuf's formats.
1943
1944         * src/io-png.c (png_info_callback): Use the new API of gdk_pixbuf_new().
1945
1946         * src/gdk-pixbuf.h (gdk_pixbuf_get_height): Added some convenience
1947         macros to fetch the ArtPixBuf's fields.
1948
1949 1999-10-27  Havoc Pennington  <hp@pobox.com>
1950
1951         * src/testpixbuf.c (main): Display the progressive load
1952
1953         * src/io-png.c (setup_png_transformations): Break transformation
1954         code into separate function
1955         (png_info_callback): Use setup_png_transformations
1956
1957 1999-10-27  Havoc Pennington  <hp@pobox.com>
1958
1959         * src/gdk-pixbuf-io.c (gdk_pixbuf_new_from_xpm_data): Check
1960         properly whether the XPM module has already been loaded
1961         (gdk_pixbuf_new_from_file): Check properly if loader module
1962         was already loaded (was checking if load symbol was present
1963         in order to decide whether to re-load; should check module !=
1964         NULL, then load != NULL)
1965         (image_handler_load): Check in present working directory,
1966         makes it easier to debug for now
1967         (file_formats): This array initializer was seriously on crack,
1968         was assigning a function pointer to a GModule*
1969
1970         * src/testpixbuf.c (main): Change type of pixbuf_loader to GdkPixbufLoader*
1971
1972 1999-10-27  Havoc Pennington  <hp@pobox.com>
1973
1974         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_finalize):
1975         Fix typo that prevented compilation
1976         (gdk_pixbuf_loader_destroy): ditto
1977
1978 1999-10-27  Federico Mena Quintero  <federico@redhat.com>
1979
1980         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_new): Return a
1981         GdkPixbufLoader, not a GtkObject.
1982         (gtk_marshal_NONE__INT_INT_INT_INT): Made static.
1983         (gdk_pixbuf_loader_get_type): Documented.
1984         (gdk_pixbuf_loader_class_init): Initialize the parent class
1985         correctly.
1986         (gdk_pixbuf_loader_destroy): Added sanity checks. Call the parent
1987         class destroy function.
1988         (gdk_pixbuf_loader_new): Documented.
1989         (gdk_pixbuf_loader_finalize): Call the parent class finalize
1990         function.
1991         (gdk_pixbuf_loader_write): Use size_t for count.
1992
1993 1999-10-27  Michael Fulbright  <drmike@redhat.com>
1994
1995         * src/gdk-pixbuf-loader.c (gdk_pixbuf_loader_destroy): Fixed
1996         logic so we only try to close loader if it wasn't previously closed.
1997
1998 1999-10-27  Michael Fulbright  <drmike@redhat.com>
1999
2000         * src/gdk-pixbuf-loader.c: Made sure image_loader struct member of
2001         pixbuf_loader properly initialized.
2002
2003         * src/testpixbuf.c: Made sure we cleanup pixbuf_loader properly
2004         when done.
2005
2006 1999-10-26  Jonathan Blandford  <jrb@redhat.com>
2007
2008         * src/gdk-pixbuf-io.c (image_handler_load): load the vtable fully.
2009
2010         * src/gdk-pixbuf-loader.c: Finished initial cut at the object.
2011
2012 1999-10-26  Havoc Pennington  <hp@pobox.com>
2013
2014         * src/gdk-pixbuf-loader.h: fix signals
2015
2016         * src/gdk-pixbuf-io.h: add new vtable fields
2017
2018
2019 1999-10-26  Jonathan Blandford  <jrb@redhat.com>
2020
2021         * src/gdk-pixbuf-loader.h: New Class.  Beginning of progrssive
2022         loading.
2023
2024 1999-10-25  Federico Mena Quintero  <federico@redhat.com>
2025
2026         * configure.in (CFLAGS): Patch from Uwe Koloska
2027         <koloska@Rcs1.urz.tu-dresden.de> to fix a stupid typo of mine.
2028
2029 1999-10-22  Havoc Pennington  <hp@pobox.com>
2030
2031         * src/io-xpm.c (mem_buffer): Clean up stupid
2032         increment-inside-array-dereference thing
2033
2034         * src/testpixbuf.c: Add XPM data tests.
2035
2036         * src/io-xpm.c: Make the XPM data buffer const, fix const
2037         correctness throughout the code.
2038
2039 1999-10-22  Havoc Pennington  <hp@pobox.com>
2040
2041         * src/gdk-pixbuf.h: Export gdk_pixbuf_new_from_xpm_data()
2042
2043 1999-10-22  Havoc Pennington  <hp@pobox.com>
2044
2045         * src/io-xpm.c (image_load_xpm_data): Export this symbol for
2046         loading an XPM from memory.
2047
2048         * src/gdk-pixbuf-io.c (gdk_pixbuf_new_from_xpm_data): New
2049         function, loads pixbuf from xpm data
2050         (image_handler_load): Add g_return_if_fail() to ensure the same
2051         module isn't loaded twice. Add g_module_symbol() to scan for XPM
2052         loader function.
2053
2054 1999-10-22  Federico Mena Quintero  <federico@redhat.com>
2055
2056         * src/io-png.c (image_load): Patch from Kristian Hogsberg
2057         Kristensen <hogsberg@daimi.au.dk> to avoid allocating extra row
2058         buffers; the rows can be read in directly into the main pixel
2059         buffer.
2060
2061 1999-10-20  Federico Mena Quintero  <federico@redhat.com>
2062
2063         * src/gdk-pixbuf-io.c (image_handler_load): Free path.
2064
2065 1999-10-20  Federico Mena Quintero  <federico@redhat.com>
2066
2067         * configure.in: Bumped version number to 0.3.
2068
2069         * src/Makefile.am (lbgdk_pixbuf_la_LDFLAGS): Added a libtool
2070         version number for the library.
2071
2072 1999-10-20  Federico Mena Quintero  <federico@redhat.com>
2073
2074         * src/gdk-pixbuf.h (GdkPixbuf): Removed the unref_fn field.  Now
2075         all memory management of the buffer is done by libart.
2076
2077         * src/gdk-pixbuf.c (gdk_pixbuf_unref): Do destruction here.
2078         Removed gdk_pixbuf_destroy, gdk_pixbuf_duplicate.
2079
2080         * src/gdk-pixbuf-data.c (gdk_pixbuf_new_from_data): Implemented in
2081         terms of the libart functions.  Removed the old code.
2082
2083         * src/gdk-pixbuf-io.c (image_handler_load): Removed the save
2084         symbols.  Saving will not be implemented in GdkPixbuf.
2085
2086         * src/io-gif.c: Removed the saving stub.
2087         (image_load): Fixed memory management to fail gracefully if we run
2088         out of memory while loading the image.  Close the gif file when we
2089         are done.  This still needs more error handling for the DGif
2090         functions.
2091
2092         * src/io-jpeg.c (image_load): Some robustness fixes.
2093
2094         * src/io-png.c: Removed the saving stuff.
2095         (image_load): Some memory management fixes.
2096
2097         * src/io-tiff.c (image_load): Ditto.
2098
2099         * src/io-xpm.c (pixbuf_create_from_xpm): Ditto.
2100
2101 1999-10-18  Havoc Pennington  <hp@pobox.com>
2102
2103         * subautogen.sh: New name for macros/autogen.sh
2104
2105         * autogen.sh: use subautogen.sh
2106
2107 1999-10-18  Federico Mena Quintero  <federico@redhat.com>
2108
2109         * src/*: Reindented to use the GNOME Indentation.  Renamed
2110         GdkPixBuf to GdkPixbuf, for consistency with the function names
2111         (and it is also easier to type) :-)
2112
2113 1999-10-18  Havoc Pennington  <hp@pobox.com>
2114
2115         * configure.in: Use AM_PATH_GLIB instead of glib-config directly
2116
2117         * src/Makefile.am: Re-enable testpixbuf with GTK_CFLAGS/GTK_LIBS
2118
2119 1999-10-18  Havoc Pennington  <hp@pobox.com>
2120
2121         * Makefile.am (SUBDIRS): Remove "macros"
2122
2123         * configure.in: Don't use GNOME_INIT, handle case where we are
2124         inside gnome-libs. AM_PATH_GTK for the GIF test
2125
2126         * src/Makefile.am: Change flags to work without libgnomeui,
2127         comment out testpixbuf for now
2128
2129 1999-10-18  Federico Mena Quintero  <federico@redhat.com>
2130
2131         * configure.in: Use $GTK_LIBS as the extra libs when checking for
2132         libgif/libungif, as they need the X libraries.  Fixes bug #2472.
2133
2134 1999-10-10  Cody Russell  <bratsche@dfw.net>
2135         * src/gdk-pixbuf-drawable.c: core function now determines whether
2136         the requested geometry is on screen or not, and if some is not
2137         then the request is clamped to geometry that is on the screen.
2138
2139         Changed 'pixbuf' to 'art_pixbuf' in core function.
2140
2141 1999-10-08  Michael Fulbright  <drmike@redhat.com>
2142
2143         * src/gdk-pixbuf-data.c: Added to load rgb data from const data.
2144
2145         * src/testpifbuf: Changed test program to display cdrom from rgb data
2146         if no filename given to test program.
2147
2148 1999-10-07  Cody Russell  <bratsche@dfw.net>
2149         * src/gdk-pixbuf-drawable.[ch]: Added. (Actually, Miguel committed
2150         them, but I wrote them).
2151
2152         * src/gdk-pixbuf-drawable.h: Added a missing ; so things will now
2153         compile.
2154
2155         * src/Makefile.am: Added gdk-pixbuf-drawable.[ch] to
2156         libgdk_pixbuf_la_SOURCES and libgdk_pixbufinclude_HEADERS.
2157
2158         * src/gdk-pixbuf-drawable.c: Added #include "gdk-pixbuf-drawable.h"
2159         to fix compilation.
2160
2161         * src/gdk-pixbuf-drawable.[ch]: Changed functions to return
2162         GdkPixBuf* instead of ArtPixBuf*.
2163
2164 1999-09-22  Michael Meeks  <michael@nuclecu.unam.mx>
2165
2166         * src/gdk-pixbuf.c (gdk_pixbuf_new): created.
2167         (gdk_pixbuf_scale): use gdk_pixbuf_new + return a new scaled image.
2168
2169         * src/gdk-pixbuf.h (struct _GdkPixBuf): Re-organise struct, + add
2170         GdkPixBufUnrefFunc + gdk_pixbuf_new.
2171
2172         * src/io-jpeg.c (image_load): clean to use gdk_pixbuf_new.
2173
2174         * src/io-xpm.c (_pixbuf_create_from_xpm): ditto.
2175
2176         * src/io-tiff.c (image_load): ditto + fix leak
2177
2178         * src/io-png.c (image_load): ditto + add more exit points; monitor.png
2179         crashes this module ( add warning :-)
2180
2181         * src/io-bmp.c (image_load): ditto.
2182
2183         * src/io-gif.c (image_load): ditto.
2184
2185 1999-09-18  Michael Meeks  <michael@nuclecu.unam.mx>
2186
2187         * src/gdk-pixbuf.c (gdk_pixbuf_scale): Hack rgba support in so
2188         it doesn't crash scaling with alpha.
2189
2190 1999-09-17  Federico Mena Quintero  <federico@redhat.com>
2191
2192         * src/io-bmp.c (image_load): Set the initial ref_count to 1.
2193
2194         * src/io-gif.c (image_load): Likewise.
2195
2196         * src/io-jpeg.c (image_load): Likewise.
2197
2198         * src/io-png.c (image_load): Likewise.
2199
2200         * src/io-tiff.c (image_load): Likewise.
2201
2202         * src/io-xpm.c (_pixbuf_create_from_xpm): Likewise.
2203
2204         * src/gdk-pixbuf-io.c (gdk_pixbuf_load_image): Added an assertion
2205         for the ref_count to be != 0.
2206
2207         * src/gdk-pixbuf.c (gdk_pixbuf_ref): Be more paranoid with sanity
2208         checking.
2209         (gdk_pixbuf_unref): Fix incorrect sanity check and comparison.
2210
2211 1999-08-09  Federico Mena Quintero  <federico@nuclecu.unam.mx>
2212
2213         * src/io-png.c (image_save): Fixed compiler warnings.  Fixed write
2214         to unallocated memory (row_ptr), and fixed its type as well.  Take
2215         into account the ArtPixbuf's rowstride when assigning the row
2216         pointers.
2217
2218         * src/gdk-pixbuf.c: Fixup includes.
2219
2220         * src/gdk-pixbuf-io.c: Likewise.
2221
2222 Sat Jul 31 19:19:47 CEST 1999
2223
2224         * src/gdk-pixbuf-io.c:
2225         * src/io-png.c: Fixed two obvious C syntax bugs
2226
2227 1999-07-29  Mark Crichton  <crichton@gimp.org>
2228
2229         * src/io-png.c (image_save): Added PNG saving function
2230
2231         * src/gdk-pixbuf-io.c: Changed image_save function format.  Now it's
2232         image_save(GdkPixBuf *p, FILE *f, ...)
2233
2234
2235 1999-07-26  Michael Zucchi  <mzucchi@denr.sa.gov.au>
2236
2237         * src/Makefile.am (*_LIB): Only build the relevant loaders which
2238         require extra libraries if we actually have those libraries.
2239
2240 1999-07-23  Richard Hestilow  <hestgray@ionet.net>
2241
2242         * src/gdk-pixbuf.h: Include glib.h as it uses g* datatypes
2243         * gdk_pixbufConf.sh.in: Added for gnome-config
2244         * Makefile.am:
2245         * configure.in: Modified to generate gdk_pixbufConf.sh
2246
2247 1999-07-20  Mark Crichton  <crichton@gimp.org>
2248
2249         * src/gdk-pixbuf.c (gdk_pixbuf_rotate): Fixed rotation.  Now a bbox
2250         calculation needs to be done.
2251
2252 1999-07-18  Larry Ewing  <lewing@gimp.org>
2253
2254         * src/io-xpm.c:
2255         * src/io-gif.c:
2256         * src/io-png.c:
2257         * src/io-jpeg.c: Fix a few memory leaks in the, most of them in
2258         error cases but one or two in the common case.  There are probably
2259         a few small ones left.
2260
2261 1999-07-18  Mark Crichton  <crichton@gimp.org>
2262
2263         * configure.in: removed version.h.
2264
2265         * src/gdk-pixbuf-io.c (pixbuf_check_tiff): Minor readability
2266         improvements.
2267
2268 1999-07-17  Mark Crichton  <crichton@gimp.org>
2269
2270         * src/gdk-pixbuf.c: Removed gdk_pixbuf_free, redundant code.
2271         (gdk_pixbuf_rotate): Added pixbuf rotation code.
2272         (gdk_pixbuf_scale): Changed // comments to /* */
2273
2274         * src/gdk-pixbuf.h (gdk_pixbuf_destroy): Added gdk_pixbuf_destroy
2275         function to header.
2276
2277 1999-07-16  Larry Ewing  <lewing@gimp.org>
2278
2279         * src/testpixbuf.c (expose_func): reverted the expose everything
2280         changes, I'm not sure why these went in.
2281         (config_func): bring this up to date with the new pixbuf_scale
2282         semantics.
2283
2284         * src/gdk-pixbuf-io.c: added a couple of warnings to the module
2285         loading code so that poeple can diagnose problems better.
2286
2287         * src/gdk-pixbuf.c (gdk_pixbux_scale): fix the borkedness, also it
2288         no longer allocates a new pixbuf, which make things nicer for the
2289         rest of the code.  Unfortunately there is still a problem with
2290         scaling rgba images.
2291
2292 1999-07-16  Mark Crichton  <crichton@gimp.org>
2293
2294         * src/testpixbuf.c (config_func): ConfigureEvent handler.  This
2295         calls gdk_pixbuf_scale.  However, something is not working.
2296         N.B.: current pixmap is now stored in user_data with a key of
2297         "pixmap"
2298
2299         * src/gdk-pixbuf.c (gdk_pixbuf_scale): Implemented scaling function.
2300         Something is still borked, however.
2301
2302 1999-07-15  Larry Ewing  <lewing@gimp.org>
2303
2304         * src/io-jpeg.c (image_load): add raph@gimp.org's fix to the jpeg
2305         indexing routine
2306
2307         * src/testpixbuf.c (main): fix up the file routines a little so
2308         that you can load multiple files given the file names
2309
2310 1999-07-14  Larry Ewing  <lewing@gimp.org>
2311
2312         * src/testpixbuf.c (expose_func): added an almost proper expose
2313         handler for testpixbuf
2314
2315 1999-07-13  Mark Crichton  <crichton@gimp.org>
2316
2317         * configure.in: Fixed GIF check.  Replaced " with '
2318         * src/gdk-pixbuf.c: More (minor) work on gdk_pixbuf_scale
2319
2320 1999-07-13  Mark Crichton  <crichton@gimp.org>
2321
2322         * configure.in: I am a bonehead.  Added gif-lib check.