File: ChangeLog

package info (click to toggle)
rep-gtk 0.18.cvs20060518-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,704 kB
  • ctags: 369
  • sloc: sh: 7,421; ansic: 3,833; lisp: 1,140; makefile: 152
file content (961 lines) | stat: -rw-r--r-- 30,132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
2006-01-31  John Harper  <jsh@unfactored.org>

	* gtk-compat.c: applied patch from Michal Maruka
	<mmc@maruska.dyndns.org> to fix problems with newer gtk
	versions

2004-04-03  John Harper  <jsh@unfactored.org>

	* rep-gtk.h, gtk-compat.c: better fix for thing below, #ifdef
	out the functions when using Gtk >= 2.4

2004-03-30  John Harper  <jsh@unfactored.org>

	* rep-gtk.h, gtk-compat.c: changed `label' arg of two functions
	to be `const gchar *', not `gchar *'

2004-01-11  John Harper  <jsh@unfactored.org>

	* gnomeui.defs, gnome-canvas.defs: deleted some functions that
	no longer seem to exist

2003-08-01  John Harper  <jsh@unfactored.org>

	* configure.in: version 0.18

2003-02-12  John Harper  <jsh@unfactored.org>

	* rep-gtk.h, rep-gtk.c: changed guint's to GTypes. Adapted from
	a patch by Aron Griffis <agriffis@gentoo.org> in #105848

2002-11-09  John Harper  <jsh@unfactored.org>

	* configure.in: version 0.17

2002-11-03  John Harper  <jsh@unfactored.org>

	* gtk.defs (gtk_widget_set_size_request,
	gtk_widget_get_size_request): added these two functions

2002-10-24  John Harper  <jsh@unfactored.org>

	* examples/text.jl, examples/hello.jl, examples/clist.jl:
	tidied up these examples

	* gdk.defs (GdkSelection): cast items to integers to avoid
	generating compiler errors on IRIX

2002-07-11  John Harper  <jsh@unfactored.org>

	* gtk-compat.c (gtk_color_selection_set_color_interp,
	gtk_color_selection_get_color_interp): Include space for alpha
	in calls to gtk_color_selection_{get,set}_color. Fixes #87959

2002-06-22  John Harper  <jsh@unfactored.org>

	* configure.in: version 0.16

	* rep-gtk.spec.in: updated, untested

2002-04-01  John Harper  <jsh@unfactored.org>

	* gtk.defs, glib.defs (g-signal-connect, g-signal-disconnect):
	moved to glib.defs file, take GObject arg, and named g-foo not
	gtk-foo

	* examples/text.jl, examples/hello.jl, examples/gnome-test,
	examples/clist.jl, examples/canvas-test,
	examples/canvas-pixbuf-test: changed for signal functions

2002-03-31  John Harper  <jsh@unfactored.org>

	* configure.in: don't use gnome-config to check if gnome is
	installed or not, use "pkg-config libgnome-2.0"

2002-03-14  John Harper  <jsh@pixelslut.com>

	* rep-gtk.c (sgtk_build_args, Fg_object_new, Fg_object_get,
	Fg_object_list): made this stuff actually work! g-object-list
	is a new function, it lists all properties of an object.
	g-object-new and g-object-set have a new calling format:

	(g-object-new TYPE PROP1 VALUE1 PROP2 VALUE2 ...)
	(g-object-set OBJECT PROP1 VALUE1 PROP2 VALUE2 ...)

	* rep-gtk.c (sgtk_gvalue_to_rep): gracefully handle GValue's
	containing null pointers (return Qnil instead of crashing)

