From: Axel S. <as...@us...> - 2005-04-08 14:22:08
|
Update of /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6688/gtk/Graphics/UI/Gtk/Windows Modified Files: Window.chs.pp Log Message: Corrected conditional compilation so that it compiles with Gtk 2.4 Index: Window.chs.pp =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/gtk/Graphics/UI/Gtk/Windows/Window.chs.pp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Window.chs.pp 7 Apr 2005 00:50:32 -0000 1.7 +++ Window.chs.pp 8 Apr 2005 14:21:53 -0000 1.8 @@ -143,6 +143,17 @@ -- * Properties windowResizable, + windowModal, + windowDestroyWithParent, + windowIcon, + windowScreen, + windowTypeHint, + windowSkipTaskbarHint, + windowSkipPagerHint, + windowAcceptFocus, +#if GTK_CHECK_VERSION(2,6,0) + windowFocusOnMap, +#endif -- * Signals onFrameEvent, @@ -1325,6 +1336,7 @@ windowGetAcceptFocus windowSetAcceptFocus +#if GTK_CHECK_VERSION(2,6,0) -- | @True@ if the window should receive the input focus when mapped. -- -- Default value: @True@ @@ -1333,6 +1345,7 @@ windowFocusOnMap = Attr windowGetFocusOnMap windowSetFocusOnMap +#endif #if GTK_CHECK_VERSION(2,4,0) -- | Whether the window should be decorated by the window manager. |