-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7336 lines (5380 loc) · 287 KB
/
ChangeLog
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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2006-01-07 Duncan Coutts <[email protected]>
* svgcairo/Graphics/Rendering/Cairo/SVG.chs: new libsvg-cairo binding.
* svgcairo/svgcairo.pkg.in, svgcairo/svgcairo.package.conf.in,
svgcairo/svgcairo.cabal.in: new package files
* configure.ac, Makefile.am: add build support for new svgcairo
package.
2006-01-08 Axel Simon <[email protected]>
* soegtk/Graphics/SOE/Gtk.hs.pp: Fixed a qualified name which made
ghc 6.2.2 fall over (when it shouldn't).
2006-01-07 Duncan Coutts <[email protected]>
* configure.ac: bump version to 0.9.10.2 to help track recent
changes.
2006-01-06 Duncan Coutts <[email protected]>
* cairo/Graphics/Rendering/Cairo/Matrix.chs: fix bugs reported by
"MenTaLguY" using a slight variation on the patch he supplied. Also
implement scalarMultiply using the 'pointwise' function.
2005-12-12 Duncan Coutts <[email protected]>
* cairo/Graphics/Rendering/Cairo.hs: fix some doc references.
2005-12-9 Duncan Coutts <[email protected]>
* demo/fastdraw/FastDraw.hs: intersect the exposed region with the
region covered by the pixbuf before drawing the rectangles.
2005-12-9 Axel Simon <[email protected]>
* demo/fastdraw/FastDraw.hs: Fixed two parameters.
* glib/System/Glib/UTFString.hs.pp: Renamed from
glib/System/Glib/UTFString.hs since it needs to be run through CPP
to appease haddock.
2005-12-8 Duncan Coutts <[email protected]>
* glib/System/Glib/FFI.hs.pp: We should almost certainly not be using
the standard free function anywhere in the glib or gtk bindings, so we
do not re-export it from this module. It is not gueranteed by the
Haskell FFI spec that free calls the C free() function. It is also not
guaranteed that g_free() simply calls the stanard C free() function.
* glib/System/Glib/UTFString.hs: call g_free() rather than Haskell
free for freeing glib strings (which of course were allocated with
g_new()).
* gtk/Graphics/UI/Gtk/Gdk/Pixbuf.chs.pp: use withUTFStringArray and
withUTFStringArray0 rather than ad-hoc implementations.
* gtk/Graphics/UI/Gtk/General/StockItems.hsc: use readUTFString rather
than peekUTFString + g_free().
* glib/System/Glib/GList.chs: add withGSList function.
* sourceview/Graphics/UI/Gtk/SourceView/SourceTag.chs: use withGSList
and withUTFStrings rather than the more complex exising solution.
* gtk/Graphics/UI/Gtk/TreeList/TreePath.chs.pp: export newTreePath for
use in other modules but not for top-level export.
* gtk/Graphics/UI/Gtk/TreeList/CustomStore.chs,
gtk/Graphics/UI/Gtk/TreeList/Gtk2HsStore.c,
gtk/Graphics/UI/Gtk/TreeList/Gtk2HsStore.h: add low-level parts of an
implementation of custom GtkTreeModels. This includes a GObject
written in C that implements the GtkTreeModel interface and delegates
the implementation via a Haskell interface. This does not yet include
any actual implementations of the Haskell CustomStore interface.
* Makefile.am: build the new files.
2005-12-7 Axel Simon <[email protected]>
* glib/System/Glib/Signals.chs.pp, gtk/Graphics/UI/Gtk.hs: Add new
signal functions and export some of them.
* tools/callbackGen/gtkmarshal.list,
gtk/Graphics/UI/Gtk/Entry/Editable.chs.pp: Add text_insert signal
and the ability to stop the signal.
* gtk/Graphics/UI/Gtk/Multiline/TextBuffer.chs.pp: Renamed
onInsertText to onBufferInsertText. This breaks the API but
changing this function seems more natural than the function in
Editable.
* gtk/Graphics/UI/Gtk/Pango/Types.chs.pp: Removed unnecessary
function.
* gtk/Graphics/UI/Gtk/TreeList/ListStore.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeStore.chs.pp: Fixed
documentation.
2005-11-26 Axel Simon <[email protected]>
* glib/System/Glib/GObject.chs.pp: Add a new constructGObject
function that does not increment the reference count of the
GObject.
* gconf/System/Gnome/GConf/GConfClient.chs
glade/Graphics/UI/Gtk/Glade.chs
gtk/Graphics/UI/Gtk/Cairo.chs.pp
gtk/Graphics/UI/Gtk/Abstract/Widget.chs.pp
gtk/Graphics/UI/Gtk/ActionMenuToolbar/Action.chs.pp
gtk/Graphics/UI/Gtk/ActionMenuToolbar/ActionGroup.chs.pp
gtk/Graphics/UI/Gtk/ActionMenuToolbar/RadioAction.chs.pp
gtk/Graphics/UI/Gtk/ActionMenuToolbar/ToggleAction.chs.pp
gtk/Graphics/UI/Gtk/ActionMenuToolbar/UIManager.chs.pp
gtk/Graphics/UI/Gtk/Display/Image.chs.pp
gtk/Graphics/UI/Gtk/Display/Label.chs.pp
gtk/Graphics/UI/Gtk/Entry/Editable.chs.pp
gtk/Graphics/UI/Gtk/Entry/EntryCompletion.chs.pp
gtk/Graphics/UI/Gtk/Gdk/Drawable.chs.pp
gtk/Graphics/UI/Gtk/Gdk/GC.chs
gtk/Graphics/UI/Gtk/Gdk/Pixbuf.chs.pp
gtk/Graphics/UI/Gtk/Gdk/Pixmap.chs.pp
gtk/Graphics/UI/Gtk/General/IconFactory.chs.pp
gtk/Graphics/UI/Gtk/General/Style.chs
gtk/Graphics/UI/Gtk/MenuComboToolbar/ComboBoxEntry.chs.pp
gtk/Graphics/UI/Gtk/Misc/SizeGroup.chs.pp
gtk/Graphics/UI/Gtk/Multiline/TextBuffer.chs.pp
gtk/Graphics/UI/Gtk/Multiline/TextTag.chs.pp
gtk/Graphics/UI/Gtk/Multiline/TextTagTable.chs
gtk/Graphics/UI/Gtk/Multiline/TextView.chs.pp
gtk/Graphics/UI/Gtk/Pango/Description.chs
gtk/Graphics/UI/Gtk/Pango/GlyphStorage.chs.pp
gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp
gtk/Graphics/UI/Gtk/TreeList/ListStore.chs.pp
gtk/Graphics/UI/Gtk/TreeList/TreeModelSort.chs.pp
gtk/Graphics/UI/Gtk/TreeList/TreeStore.chs.pp
gtk/Graphics/UI/Gtk/Windows/Window.chs.pp
gtk/Graphics/UI/Gtk/Windows/WindowGroup.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceBuffer.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceIter.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceLanguagesManager.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceStyleScheme.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceTag.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceTagTable.chs
sourceview/Graphics/UI/Gtk/SourceView/SourceView.chs: Replaced
occurrences of makeNewGObject with constructNewGObject if the
function does pass the reference count to the caller.
2005-11-22 Duncan Coutts <[email protected]>
* soegtk/Graphics/SOE/Gtk.hs.pp: add an implementation of the SOE API.
* soegtk/soegtk.cabal.in, soegtk/soegtk.pkg.in,
soegtk/soegtk.package.conf.in: add package files.
* configure.ac, Makefile.am: add support for building the new package.
2005-11-19 Axel Simon <[email protected]>
* gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuItem.chs: Improve docs.
* gtk/Graphics/UI/Gtk/Pango/Types.chs.pp: Added a show instance to
PangoRectangle.
2005-11-19 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/TreeList/TreeModel.chs.pp: remove the
treeModelRefNode and treeModelUnrefNode functions since they would
only be used by implementations of views and we do not expect many of
these to be implemented in Haskell.
2005-11-18 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Gdk/Pixbuf.chs.pp: add pixbufNewFromFileAtSize
and pixbufNewFromFileAtScale. Also rearange export list slightly.
These functions are particularly useful for laoding svg files at
different zoom levels.
* gtk/Graphics/UI/Gtk/Entry/VScale.chs: correct mistake in doc
cross-reference.
* gtk/Graphics/UI/Gtk/Gdk/Drawable.chs.pp: remove reference to the
unbound object type 'Bitmap'.
* gtk/Graphics/UI/Gtk/General/Style.chs: remove discussion of unbound
'rc' functions.
* gtk/Graphics/UI/Gtk/Layout/Notebook.chs.pp: remove reference to
function which we bind as part of another function.
* gtk/Graphics/UI/Gtk/Layout/Table.chs: correct spelling mistake in
doc cross-reference.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/CheckMenuItem.chs.pp: haddock
cannot cope with an ' character directly after a type.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/Combo.chs.pp: change doc
cross-reference to it's most likely target.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuBar.chs.pp: remove
discuccion of an unbound and deprecated function.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuShell.chs.pp: remove doc
cross-reference to the unbound Gdk function 'keyboardGrab'.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/RadioToolButton.chs.pp: change
doc cross-reference to its intended target.
* gtk/Graphics/UI/Gtk/Pango/Enums.chs.pp: change the doc
cross-reference of a couple type names to their actual names.
* gtk/Graphics/UI/Gtk/Selectors/FileChooser.chs.pp: correct spelling
mistake in doc cross-reference.
* gtk/Graphics/UI/Gtk/Selectors/FileChooserWidget.chs.pp: import an
extra function so it's in scope for a doc cross-reference.
* gtk/Graphics/UI/Gtk/Selectors/FileFilter.chs.pp: remove reference to
unbound function.
* gtk/Graphics/UI/Gtk/Selectors/FontSelection.chs: remove reference to
an unbound and deprecated function.
* gtk/Graphics/UI/Gtk/Selectors/FontSelectionDialog.chs: remove
reference to an unbound and deprecated function.
* gtk/Graphics/UI/Gtk/TreeList/CellRenderer.hs: remove discussion of
unbound and semi-internal functions. Add newly bound class to the
class hierarchy doc section.
* gtk/Graphics/UI/Gtk/TreeList/CellRendererCombo.chs.pp: reference
cellRendererSet rather than gObjectSet.
* gtk/Graphics/UI/Gtk/TreeList/CellView.chs.pp: remove unhelpful
C-style return value documentation.
* gtk/Graphics/UI/Gtk/TreeList/TreeViewColumn.chs.pp: cross-reference
the plural correctly.
* gtk/Graphics/UI/Gtk/Abstract/Box.chs,
gtk/Graphics/UI/Gtk/Abstract/Paned.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/RadioAction.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/ToggleAction.chs.pp,
gtk/Graphics/UI/Gtk/Buttons/CheckButton.chs,
gtk/Graphics/UI/Gtk/Display/ProgressBar.chs.pp,
gtk/Graphics/UI/Gtk/Embedding/Plug.chs.pp,
gtk/Graphics/UI/Gtk/Embedding/Socket.chs.pp,
gtk/Graphics/UI/Gtk/Entry/EntryCompletion.chs.pp,
gtk/Graphics/UI/Gtk/Entry/HScale.chs,
gtk/Graphics/UI/Gtk/Layout/Expander.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ImageMenuItem.chs,
gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuToolButton.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/OptionMenu.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/SeparatorToolItem.chs.pp,
gtk/Graphics/UI/Gtk/Multiline/TextIter.chs.pp,
gtk/Graphics/UI/Gtk/Multiline/TextMark.chs,
gtk/Graphics/UI/Gtk/Scrolling/ScrolledWindow.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FontButton.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/CellRendererText.chs,
gtk/Graphics/UI/Gtk/TreeList/TreeIter.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeSelection.chs.pp,
gtk/Graphics/UI/Gtk/Windows/WindowGroup.chs: fix many haddock
warnings. These are mostly cross-references to things that are not in
scope. This can be fixed either by importing the appropriate modules
or fully qualifing the references. I have taken the latter approach to
avoid introducing too many unnecessary inter-module dependencies (in
particular cyclic dependencies).
2005-11-17 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Gdk/Pixbuf.chs.pp: use a pure FFI declaration
rather than using unsafePerformIO.
* gtk/Graphics/UI/Gtk/Gdk/Enums.chs: move the definition of a couple
enums to the only module where they are used. Also fixup a
documentation cross-reference.
* gtk/Graphics/UI/Gtk/Gdk/Region.chs.pp: move the enums into the
Region module.
* gtk/Graphics/UI/Gtk/General/Enums.chs.pp: remove the CurveType enum
which would have been used by the GammaCurve object had it ever been
bound.
* gtk/Graphics/UI/Gtk/Misc/DrawingArea.chs: remove doc reference to
Curve object.
* tools/hierarchyGen/hierarchy.list: remove the GtkCurve because it
is not bound.
* gtk/Graphics/UI/Gtk/Layout/VBox.chs: remove reference to the
GammaCurve object.
* gtk/Graphics/UI/Gtk/TreeList/TreeModel.chs.pp: bind the
treeModelRefNode and treeModelUnrefNode functions.
* mogul/Graphics/UI/Gtk/Mogul/GetWidget.hs.pp: remove the getCurve
function since we've removed the Curve object.
2005-11-16 Duncan Coutts <[email protected]>
* tools/hierarchyGen/hierarchy.list: remove GtkGammaCurve because it
is not bound.
* mogul/Graphics/UI/Gtk/Mogul/GetWidget.hs.pp: remove lookup for
GammaCurve.
* glib/System/Glib/Attributes.hs, glib/System/Glib/GError.chs.pp,
glib/System/Glib/GValue.chs, glib/System/Glib/MainLoop.chs.pp,
glib/System/Glib/StoreValue.hsc: minor haddock markup and
cross-reference fixes.
* gconf/System/Gnome/GConf/GConfClient.chs: minor haddock markup and
cross-reference fixes.
* gtkglext/Graphics/UI/Gtk/OpenGL/Drawable.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/Context.chs: documentations fixes.
2005-11-13 Axel Simon <[email protected]>
* gtk/Graphics/UI/Gtk/Cairo.chs.pp: Flip arguments of
cairoFontMapSetResolution to make it consistent.
* gtk/Graphics/UI/Gtk/Misc/Adjustment.chs.pp: Added
signal-emitting functions that seem to be necessary to force the
Adjustment to update.
* demo/cairo/CairoGhci.hs: Added this file so people can play with
Ciaro from within ghci.
2005-11-12 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/TreeList/CellRendererPixbuf.chs: implement
cellPixbuf attribute. Not properly tested yet.
* gtk/Graphics/UI/Gtk/TreeList/CellRendererCombo.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/CellRendererProgress.chs.pp: add new cell
renderers.
* tools/hierarchyGen/hierarchy.list: add GtkCellRendererProgress and
GtkCellRendererCombo classes.
* gtk/Graphics/UI/Gtk.hs: export the two new modules.
* Makefile.am: add the new files to the sources list.
2005-11-12 Axel Simon <[email protected]>
* Makefile.am: Corrected missing var definition that resulted in
generating insufficient dependencies for the mogul package.
* cairo/Graphics/Rendering/Cairo.hs: Remove imports that are
already available through the type module.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/Menu.chs.pp: Make the
pop-up menu function easier to use. Add more documentation.
* gtk/Graphics/UI/Gtk/Multiline/TextBuffer.chs.pp: Make the
constructor more generic, so it also takes a SourceTagTable for
the sourceview widget.
* gtk/Graphics/UI/Gtk/Multiline/TextTag.chs.pp,
tools/callbackGen/gtkmarshal.list: Add the onTextTagEvent. Don't
know if this is really useful.
* gtk/Graphics/UI/Gtk/Multiline/TextView.chs.pp: I got very
confused as to why the scroll function doesn't work as expected.
Expand comment to reflect my misery.
* gtk/Graphics/UI/Gtk/TreeList/TreeView.chs.pp: Correct bad
English in comment.
2005-11-11 Duncan Coutts <[email protected]>
* demo/cairo/Drawing2.hs, demo/cairo/Makefile: new cairo demo thanks
to Johan Bockgård.
* glib/System/Glib/FFI.hs, glib/System/Glib/FFI.hs.pp,
mogul/Graphics/UI/Gtk/Mogul.hs, mogul/Graphics/UI/Gtk/Mogul.hs.pp,
mogul/Graphics/UI/Gtk/Mogul/GetWidget.hs,
mogul/Graphics/UI/Gtk/Mogul/GetWidget.hs.pp,
mogul/Graphics/UI/Gtk/Mogul/NewWidget.hs,
mogul/Graphics/UI/Gtk/Mogul/NewWidget.hs.pp: rename to .pp and remove
{-# OPTIONS -cpp #-} pragma and remove #include.
* gtk/Graphics/UI/Gtk/Embedding/Plug.chs,
gtk/Graphics/UI/Gtk/Embedding/Plug.chs.pp,
gtk/Graphics/UI/Gtk/Embedding/Socket.chs,
gtk/Graphics/UI/Gtk/Embedding/Socket.chs.pp: rename to .pp and
conditionally build the body of the modules if we are not building on
windows or we are using Gtk+ 2.8.
* gtk/Graphics/UI/Gtk/Embedding/Embedding.hsc: conditionally build the
body of the module if we are not building on windows or we are using
Gtk+ 2.8.
* gtk/Graphics/UI/Gtk.hs: remove all conditional compilation. The
embedding modules are now re-exported unconditionally (though they may
export nothing).
* mk/common.mk: add rule for preprocessing .hs.pp to .hs
* Makefile.am: Rename various modules as above. Add support for .hs.pp
files in the SOURCES lists. Move the embedding modules into
libHSgtk_a_SOURCES rather than including them in the list
conditionally. Remove the html_HSFILES_PREPROC variable and the .hs to
.hs.uncpp rule.
* configure.ac: build GtkPlug and GtkSocket on Win32 when using Gtk+
2.8 or later.
* demo/opengl/RotatingCube.hs: minor changes to the OpenGL demo.
* TODO: add item about cairo backends.
2005-11-10 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/General/StockItems.hsc: fix inverted Gtk version
check for stockUnindent.
2005-11-09 Duncan Coutts <[email protected]>
* gtkglext/Graphics/UI/Gtk/OpenGL.hs,
gtkglext/Graphics/UI/Gtk/OpenGL/Config.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/General.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/Context.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/Pixmap.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/Drawable.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/DrawingArea.chs,
gtkglext/Graphics/UI/Gtk/OpenGL/Window.chs: new gtkglext package, the
Gtk+ OpenGL extension.
* demo/opengl/RotatingCube.hs, demo/opengl/Makefile: add OpenGL demo.
* gtkglext/gtkglext.cabal.in, gtkglext/gtkglext.pkg.in,
gtkglext/gtkglext.package.conf.in: new build files for the gtkglext
package.
* tools/hierarchyGen/hierarchy.list: add extra GL classes.
* configure.ac, Makefile.am: add build system support for the new
gtkglext package.
* gtkglext/Graphics/UI/Gtk/OpenGL/Types.chs: remove file that was
accidentally added to cvs.
* sourceview/sourceview.h, sourceview/sourceview.pkg.in,
sourceview/sourceview.package.conf.in: remove unnecessary include.
* docs/tutorial/Makefile: fix the base-url once and for all.
* configure.ac: bump version to 0.9.10.1 to help track recent changes.
* tools/apiGen/Makefile: add the gtkglext package to the apiGen
system.
* tools/apiGen/Marshal.hs: use refGObject function for non-constructor
cases of marshaling GObject types.
2005-11-08 Duncan Coutts <[email protected]>
* sourceview/sourceview.pkg.in: probable fix for the problem of
building the sourceview demo using -fvia-C with ghc 6.2 or earlier.
* Makefile.am: make it easier to use extra flags when building haddock
docs. Also add a "dist-docs" target for building a docs tarball.
2005-11-07 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/General/Structs.hsc: deal with the case that
widget->window might be null when the widget is not realized. Give an
error message rather than segfaulting.
* gtk/Graphics/UI/Gtk/General/Structs.hsc: do not fill in the 3 Pixmap
GC attributes as null when they are Nothing as this causes an X11
'BadPixmap' error.
* TODO: remove some completed and old todo items.
* configure.ac: add --enable-split-objs option (off by default).
Substitute into mk/link-splitobjs.sh script and make it executable.
* mk/common.mk: add a slightly different .hs -> .o build rule when
using -split-objs
* Makefile.am: add -split-objs to the HCFLAGS of the libs and set
mk/link-splitobjs.sh as the linker command when we configure using
--enable-split-objs.
* mk/link-splitobjs.sh.in: linker script to use when in
--enable-split-objs mode.
* configure.ac: updates suggested by the autoupdate script which
checks for deprecated autoconf/automake macros. Also remove variables
which used to be used by c2hs but are no longer used.
* Makefile.am: add cairo/COPYRIGHT to EXTRA_DIST
* cairo/Graphics/Rendering/Cairo/Internal/Surfaces/PNG.chs: correct
location of COPYRIGHT file.
* cairo/Graphics/Rendering/Cairo/Matrix.chs: add definitions of the
other Num class members for the Matrix data type. Also, make the
Matrix strict in its elements.
2005-11-06 Axel Simon <[email protected]>
* configure.ac, gtk/gtk.pkg: Make compile with ghc 6.2 (no cabal)
when Cairo is installed. The package file was actually broken.
* gtk/Graphics/UI/Gtk/Display/Statusbar.chs: Export MessageId and
ContextId.
* gtk/Graphics/UI/Gtk/General/StockItems.hsc: Add all available
stock ids but map them to missing image if Gtk is not new enough.
* gtk/Graphics/UI/Gtk/General/Structs.hsc: Make ResponseId instance
of Eq.
* gtk/Graphics/UI/Gtk/Pango/Font.chs.pp: Docu wibble.
2005-11-06 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Pango/Context.chs.pp,
gtk/Graphics/UI/Gtk/Pango/Rendering.chs.pp: remove redundent imports.
* gtk/Graphics/UI/Gtk/General/General.chs: use withArrayLen rather
than withArray and length.
2005-11-01 Axel Simon <[email protected]>
* cairo/Graphics/Rendering/Cairo/Types.chs: Force descriptions in
comments on separate lines.
2005-10-31 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/MenuComboToolbar/ToolButton.chs.pp,
gtk/Graphics/UI/Gtk/Windows/Window.chs.pp: fix a couple FIXMEs,
updating the documentation and implementation.
* gtk/Graphics/UI/Gtk/TreeList/CellView.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/IconView.chs.pp: fix a FIXME. These
involve a couple minor type changes but they are not a commonly used
functions I think.
* cairo/Graphics/Rendering/Cairo/Types.chs: extend the documentation
in a few places.
* configure.ac: Bump version number to 0.9.10.
2005-10-30 Axel Simon <[email protected]>
* Makefile.am, cairo/Graphics/Rendering/Cairo.hs,
cairo/Graphics/Rendering/Cairo/Internal.hs,
cairo/Graphics/Rendering/Cairo/Types.chs: Create at least some
documentation for the Cairo types. Hide the Types module instead
of excluding it from documentation. We cannot include Internal.hs
since haddock cannot parse the deriving clause.
* gtk/Graphics/UI/Gtk/Cairo.chs.pp: Documentation fixes.
* gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp: Export a function to
create a layout and set its text at the same time. This function
is called layoutText instead of layoutNew since the latter clashed
with the Layout widget.
2005-10-30 Duncan Coutts <[email protected]>
* glib/System/Glib/Signals.chs.pp: prune rather than hide this module
so that the things we do want documented are documented here and not
in the top level gtk module.
* gtk/Graphics/UI/Gtk/Abstract/ContainerChildProperties.chs: hide this
module from haddock. It's purely an implementation detail.
* gtk/Graphics/UI/Gtk/Abstract/Widget.chs.pp: fix some incorrect
haddock markup and fully qualify the Button data constructor that was
getting linked to the Button type instead which is totally different.
* Makefile.am: adjust the html_HSFILES_HIDDEN to reflect the above
changes as well as tidying up some duplication.
* Makefile.am: use $(GHCPKG_BUILD_GHCI_LIB) rather than literal
--auto-ghci-libs for platforms where the latter doesn't work (like
Solaris when not using GNU ld)
* Makefile.am: add cairo/Graphics/Rendering/Cairo/Types.hs to the
haddock hidden list so that make doesn't keep re-running haddock in an
attempt to generate what would be the corresponding html output file.
2005-10-29 Duncan Coutts <[email protected]>
* Makefile.am: the profile viewer demo actually needs Gtk+ 2.6.
* configure.ac: put the mozilla lib dir into the gtk2hs-config.h file.
* mozembed/Graphics/UI/Gtk/MozEmbed.chs,
mozembed/Graphics/UI/Gtk/MozEmbed.chs.pp: rename to .pp and export a
new string value mozEmbedDefaultCompPath which is the mozilla lib dir.
This is the default value used to initialise the mozilla embeding
component.
* Makefile.am: rename MozEmbed.chs to MozEmbed.chs.pp
* demo/mozembed/TestEmbedMoz.hs: update the demo to use the
mozEmbedDefaultCompPath. Hopefully this will make it work on BSD too.
2005-10-26 Duncan Coutts <[email protected]>
* gconf/System/Gnome/GConf/GConfClient.chs: call g_type_init before
creating any GConfClient objects.
* gtk/Graphics/UI/Gtk/Gdk/Pixmap.chs,
gtk/Graphics/UI/Gtk/Gdk/Pixmap.chs.pp: rename to .pp. Make pixmapNew
work even with the broken header files that come with Gtk+ 2.1.x that
Sun shipped for Solaris 9.
* Makefile.am: rename Pixmap.chs to Pixmap.chs.pp
* gtk/Graphics/UI/Gtk/Gdk/Pixmap.chs.pp: discovered that it was not Sun's
broken header files but just a generalisation in the type from Gtk+
2.0 to 2.2. Make it work with both versions.
* gtk/Graphics/UI/Gtk/Pango/GlyphStorage.chs.pp,
gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp,
gtk/Graphics/UI/Gtk/Pango/Types.chs.pp: minor fixes for ghc 5.04.
* Makefile.am: add TreePath.hs and TreeRowReference.hs to the
html_HSFILES_HIDDEN list.
* APICHANGES: note the renaming of the Event record field names.
* configure.ac: bump version to 0.9.9.8 for the second 0.9.10 release
candidate.
2005-10-25 Axel Simon <[email protected]>
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: Character distances
are only available in Pango 1.6 and higher.
* gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp: getLayoutFontDescription
is not available in Pango 1.6 and lower.
* gtk/Graphics/UI/Gtk/Pango/Types.chs.pp: Remove the PangoMatrix
type as we don't use it ever.
2005-10-25 Duncan Coutts <[email protected]>
* Makefile.am: add demo/actionMenu to the list of demos to be built.
* configure.ac: specify the cairo version dependency exactly to
prevent problems with ghc-pkg when upgrading from older gtk2hs
versions. Remove redundant AC_DEFINE for the cairo package.
* acinclude.m4: do the AC_DEFINE for each package properly.
* mk/chsDepend.in: use * rather than ? in the sed RE, since the BSD/OSX
version of sed does not accept the latter.
* gtk/Graphics/UI/Gtk/Pango/Types.chs.pp,
gtk/Graphics/UI/Gtk/Pango/GlyphStorage.chs.pp,
gtk/Graphics/UI/Gtk/Pango/Rendering.chs.pp: PangoGlyphItem is only
available in Pango 1.2 and later.
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: the fall back font
attribute is only available in Pango 1.4 and later.
* gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp: the 'auto_dir' functions
are only available in Pango 1.4 and later. The layoutIterGetItem uses
the PangoGlyphItem type which is only available in Pango 1.2 and
later. Also export layoutIterGetItem (I assume it is supposed to be
exported as it is not used internally).
* gtk/Graphics/UI/Gtk/General/Structs.hsc: Some of the values in the
PangoDirection enumeration are only available in Pango 1.4 and later.
* gtk/Graphics/UI/Gtk/Pango/Font.chs,
gtk/Graphics/UI/Gtk/Pango/Font.chs.pp: rename to .pp version so we can
include things conditionally on the pango version. The
pangoFontFamilyIsMonospace and pangoFontFaceListSizes functions are
only in Pango 1.4 and later.
* Makefile.am: rename Font.chs -> Font.chs.pp
* glib/System/Glib/FFI.hs: make this compile with ghc 5.04.3
2005-10-24 Axel Simon <[email protected]>
* gtk/Graphics/UI/Gtk/TreeList/TreePath.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeRowReference.chs.pp: Hide modules
in documentation.
* gtk/Graphics/UI/Gtk/Pango/Markup.hs: Docu fix.
2005-10-24 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Pango/Rendering.chs.pp,
gtk/Graphics/UI/Gtk/Cairo.chs.pp: minor documentation changes.
* gtk/Graphics/UI/Gtk.hs: export module Graphics.UI.Gtk.Pango.Context
* gtk/Graphics/UI/Gtk/Gdk/Drawable.chs.pp: export toDrawable
* gtk/Graphics/UI/Gtk/General/Structs.hsc: make gcGetValues work
properly. Previously the forground and backround values were just
random. This is because gdk_gc_get_values only fills in the pixel
value for the colors fields. We now get the rgb values using
gdk_colormap_query_color.
* gtk/Graphics/UI/Gtk/General/IconFactory.chs.pp: minor doc fixes and
export toIconFactory.
* configure.ac: bump version to 0.9.9.7 for the frist 0.9.10 release
candidate.
2005-10-22 Duncan Coutts <[email protected]>
* mozembed/Graphics/UI/Gtk/MozEmbed.chs: add documentation.
* demo/mozembed/TestEmbedMoz.hs: fix demo code to not override the
components path (as suggested in the new documentation).
* configure.ac: find the MOZEMBED_LIBDIR. Change the hack we use for
adding the appropriate runtime LD path to the MOZEMBED_LIBS flags;
now it adds the -Wl,-rpath,${MOZEMBED_LIBDIR} if it's not there
already.
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: fix a warning.
2005-10-22 Axel Simon <[email protected]>
* gtk/Graphics/UI/Gtk/Pango/GlyphStorage.chs.pp: Docu fix.
2005-10-21 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: for some reason a
couple pango functions are not available on windows in pango 1.8.x,
only pango 1.10.x. So complile them conditional on that pango version
on win32.
* Makefile.am: add new demos to EXTRA_DIST.
* configure.ac: require autoconf 2.59
* INSTALL: note the autoconf and automake version requirements. (patch
from dons via darcs)
* tools/c2hs/base/general/Binary.hs: #include the new ghconfig.h file
when using ghc 6.4 or later. Get the value of SIZEOF_VOID_P from ghc's
config.h or ghcconfig.h file.
* gtk/Graphics/UI/Gtk/Gdk/Events.hsc: add Event constructor and use
new marshAny for the delete, destroy, map and unmap events.
* acinclude.m4: add whether each package is going built in the
gtk2hs-config.h file.
* Makefile.am: install gtk2hs-config.h in $(pkglibdir)/include/
* glib/glib.package.conf.in: add the $(pkglibdir)/include/ directory
to the include search path so modules which use any gtk2hs package can
#include <gtk2hs-config.h> to find out what packages and versions are
available.
* configure.ac: no need for expensive AC_CHECK_SIZEOF(void *, 4) any
more since we get the SIZEOF_VOID_P from ghc's config header file.
Remove a redundent assignment. Correct the description of the pango
version numbers in the gtk2hs-config.h file.
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: I misunderstod cpp
semantics first time round, so fix this again.
* gtk/Graphics/UI/Gtk/Cairo.chs.pp: use qualified imports properly.
* mk/chsDepend.in: make the script grock qualified c2hs import hooks.
* TODO: add entry: export all the enums used in the Event, ie Button &
Click
2005-10-20 Axel Simon <[email protected]>
* Makefile.am: Added a new file Attributes.chs.pp since they are
needed in two files in Pango. Added this and Pango.Types to the
list of no-html files.
* gtk/Graphics/UI/Gtk/Pango/Attributes.chs.pp: New file used by
Rendering and Layout.
* gtk/Graphics/UI/Gtk/Pango/Layout.chs.pp: Completed except for
two functions that are quite labor intensive.
* gtk/Graphics/UI/Gtk/Pango/Rendering.chs.pp: Remove the Attribute
type.
* gtk/Graphics/UI/Gtk/Pango/Font.chs: Docu fixes.
2005-10-19 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Gdk/Events.hsc: fix bug with delete events not
being marshaled. Added a better error message in case we get any more
of these in future.
* gtk/Graphics/UI/Gtk/Abstract/Bin.chs,
gtk/Graphics/UI/Gtk/Abstract/Box.chs,
gtk/Graphics/UI/Gtk/Abstract/ButtonBox.chs.pp,
gtk/Graphics/UI/Gtk/Abstract/Container.chs,
gtk/Graphics/UI/Gtk/Abstract/Misc.chs,
gtk/Graphics/UI/Gtk/Abstract/Object.chs.pp,
gtk/Graphics/UI/Gtk/Abstract/Paned.chs.pp,
gtk/Graphics/UI/Gtk/Abstract/Range.chs,
gtk/Graphics/UI/Gtk/Abstract/Scale.chs,
gtk/Graphics/UI/Gtk/Abstract/Scrollbar.hs,
gtk/Graphics/UI/Gtk/Abstract/Separator.hs,
gtk/Graphics/UI/Gtk/Abstract/Widget.chs.pp: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/ActionMenuToolbar/Action.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/ActionGroup.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/RadioAction.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/ToggleAction.chs.pp,
gtk/Graphics/UI/Gtk/ActionMenuToolbar/UIManager.chs.pp: export
to{Object} functions.
* gtk/Graphics/UI/Gtk/Buttons/Button.chs.pp,
gtk/Graphics/UI/Gtk/Buttons/CheckButton.chs,
gtk/Graphics/UI/Gtk/Buttons/RadioButton.chs.pp,
gtk/Graphics/UI/Gtk/Buttons/ToggleButton.chs: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Display/AccelLabel.chs,
gtk/Graphics/UI/Gtk/Display/Image.chs.pp,
gtk/Graphics/UI/Gtk/Display/Label.chs.pp,
gtk/Graphics/UI/Gtk/Display/ProgressBar.chs.pp,
gtk/Graphics/UI/Gtk/Display/Statusbar.chs: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Embedding/Plug.chs,
gtk/Graphics/UI/Gtk/Embedding/Socket.chs: export to{Object} functions.
* gtk/Graphics/UI/Gtk/Entry/Editable.chs.pp,
gtk/Graphics/UI/Gtk/Entry/Entry.chs.pp,
gtk/Graphics/UI/Gtk/Entry/EntryCompletion.chs.pp,
gtk/Graphics/UI/Gtk/Entry/HScale.chs,
gtk/Graphics/UI/Gtk/Entry/SpinButton.chs,
gtk/Graphics/UI/Gtk/Entry/VScale.chs: export to{Object} functions.
* gtk/Graphics/UI/Gtk/General/Style.chs: export to{Object} functions.
* gtk/Graphics/UI/Gtk/Layout/Alignment.chs.pp,
gtk/Graphics/UI/Gtk/Layout/AspectFrame.chs,
gtk/Graphics/UI/Gtk/Layout/Expander.chs.pp,
gtk/Graphics/UI/Gtk/Layout/Fixed.chs,
gtk/Graphics/UI/Gtk/Layout/HBox.chs,
gtk/Graphics/UI/Gtk/Layout/HButtonBox.chs,
gtk/Graphics/UI/Gtk/Layout/HPaned.chs,
gtk/Graphics/UI/Gtk/Layout/Layout.chs,
gtk/Graphics/UI/Gtk/Layout/Notebook.chs.pp,
gtk/Graphics/UI/Gtk/Layout/Table.chs,
gtk/Graphics/UI/Gtk/Layout/VBox.chs,
gtk/Graphics/UI/Gtk/Layout/VButtonBox.chs,
gtk/Graphics/UI/Gtk/Layout/VPaned.chs: export to{Object} functions.
* gtk/Graphics/UI/Gtk/MenuComboToolbar/CheckMenuItem.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/Combo.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ComboBox.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ComboBoxEntry.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ImageMenuItem.chs,
gtk/Graphics/UI/Gtk/MenuComboToolbar/Menu.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuBar.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuItem.chs,
gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuShell.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/MenuToolButton.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/OptionMenu.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/RadioMenuItem.chs,
gtk/Graphics/UI/Gtk/MenuComboToolbar/RadioToolButton.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/SeparatorMenuItem.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/SeparatorToolItem.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/TearoffMenuItem.chs,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ToggleToolButton.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ToolButton.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/ToolItem.chs.pp,
gtk/Graphics/UI/Gtk/MenuComboToolbar/Toolbar.chs.pp: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Misc/Adjustment.chs.pp,
gtk/Graphics/UI/Gtk/Misc/Arrow.chs,
gtk/Graphics/UI/Gtk/Misc/Calendar.chs.pp,
gtk/Graphics/UI/Gtk/Misc/DrawingArea.chs,
gtk/Graphics/UI/Gtk/Misc/EventBox.chs.pp,
gtk/Graphics/UI/Gtk/Misc/HandleBox.chs,
gtk/Graphics/UI/Gtk/Misc/SizeGroup.chs.pp,
gtk/Graphics/UI/Gtk/Misc/Tooltips.chs.pp,
gtk/Graphics/UI/Gtk/Misc/Viewport.chs: export to{Object} functions.
* gtk/Graphics/UI/Gtk/Multiline/TextBuffer.chs.pp,
gtk/Graphics/UI/Gtk/Multiline/TextMark.chs,
gtk/Graphics/UI/Gtk/Multiline/TextTag.chs.pp,
gtk/Graphics/UI/Gtk/Multiline/TextTagTable.chs,
gtk/Graphics/UI/Gtk/Multiline/TextView.chs.pp: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Ornaments/Frame.chs,
gtk/Graphics/UI/Gtk/Ornaments/HSeparator.chs,
gtk/Graphics/UI/Gtk/Ornaments/VSeparator.chs: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Scrolling/HScrollbar.chs,
gtk/Graphics/UI/Gtk/Scrolling/ScrolledWindow.chs.pp,
gtk/Graphics/UI/Gtk/Scrolling/VScrollbar.chs: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Selectors/ColorButton.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/ColorSelection.chs,
gtk/Graphics/UI/Gtk/Selectors/ColorSelectionDialog.chs,
gtk/Graphics/UI/Gtk/Selectors/FileChooser.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FileChooserButton.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FileChooserDialog.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FileChooserWidget.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FileFilter.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FileSelection.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FontButton.chs.pp,
gtk/Graphics/UI/Gtk/Selectors/FontSelection.chs,
gtk/Graphics/UI/Gtk/Selectors/FontSelectionDialog.chs: export
to{Object} functions.
* gtk/Graphics/UI/Gtk/TreeList/CellRenderer.hs,
gtk/Graphics/UI/Gtk/TreeList/CellRendererPixbuf.chs,
gtk/Graphics/UI/Gtk/TreeList/CellRendererText.chs,
gtk/Graphics/UI/Gtk/TreeList/CellRendererToggle.chs,
gtk/Graphics/UI/Gtk/TreeList/CellView.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/IconView.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/ListStore.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeModel.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeModelSort.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeSelection.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeStore.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeView.chs.pp,
gtk/Graphics/UI/Gtk/TreeList/TreeViewColumn.chs.pp: export to{Object}
functions.
* gtk/Graphics/UI/Gtk/Windows/AboutDialog.chs.pp,
gtk/Graphics/UI/Gtk/Windows/Dialog.chs.pp,
gtk/Graphics/UI/Gtk/Windows/Window.chs.pp,
gtk/Graphics/UI/Gtk/Windows/WindowGroup.chs: export to{Object}
functions.
* glade/Graphics/UI/Gtk/Glade.chs: update docs and coding style of
bindings.
* tools/apiGen/CodeGen.hs, tools/apiGen/ModuleScan.hs: minor apigen
updates. Add the to{Object} functions to the export list.
2005-10-18 Duncan Coutts <[email protected]>
* gtk/Graphics/UI/Gtk/Gdk/Events.hsc: more cleanups to the Event
structure. Rename various record selector names. Use Word32 for
timestamps rather than Integer. Use the Gtk.Keys module rather than
defining things locally.
* gtk/Graphics/UI/Gtk/Gdk/Keys.chs: remove use of c2hs {# fun #}
hooks, use normal {# call #} hooks instead. Add keyvalToChar which is
used in the Event marshaling. Add documentation.
* gtk/Graphics/UI/Gtk/General/StockItems.hsc: use Gtk.Keys.KeyVal for
the Keyval rather than Integer.
* gtk/Graphics/UI/Gtk/Windows/Window.chs.pp: use Word32 for timestamps
rather than Integer.
* gtk/Graphics/UI/Gtk/Display/Label.chs.pp: use KeyVal imported from
Gtk.Keys module rather than local definition.
* demo/cairo/Drawing.hs, demo/fastdraw/FastDraw.hs,
demo/graphic/Drawing.hs, demo/treeList/ListTest.hs: fix demos to use
new event record field names.
* cairo/Graphics/Rendering/Cairo/Types.chs: remove RULES pragma. It
duplicates rules from ghc's libraries anyway and causes compilation
problems with ghc-6.2.
* demo/cairo/Text.hs: fix the text demo to take account of the changed
behaviour of showText in cairo 1.0.
* cairo/Graphics/Rendering/Cairo/Internal.hs,
cairo/Graphics/Rendering/Cairo.hs: move the definition of the Render
monad into the Internal module.
* Makefile.am: various changes: do not exclude the System.Glib.Signals
module from the haddock docs, merely hide it. correct
gtk/Graphics/UI/Gtk/Cairo.chs to gtk/Graphics/UI/Gtk/Cairo.chs.pp in
the gtk soruces list. Add a couple pango modules to the list of hidden
haddock modules. Do not use the local cairo.h header but rather the
system one. Fix the list of expected haddock index html files.
* configure.ac: bump the revision to help people trak recent
incompatible changes.
2005-10-17 Axel Simon <[email protected]>