2002-03-13  jacob berkman  <jacob@ximian.com>

	* rep-gtk.c (sgtk_try_missing_type): add GtkTextIter (from jsh,
	fixes #74528)

2002-03-03  John Harper  <jsh@pixelslut.com>

	* gtktext.defs: added some default values

	* rep-gtk.c (sgtk_gvalue_to_rep): accept G_TYPE_INVALID to
	silence error messages

2002-02-13  Sander Vesik <Sander.Vesik@sun.com>

	* gtk-compat.c: update menu_popup_position to reflect API
	change in gtk+

2002-02-12  John Harper  <jsh@unfactored.org>

	Status: gtk mostly all ported except for Tree classes. Removed
	deprecated functions.

	* gtktext.defs, gtk.defs, glib.defs, gdk.defs, gdk-pixbuf.defs:
	updated for current state of gtk-2. gtktext.defs is a new file
	describing the various classes of the new Text widget. Only
	thing left to do for complete gtk coverage (modulo from the
	usual number of functions that aren't easy to wrap) is the new
	Tree widget

	* rep-types.c, rep-gtk.h, gtk-support.c, gtk-compat.c,
	configure.in, build-gtk.jl, README, Makefile.in: more random
	porting changes

	* examples/hello.jl, examples/clist.jl: ported
	* examples/text.jl: new, needs more code

2002-01-30  John Harper  <jsh@unfactored.org>

	All modules now compile and link. Though the gnome example
	scripts crash immediately. I'll leave that adventure for
	another day..

	* rep-gtk.h, rep-gtk.c, gnomeui.defs, gnome-canvas.defs,
	gnome-canvas-support.c: whacked until it compiles

	* configure.in: fixed canvas configuration

	* build-gtk.jl: bodged support for short and ushort types

2002-01-29  John Harper  <jsh@unfactored.org>

	* rep-types.c, rep-gtk.spec.in, rep-gtk.h, rep-gtk.c,
	libglade-support.c, gnomeui-support.c, gnomelib.defs,
	gnomelib-support.c, gnome-canvas.defs, gnome-canvas-support.c,
	gnome-canvas-pixbuf.defs, glib.defs, gdk-pixbuf.defs,
	configure.in, README-GTK-2, README, Makefile.in, HACKING,
	AUTHORS, .cvsignore: 

	* examples/test-libglade, examples/rep-ui, examples/hello.jl,
	examples/gtk-dialog.jl, examples/gnome-test, examples/clist.jl,
	examples/canvas-test, examples/canvas-pixbuf-test: 

	Lots of minor changes. Changed module hierarchy so that all
	modules are installed under the gui.gtk-2 prefix. This will
	allow both versions of rep-gtk to be installed concurrently

	I remove some of Sander's fixes to enable me to tackle the task
	of porting the GNOME2 library descriptions (probably need to
	add support for GError first, which may be ugly since
	build-gtk.jl doesn't allow "invisible" arguments which would be
	the best way of converting between GError and lisp exceptions)

	Still need to update the gtk.defs file, ugh..

2002-01-17 Sander Vesik <sander.vesik@sun.com>

	* configure.in: disable libgnome binding for the moment

	* gdk-pixbuf.defs: gdk_pixbuf_from_file now has an additional
	  parameter

	NB! This is an unauthorised temporary patch to have a building
	rep-gtk for gnome2 alpha release.

Sat Dec  1 13:57:17 2001  Owen Taylor  <otaylor@redhat.com>

	* gnomelib.defs (includes): Remove references
	to now gone gnome_file_convert().

	* rep-gtk.[ch]: Remove unneeded args information
	from sgtk_object_info().

	* rep-gtk.c (sgtk_find_arg_info): Remove unused function.

	* rep-gtk.c (gtk_signal_new_generic): Remove 
	unnecessary call to gtk_object_class_add_signals.

	* rep-gtk.[ch] (sgtk_build_args): Rework to use GObject
	introspection instead of sgtk_object_info.

	* rep-gtk.[ch]: (sgtk_valid_arg_type): Rename from
	valid_arg(), take GType instead of GtkArg.

	* rep-gtk.c: Make gtk_object_new/set/get use GObject/
	GParamSpec instead of obsolete GtkObject equivalents.

	* rep-gtk.c (sgtk_get_type_info): Use type "qdata"
	rather than a hash table.

	* rep-gtk.c (sgtk_find_object_info): Use %lu when
	printing out types.

	* gtk-support.c: Include gdkx.h not gdkprivate.h.

	* rep-gtk.h: Fix guint => GType.

2001-11-17  John Harper  <jsh@unfactored.org>

	* rep-libglade.h, rep-gtk.c, libglade.defs, libglade-support.c,
	gtk.defs, configure.in, config.h.in, README.gtk-defs: 

	More porting. Libglade now compiles. Haven't tested it (don't
	have a new enough glade), but it _should_ work..

2001-11-17  John Harper  <jsh@unfactored.org>

	* rep-gtk.h, rep-gtk.c, gtk.defs, glib.defs, gdk.defs,
	build-gtk.jl, Makefile.in:

	More porting. Use GType[Info] and GObject almost wholly instead
	of GtkType[Info] and GtkObject now

	Also reinstated the full-callback calling mechanism since lots
	of Gtk functions use it and don't provide closured variants..

	Biggest task left is to support the GParam stuff for
	constructing and modifying GObjects.

2001-11-16  John Harper  <jsh@unfactored.org>

	* rep-gtk.h, rep-gtk.c, rep-gnome.h, gtk.defs, gtk-support.c,
	gnomelib.defs, gnomelib-support.c, gdk.defs, configure.in,
	build-gtk.jl:

	Many hacks (some extremely dubious) to get to first stage of
	Gtk-2 port.

	Current status: gtk/gdk wrappers compile (i.e. you must specify
	--without-gnome --without-libglade --without-gdk-pixbuf to
	configure) and they mostly work

	I basically did the minimum necessary to make it compile. Then
	added support for GClosure's and GValue's so that signal
	handling works. The hello.jl and clist.jl example programs run
	correctly without modification

	Next step: remove the GtkArg crap, random cleanup, use
	GObject's instead of GtkObject's, and various gtk_ -> g_
	changes..

2001-01-17  John Harper  <jsh@eazel.com>

	* rep-gtk.spec.in: unset LC_ALL, LINGUAS and LANG before
	building

2000-12-04  John Harper  <jsh@eazel.com>

	* configure.in: version 0.15

2000-11-25  John Harper  <jsh@eazel.com>

	* gtk.defs (gtk_window_set_transient_for): marked that PARENT
	arg may be null

2000-10-31  John Harper  <jsh@eazel.com>

	* gnomeui.defs: added most definitions from the
	<libgnomeui/gnome-winhints.h> header file. Left out some
	meaningless stuff that never made it to the actual wm-spec

2000-09-26  John Harper  <john@dcs.warwick.ac.uk>

	* gnome-canvas.defs (gnome_canvas_item_scale,
	gnome_canvas_item_rotate): commented out, these functions are
	apparently MIA in recent gnome-libs

2000-09-20  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.14

2000-09-18  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_init_with_args): after calling gtk_set_locale
	() call setlocale (LC_NUMERIC, "C") for rep's benefit (floating
	point lameness)

	* configure.in, config.h.in: check for <locale.h> and setlocale ()

