From: Duncan C. <dun...@us...> - 2005-03-25 19:44:25
|
Update of /cvsroot/gtk2hs/gtk2hs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12925 Modified Files: ChangeLog TODO Log Message: Add some more todo items. Index: TODO =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/TODO,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- TODO 26 Feb 2005 02:17:26 -0000 1.9 +++ TODO 25 Mar 2005 19:44:17 -0000 1.10 @@ -1,5 +1,36 @@ TODO for gtk2hs +24/3/2005 Duncan Coutts <du...@co...> + + * check the ref counting of BOXED obects in signal callbacks, eg Event + +23/3/2005 Duncan Coutts <du...@co...> + + * change gconf so it does not require -fallow-overlapping-instances + +22/3/2005 Duncan Coutts <du...@co...> + + * gtk/Graphics/UI/Gtk/Ornaments/Frame.chs: frameSetLabelAlign and + frameGetLabelAlign only get/set the horazontal alignment not the + verticle alighment too + +12/3/2005 Duncan Coutts <du...@co...> + + * glib timeouts and idle handlers: + move them to glib package but re-export from gtk package + make a newtype for priorities and add more of them + make the IO Bool arg be the last arg so you can say: + idleAdd priorityDefault $ do + ... + + add new menu toolbar API + + * refactor events interface. Problem with mem management (the region + is destroied after the event handler completes) so perhaps make event + structures abstract with accessor functions so for example the Region + can be copied (with a destructor). Or Axel suggested a different + signal, eg onExposeRegion + 8/12/2004 Duncan Coutts <du...@co...> * there sould be a rule to rebuild .chi files even if the corresponding Index: ChangeLog =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/ChangeLog,v retrieving revision 1.400 retrieving revision 1.401 diff -u -d -r1.400 -r1.401 --- ChangeLog 25 Mar 2005 19:31:16 -0000 1.400 +++ ChangeLog 25 Mar 2005 19:44:16 -0000 1.401 @@ -45,6 +45,8 @@ with make isntallcheck. Override HC=$(HC) when making the demos so the right version of ghc is used. + * TODO: add some more todo items + 2005-03-24 Duncan Coutts <du...@co...> * gtk/Graphics/UI/Gtk/Scrolling/HScrollbar.chs, |