From: Axel S. <as...@us...> - 2005-02-17 00:13:31
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30366 Modified Files: ChangeLog Makefile.am Log Message: Made Mogul's TreePath which is [Int] the only TreePath, even in TreeModel. Completed DrawWindow (gdk_window). Make apiGen Makefile work with different versions. Index: Makefile.am =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/Makefile.am,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- Makefile.am 13 Feb 2005 16:25:54 -0000 1.49 +++ Makefile.am 17 Feb 2005 00:13:19 -0000 1.50 @@ -301,7 +301,7 @@ gtk/Graphics/UI/Gtk.hs \ gtk/Graphics/UI/Gtk/Pango/Types.chs.pp \ gtk/Graphics/UI/Gtk/TreeList/TreeModel.chs.pp \ - gtk/Graphics/UI/Gtk/TreeList/TreeViewColumn.chs \ + gtk/Graphics/UI/Gtk/TreeList/TreeViewColumn.chs.pp \ gtk/Graphics/UI/Gtk/Multiline/TextIter.chs.pp \ gtk/Graphics/UI/Gtk/Gdk/Region.chs.pp \ gtk/Graphics/UI/Gtk/Abstract/Bin.chs \ @@ -391,8 +391,8 @@ gtk/Graphics/UI/Gtk/TreeList/CellRendererText.chs \ gtk/Graphics/UI/Gtk/TreeList/CellRendererToggle.chs \ gtk/Graphics/UI/Gtk/TreeList/ListStore.chs.pp \ - gtk/Graphics/UI/Gtk/TreeList/TreeModelSort.chs \ - gtk/Graphics/UI/Gtk/TreeList/TreeSelection.chs \ + 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/Windows/Dialog.chs \ @@ -414,7 +414,7 @@ gtk/Graphics/UI/Gtk/Abstract/Scrollbar.hs \ gtk/Graphics/UI/Gtk/Abstract/Separator.hs \ gtk/Graphics/UI/Gtk/TreeList/CellRenderer.hs \ - gtk/Graphics/UI/Gtk/Gdk/DrawWindow.hs \ + gtk/Graphics/UI/Gtk/Gdk/DrawWindow.chs.pp \ gtk/Graphics/UI/Gtk/Pango/Markup.hs if !WIN32 Index: ChangeLog =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v retrieving revision 1.356 retrieving revision 1.357 diff -u -d -r1.356 -r1.357 --- ChangeLog 15 Feb 2005 19:03:13 -0000 1.356 +++ ChangeLog 17 Feb 2005 00:13:18 -0000 1.357 @@ -1,3 +1,31 @@ +2005-02-16 Axel Simon <A....@ke...> + + * Makefile.am: Renamed TreeViewColumn.chs, TreeModelSort.chs, + TreeSelection.chs, DrawWindow.hs to .chs.pp files. + + * demo/unicode/Arabic.hs: Make the font sensibly large. + + * gtk/Graphics/UI/Gtk/Gdk/Enums.chs: Docu fix. + + * gtk/Graphics/UI/Gtk/TreeList/TreeModel.chs.pp, + gtk/Graphics/UI/Gtk/TreeList/TreeView.chs.pp, + mogul/Graphics/UI/Gtk/Mogul.hs, + mogul/Graphics/UI/Gtk/Mogul/TreeList.hs: Changed the type TreePath + to list of integers and got rid of the C-side TreePath type. The + Mogul TreePath type is now integrated into TreeModel. Completed + TreeModel and TreeView binding. + + * gtk/Graphics/UI/Gtk/Gdk/DrawWindow.chs.pp: Bind all sensible + functions (i.e. those that are not in gtk_window). + + * tools/apiGen/atk-sources.xml, tools/apiGen/gdk-sources.xml, + tools/apiGen/glade-sources.xml, + tools/apiGen/gnomecanvas-sources.xml, + tools/apiGen/gtk-sources.xml, tools/apiGen/pango-sources.xml, + tools/apiGen/Makefile: Make the build work for different version + numbers by renaming the source trees to names without version + numbers. + 2005-02-15 Duncan Coutts <du...@co...> * gtk/Graphics/UI/Gtk/Display/Image.chs.pp: fix an #if test so that it |