2000-09-11  John Harper  <john@dcs.warwick.ac.uk>

	* gtk.defs (gtk_editable_get_chars): changed return type from
	`none' to `string'. Pointed out by Gregory Merchan
	<merchan@baton.phys.lsu.edu>

2000-09-04  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.14pre1

2000-08-29    <john@dcs.warwick.ac.uk>

	* rep-gtk.spec.in: rep-gtk-gnome and rep-gtk-libglade both
	require exactly @version@ of rep-gtk

2000-08-03  John Harper  <john@dcs.warwick.ac.uk>

	* gtk.defs (gtk_menu_get_attach_widget): added missing arg-name

	* autogen.sh: added

2000-07-24  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.spec.in: updated

2000-07-23  John Harper  <john@dcs.warwick.ac.uk>

	Changed the module hierarchy, now:

		gui.gtk.{gtk,libglade,gdk-pixbuf}
		gui.gnome.{lib,ui,canvas,canvas-pixbuf,libglade}

	the old names all still work

	* Makefile.in: various changes

	* rep-gtk.c: renamed module, export rep-gtk-version

	* libglade-support.c, gnomeui-support.c, gnomelib-support.c,
	gnome-canvas-support.c, rep-types.c: renamed modules, added
	aliases

	* gnome-canvas-pixbuf.defs, gdk-pixbuf.defs: add alias
	definitions

	* configure.in: require rep 0.13 (unreleased)

	* build-gtk.jl: added new global option `alias'

2000-07-20  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in: include --mode argument to libtool (from David
	Kaelbling <drk@sgi.com>)

	* rep-gtk.c: remove ^M that got into a macro definition somehow
	(from David Kaelbling <drk@sgi.com>)

2000-07-12  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.13a

2000-07-11  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: make the various permutations of libraries work
	correctly. Only compile gnome-canvas-pixbuf if both gnomeui and
	gdk-pixbuf libraries are being built. Also, don't error out if
	a library FOO can't be found, unless --with-FOO was specified

	[ some of this is from a patch by Ceri Storey ]

2000-07-10  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.spec.in: remembered that g[td]k-1.2.defs is now
	called g[td]k.defs

2000-07-09  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: version 0.13

	* Makefile.in: gnome-canvas-pixbuf requires gnomeui, not
	gnome-canvas

	* gnomeui-support.c (sgtk_gnome_init): preserve rep's fatal
	signal handlers, they're more useful than the gnome handler

	* gnomeui-support.c (sgtk_gnome_string_callback): handle a null
	string being passed in

	* configure.in: require rep 0.12+

	* rep-gtk.h, rep-gtk.c, libglade-support.c, gnomelib-support.c,
	gnome-canvas-support.c: removed rep < 0.12 compatibility junk

	* rep-types.c (rep_dl_init): create a proper (but empty)
	module, instead of just returning a symbol

2000-07-06  John Harper  <john@dcs.warwick.ac.uk>

	* gnomeui.defs (GnomeDialog): cleaned up
	(GnomeStockPixmapNameType): new string-enum

	* gtk.defs (gtk_clist_select_row, gtk_clist_unselect_row):
	column parameters default to zero

2000-07-05  John Harper  <john@dcs.warwick.ac.uk>

	* gtk.defs (gtk_window_position): reinstated this pseudonym for
	gtk_window_set_position

	* examples/canvas-test: connected `delete_event' signal

	* gnomeui.defs (gnome_icon_entry_set_icon): added

	* gnomeui-support.c (sgtk_gnome_init): #if 0 the code to pass
	options to and from gnome_init (). It's so fucking braindead
	that on seeing an option it doesn't understand, it terminates
	the program

