From: Duncan C. <dun...@us...> - 2005-02-25 22:53:53
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Layout In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11239/gtk/Graphics/UI/Gtk/Layout Modified Files: Expander.chs.pp Fixed.chs Log Message: various small changes: Trivial white space changes to better match the generated code. Minor documentation changes. Other trivial changes to better match the generated code. TreeModelSort.chs.pp: since GtkTreeModelSort implementes the GtkTreeModel interface, make TreeModelSort an instance of TreeModelClass. ImageMenuItem.chs: relicense to LGPL with permission of Jonas Svensson. Index: Expander.chs.pp =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Layout/Expander.chs.pp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Expander.chs.pp 25 Feb 2005 01:11:34 -0000 1.3 +++ Expander.chs.pp 25 Feb 2005 22:53:41 -0000 1.4 @@ -78,7 +78,7 @@ onActivate, afterActivate #endif -) where + ) where #if GTK_CHECK_VERSION(2,4,0) @@ -90,7 +90,7 @@ {#import Graphics.UI.Gtk.Types#} import Graphics.UI.Gtk.Signals -{# context lib="gtk" prefix ="gtk" #} +{# context lib="gtk" prefix="gtk" #} -------------------- -- Constructors Index: Fixed.chs =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Layout/Fixed.chs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Fixed.chs 25 Feb 2005 01:11:34 -0000 1.3 +++ Fixed.chs 25 Feb 2005 22:53:41 -0000 1.4 @@ -29,8 +29,8 @@ module Graphics.UI.Gtk.Layout.Fixed ( -- * Description -- --- | The "Fixed" widget is a container which can place child widgets at fixed --- positions and with fixed sizes, given in pixels. "Fixed" performs no +-- | The 'Fixed' widget is a container which can place child widgets at fixed +-- positions and with fixed sizes, given in pixels. 'Fixed' performs no -- automatic layout management. -- -- For most applications, you should not use this container! It keeps you @@ -52,7 +52,7 @@ -- In addition, the fixed widget can't properly be mirrored in right-to-left -- languages such as Hebrew and Arabic. i.e. normally Gtk+ will flip the -- interface to put labels to the right of the thing they label, but it can't --- do that with "Fixed". So your application will not be usable in +-- do that with 'Fixed'. So your application will not be usable in -- right-to-left languages. -- -- Finally, fixed positioning makes it kind of annoying to add\/remove GUI @@ -60,7 +60,7 @@ -- long-term maintenance problem for your application. -- -- If you know none of these things are an issue for your application, and --- prefer the simplicity of "Fixed", by all means use the widget. But you +-- prefer the simplicity of 'Fixed', by all means use the widget. But you -- should be aware of the tradeoffs. -- * Class Hierarchy |