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