2000-07-04  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: some fixes for arg conversion from repv to
	GTK_TYPE_POINTER. Kludged type support for GdkPixbuf. Fixed
	some string-enum stuff

	* build-gtk.jl: support `define-string-enum' form. Added extra
	global option `(system-init-code STRING)' for code that should
	only be run when REP_GTK_DONT_INITIALIZE isn't set

	* gdk-pixbuf.defs, gnome-canvas-pixbuf.defs, configure.in,
	Makefile.in: wrap these two libraries

	* gdk-1.2.defs, gtk-1.2.defs: removed the `-1.2' from the file
	names

	* gtk.defs: merged a bunch of stuff from guile-gtk HEAD

	* gnomeui.defs: unhid the GnomeStock definitions

	* gnomeui-support.c: always call gnome_init (). Take the app id
	and version from `*gnome-app-id*' and `*gnome-app-version*',
	else make something up

	* rep-types.c (sgtk_char_to_rep): new function

	* examples/canvas-pixbuf-test: new test program

	* gnomelib.defs (gnome_mime_nametemplate): deleted, this
	function has been removed from recent gnome-libs?

2000-07-02  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.12

2000-07-01  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (gtk_window_add_accel_group,
	gtk_window_remove_accel_group, gtk_window_set_transient_for,
	gtk_window_set_default_size, gtk_window_set_modal): new functions
	(gtk_window_position): renamed gtk_window_set_position

2000-06-28  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs: changed some int's to bool's, added some more
	function definitions

2000-06-23  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_is_a_gtkobj): check for GTK_IS_OBJECT and
	!GTK_OBJECT_DESTROYED (avoids segmentation faults)

2000-06-18  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: various cleanups to help 64-bit targets, from
	George Lebl <jirka@5z.com>

2000-06-16  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.11

	* rep-gtk.spec.in: require rep 0.12+

2000-06-14  John Harper  <john@dcs.warwick.ac.uk>

	* gnomeui.defs (gnome-dialog-new): fixed typo

2000-05-27  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs: added GtkTearoffItemMenu type and constructor

2000-05-26  John Harper  <john@dcs.warwick.ac.uk>

	* libglade.defs (GladeXML): specify a custom getter for
	textdomain field

	* libglade-support.c (sgtk_glade_xml_textdomain): getter for
	glade-xml-textdomain

	* configure.in, config.h.in: check <glade/glade-xml.h> to test
	if the `textdomain' field of the GladeXML structure has been
	renamed to `txtdomain'. Define LIBGLADE_XML_TXTDOMAIN if so

2000-05-09  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.10

2000-04-17  John Harper  <john@dcs.warwick.ac.uk>

	* gnomeui.defs (gnome_stock_pixmap_widget,
	gnome_stock_pixmap_widget_at_size): made window argument
	null-ok

2000-04-16  John Harper  <john@dcs.warwick.ac.uk>

	Added support for using libglade with GNOME widgets

	* libglade-support.c (GLADE_INIT_FUNC): macro naming the
	function to call to initialize libglade, defaults to glade_init

	* configure.in, Makefile.in: if wrapping both GNOME and
	libglade, build an extra module `libglade-gnome' which is
	exactly the same as `libglade' but linked against the GNOME
	libs and calls glade_gnome_init () instead of glade_init ()

	* examples/test-libglade: pass `--gnome' option to use GNOME
	version of libglade wrappers

2000-04-14  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (GtkAccelGroup): new boxed type
	(gtk_widget_add_accelerator, gtk_widget_remove_accelerator,
	gtk_widget_remove_accelerators, gtk_widget_accelerator_signal,
	gtk_widget_add_events, gtk_label_set_pattern,
	gtk_label_parse_uline, gtk_menu_shell_select_item,
	gtk_menu_shell_deselect, gtk_menu_shell_activate_item,
	gtk_menu_set_accel_group, gtk_menu_get_uline_accel_group,
	gtk_menu_ensure_uline_accel_group, gtk_menu_get_attach_widget,
	gtk_menu_set_tearoff_state, gtk_menu_set_title,
	gtk_menu_reorder_child): wrap these functions

	[ partly from a patch by Richard Kilgore
	<rkilgore@kilgoresolutions.com> ]

2000-04-09  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c, libglade-support.c, gnomeui-support.c,
	gnomelib-support.c, gnome-canvas-support.c: put all subroutines
	into suitably named modules if rep supports them; remove all
	direct references to symbols' `value' fields

2000-04-07  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl (output-footer): emit code to define the
	subroutines in a module of the correct name (suitably ifdef'ed
	by rep version)

2000-03-26  John Harper  <john@dcs.warwick.ac.uk>

	* gnomelib-support.c (rep_dl_init): provide `gnomelib' not `gnome'

2000-03-11  John Harper  <john@dcs.warwick.ac.uk>

	* config.sub, config.guess: updated from libtool-1.3.4

	* Makefile.in: changed how rep is called to not assume that
	load-path contains `.' (it doesn't anymore)

2000-03-08  John Harper  <john@dcs.warwick.ac.uk>

	* rep-types.c (sgtk_rep_to_cvec): cast cvec.ptr to char* before
	doing arithmetic on it (patch from Aron Griffis
	<agriffis@bigfoot.com>)

	* rep-gtk.c (timeout_callback): set timed_out even if not going
	to break out of gtk-main
	(set_timeout): only create timeout if one doesn't already exist

2000-03-06  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.9.1

	* rep-gtk.h: include config.h

2000-03-05  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.9

2000-03-01  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_event_loop): when exiting, only restart the
	outer timeout if it hasn't already fired

2000-02-29  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (timeout_callback): only propagate the timeout if
	it's from the innermost event loop
	(sgtk_event_loop): call set_timeout () before exiting

	* gtk-compat.c (menu_popup_position): ensure that the chosen
	position always leaves the menu totally on-screen (using code
	borrowed from gtk/gtkmenu.c)

	* gdk-1.2.defs: added gdk_screen_width and gdk_screen_height
	functions

	* gtk-1.2.defs: added field `allocation' to GtkWidget
	* gtk-support.c (sgtk_gtk_widget_get_allocation): new function

	* build-gtk.jl: new option in object fields, (getter FUNCTION)

2000-02-27  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in: don't link against REP_LIBS, it's not necessary
	and may cause problems when there's static libraries there

	* rep-gtk.h: put #ifndef's around GTK compatibility functions
	decls

2000-02-25  John Harper  <john@dcs.warwick.ac.uk>

	* rep-types.c, rep-gtk.c: use non-fixnum numeric types where
	appropriate

2000-02-23  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_event_loop): fix the idle handling

2000-02-13  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl: support `in', `out' and `inout' modes for
	composite types. Support the `extra-init-code' option. Add a
	new option `(provide FEATURE)' for generating rep dl stubs

	* gtk-1.2.defs: define enum GtkAnchorType (for canvas), and
	object GtkProgress

	* rep-types.c: new file, the rep conversions for basic C/GLIB
	types. This is built into it's own dl module `sgtk-types'

	* rep-gtk.c (sgtk_set_protect, sgtk_get_protect,
	sgtk_new_protect): functions for manipulating the gc protection
	shells

	* build-gtk.jl: new directive `include', like `import' but for
	the same module; new directive `define-type', the same as the
	function of the same name. Only add type info structures if
	they're non-null. New protection type `*result*' for callbacks,
	protect function for lifetime of result object. Implemented
	cvec-to-rep conversion, and `tvec' types. New argument option
	`protect-during', add gc protection for the lifetime of the
	function call. Output finish options _after_ converting result

	* rep-gnome.h, gnomelib.defs, gnomelib-support.c, gnomeui.defs,
	gnomeui-support.c, gnome-canvas.defs, gnome-canvas-support.c,
	gnome-canvas-glue.c: initial GNOME binding. Lots of this was
	grabbed from guile-gnome

	* rep-gtk.spec.in, configure.in, Makefile.in: updated for GNOME
	bindings

2000-02-08  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_event_loop): rewritten to use
	rep_max_sleep_for (), has the bonus of cleaning up the idle
	timeout

2000-02-06  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_event_loop): if threads are waiting, don't
	call gtk_main (), handle all events then yield

	* rep-gtk.c: invoke callbacks within dynamic roots

	* rep-gtk.h: define rep_INTERFACE if not already

2000-01-11  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_init_with_args): call gtk_set_locale ()
	before gtk_init ()

2000-01-09  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.8

1999-12-31  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (gtk_paned_set_position): new function
	(GtkCList): added fields `rows' and `cols'

1999-12-26  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_rep_to_flags): be more defensive in what we
	accept

1999-12-18  John Harper  <john@dcs.warwick.ac.uk>

	* rep-ui.glade, rep-ui: example of using libglade with rep--a
	simple lisp front end

	* rep-gtk.c (make_gtkobj): don't add the proxy to its list of
	protects, we'll mark it manually
	(gtkobj_marker_hook): mark the proxy when it's referenced; mark
	its protects _always_ (since they're added to the globally
	protected data if the proxy is freed)

	* rep-gtk.c (sgtk_proxy_object): remove the prevp field which I
	had erroneously copied from the 0.17 diffs (I rejected it the
	first time for a reason)

1999-12-17  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: merged diffs from guile-gtk 0.16->0.17; most
	notably this maintains protection over data associated with
	gc'd proxies. Also adds support for GdkRectangle types

	* build-gtk.jl, libglade-support.c: c-type of `full-callback'
	is now `sgtk_protshell*' not `repv'

	* Makefile.in: add "rep_requires='gtk'" to the libglade .la
	file to cause gtk to automagically get loaded first

	* rep-gtk.c, libglade-support.c: don't use rep_dl_feature
	anymore, it breaks when any libraries are opened RTLD_GLOBAL

1999-12-16  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.spec.in: added new package, rep-gtk-libglade

	* libglade-support.c (sgtk_glade_xml_new_from_string): new
	function, calls glade_xml_new_from_memory
	* libglade.defs (glade-xml-new-from-string): added

	* libglade-support.c (rep_dl_init): look for
	REP_GTK_DONT_INITIALIZE environment setting

	* configure.in: added --with[out]-libglade options

	* build-gtk.jl: use `const char *' for static_string types, not
	just `char *'

	* libglade.defs: API definition for libglade (constructs widget
	trees from Glade-created XML files)

	* libglade-support.c: signal connection code, and dl stubs

	* configure.in, Makefile.in: recognize and build libglade
	wrapper when available

1999-12-15  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-support.c (gdk_event_visibility_state): removed //
	comment (pointed out by Daniel Burrows
	<Daniel_Burrows@brown.edu>)

1999-12-06  John Harper  <john@dcs.warwick.ac.uk>

	* Makefile.in: include LDFLAGS when linking (from Ralf Fassel
	<ralf@akutech.de>)

1999-12-05  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.7

	* gtk-compat.c (gtk_widget_draw_interp): new function, calls
	gtk_widget_draw () with a null second argument

	* gtk-1.2.defs (gtk_widget_draw_interp, gtk_preview_put,
	gtk_preview_draw_row): defined these functions

1999-12-02  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c, gtk-1.2.defs, gdk-1.2.defs: i18n changes from
	Yukihiro Nakai <nakai@internetsolutions.co.jp>

1999-11-30  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl: make separate glue for each set of definitions

	* rep-gtk.c (rep_dl_init): just call sgtk_init_gtk_gtk_glue ()
	instead of initialising everything manually

	* rep-gtk.c (sgtk_init_with_args): not running stand-a-lone if
	rep_recurse_depth >= 0, not < 0 (why did this work before?)

1999-11-28  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.6

1999-11-25  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl: updated for single namespace etc

1999-11-17  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_init_with_args): if REP_GTK_DONT_INITIALIZE
	is defined non-zero in the environment, then don't call
	gtk_init (), this helps when compiling scripts

1999-11-10  John Harper  <john@dcs.warwick.ac.uk>

	* configure.in: require rep 0.8+ (lexical scope), bump rep-gtk
	version to 0.6

	* build-gtk.jl (output-field-accessors): fixed for lexical
	scoping

1999-10-29  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (gtk_widget_lock_accelerators,
	gtk_widget_unlock_accelerators,
	gtk_widget_accelerators_locked): new function definitions

1999-10-24  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.5

1999-10-22  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-compat.c, gtk-1.2.defs (gtk_menu_popup_interp): added an
	extra (optional) argument, a cons cell defining the position at
	which to show the menu

1999-10-20  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: accept long integers for all but character types,
	create long integers when values are too large

1999-10-03  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.4.2

1999-10-01  John Harper  <john@dcs.warwick.ac.uk>

	* config.sub, config.guess: updated from libtool 1.3.3

1999-09-18  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.4.1

	* Makefile.in: added $(installdir) to help rpm builds

1999-09-12  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.4

1999-09-08  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs: added the GtkPlug and GtkSocket widgets
	* gdk-1.2.defs, gtk-support.c: added a made-up gdk_window_xid
	function

1999-08-31  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.3

1999-08-29  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (GtkCheckMenuItem): changed type of `active'
	field from uint to bool

1999-08-26  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (GtkCheckMenuItem): define the `active' field

1999-08-16  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.2

1999-08-15  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (gtk_clist_moveto): the row_align and
	column_align arguments now default to 0.5

1999-08-10  John Harper  <john@dcs.warwick.ac.uk>

	* gtk-1.2.defs (gtk_label_set_justify,
	gtk_label_set_line_wrap): define these functions
	(gtk_signal_connect, gtk_box_pack_start, gtk_box_pack_start):
	remove optional boolean parameters, since there's no way of
	telling a non-specified option from a specified-as-nil option

1999-08-03  John Harper  <john@dcs.warwick.ac.uk>

	* version 0.1

1999-06-06  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_init_substrate): use rep_map_inputs to add
	all existing registered input fds to the GTK scheme of things
	(rep_dl_kill): new function, try to unhook as many of the GTK
	functions as possible

1999-06-04  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl (output-function): when splitting arguments from
	a list, don't signal errors if some don't exist; just set them
	to nil

1999-05-29  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: only call gtk_main_quit () if gtk_main_level ()
	returns non-zero

1999-05-19  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: should have solved the SIGCHLD problem under Linux
	now (turned out to be a bug in gdm)

1999-04-28  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl: some fixes, support null helper_valid functions

	* README.guile-gtk, rep-gtk.h, rep-gtk.c, gtk-support.c,
	gdk-1.2.defs: synchronised with release 0.16 of guile-gtk

	* Makefile.in: compile build-gtk before executing it

1999-04-18  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (reset_idle_timeout): always reset
	idle_timeout_counter to zero, not just when there's no timeout
	already set

1999-03-28  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (idle_timeout_callback): ensure that the first time
	rep_on_idle is called each idle period, it's passed zero
	(sgtk_callback_postfix, idle_timeout_callback): call
	rep_proc_periodically to ensure no subprocess deaths are
	overlooked

1999-03-23  John Harper  <john@dcs.warwick.ac.uk>

	* build-gtk.jl (output-type-predicate): outputs type
	predicates, TYPE-p for each boxed or object type

	* rep-gtk.c (sgtk_callback_marshal): pass the object invoking
	the callback as the first argument to the function
	(Fgtk_callback_trampoline): now a Lisp DEFUN
	(sgtk_register_input_fd, sgtk_deregister_input_fd): hooks for
	librep input handling
	(sgtk_callback_postfix): should be called after any callback
	that might invoke lisp code, handles catch/throw and redisplay
	(sgtk_event_loop): handles the librep one-second idle timeouts,
	and calls the rep_proc_periodically function to reap
	subprocesses
	(sgtk_sigchld_callback): new function, calls gtk_main_quit so
	that the sgtk_event_loop is entered and the process can be
	collected
	(Fgtk_standalone_p): now a Lisp DEFUN
	(sgtk_init_with_args): set standalone to false if gtk_init was
	called before we tried to
	(rep_dl_init): set rep_dl_feature to `gtk'

	* build-gtk.jl: outputs field accessor functions, for TYPE and
	FIELD, these will be called `TYPE-FIELD', and `TYPE-FIELD-set'
	(if the field is settable), for example `gtk-widget-style'

	* gtk-1.2.defs: added the `parent' field to GtkWidget

	* configure.in: add some warning options if using GNU CC

	* examples/hello.jl, examples/clist.jl: cleaned up

1999-03-19  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c: hijack the rep event loop and input registering
	functions

	* rep-gtk.c (rep_dl_init): return t

1999-03-18  John Harper  <john@dcs.warwick.ac.uk>

	* rep-gtk.c (sgtk_object_proxy): removed the `prevp' field,
	just use a next field, then regenerate the entire list when
	sweeping