diff --git a/Graphics/UI/Gtk/OSX.hs b/Graphics/UI/Gtk/OSX.hs
--- a/Graphics/UI/Gtk/OSX.hs
+++ b/Graphics/UI/Gtk/OSX.hs
@@ -1,5 +1,7 @@
 module Graphics.UI.Gtk.OSX (
-	module Graphics.UI.Gtk.OSX.Application
-	) where
+    module Graphics.UI.Gtk.OSX.Application
+  , module Graphics.UI.Gtk.OSX.Window
+) where
 
 import Graphics.UI.Gtk.OSX.Application
+import Graphics.UI.Gtk.OSX.Window
diff --git a/Graphics/UI/Gtk/OSX/Signals.chs b/Graphics/UI/Gtk/OSX/Signals.chs
--- a/Graphics/UI/Gtk/OSX/Signals.chs
+++ b/Graphics/UI/Gtk/OSX/Signals.chs
@@ -48,10 +48,10 @@
   
   ) where
 
-import Control.Monad	(liftM)
+import Control.Monad    (liftM)
 
 import System.Glib.FFI
-import System.Glib.UTFString   (peekUTFString,maybePeekUTFString)
+import System.Glib.UTFString   (peekUTFString,maybePeekUTFString,newUTFString)
 import qualified System.Glib.UTFString as Glib
 import System.Glib.GError      (failOnGError)
 {#import System.Glib.Signals#}
diff --git a/Graphics/UI/Gtk/OSX/Window.chs b/Graphics/UI/Gtk/OSX/Window.chs
new file mode 100644
--- /dev/null
+++ b/Graphics/UI/Gtk/OSX/Window.chs
@@ -0,0 +1,12 @@
+{-# LANGUAGE CPP #-}
+module Graphics.UI.Gtk.OSX.Window (
+    allowFullscreen
+) where
+
+import System.Glib.FFI
+{#import Graphics.UI.Gtk.OSX.Types#}
+
+allowFullscreen window =
+    {# call unsafe gtk2hs_osx_allow_fullscreen #}
+        (toDrawWindow window)
+
diff --git a/Graphics/UI/Gtk/OSX/extra.m b/Graphics/UI/Gtk/OSX/extra.m
new file mode 100644
--- /dev/null
+++ b/Graphics/UI/Gtk/OSX/extra.m
@@ -0,0 +1,11 @@
+#include <gtk/gtk.h>
+#include <gdk/gdkquartz.h>
+
+void gtk2hs_osx_allow_fullscreen(GdkWindow *wnd)
+{
+    if (wnd != NULL)
+    {
+        NSWindow *native = gdk_quartz_window_get_nswindow (wnd);
+        [native setCollectionBehavior: [native collectionBehavior] | NSWindowCollectionBehaviorFullScreenPrimary];
+    }
+}
diff --git a/gtk3-mac-integration.cabal b/gtk3-mac-integration.cabal
--- a/gtk3-mac-integration.cabal
+++ b/gtk3-mac-integration.cabal
@@ -1,5 +1,5 @@
 Name:           gtk3-mac-integration
-Version:        0.3.0.3
+Version:        0.3.1.0
 License:        LGPL-2.1
 License-file:   COPYING
 Copyright:      (c) 2001-2010 The Gtk2Hs Team
@@ -35,7 +35,7 @@
 
 Source-Repository head
   type:         git
-  location:     https://github.com/gtk2hs/ige-mac-integration
+  location:     https://github.com/gtk2hs/gtk-mac-integration.git
 
 Library
         build-depends:  base >= 4 && < 5, array -any, containers -any, mtl -any,
@@ -48,6 +48,7 @@
         exposed-modules:
           Graphics.UI.Gtk.OSX
           Graphics.UI.Gtk.OSX.Application
+          Graphics.UI.Gtk.OSX.Window
         other-modules:
           Graphics.UI.Gtk.OSX.Types
           Graphics.UI.Gtk.OSX.Signals
@@ -56,6 +57,7 @@
 
         include-dirs:   .
         cpp-options:    -DDISABLE_DEPRECATED -U__BLOCKS__ -D__attribute__(A)=
+        c-sources:      Graphics/UI/Gtk/OSX/extra.m
 
         x-Signals-File:  Graphics/UI/Gtk/OSX/Signals.chs
         x-Signals-Modname: Graphics.UI.Gtk.OSX.Signals
diff --git a/hs-gtk-mac-integration.h b/hs-gtk-mac-integration.h
--- a/hs-gtk-mac-integration.h
+++ b/hs-gtk-mac-integration.h
@@ -3,3 +3,4 @@
 #endif
 #include <gtkosxapplication.h>
 
+void gtk2hs_osx_allow_fullscreen(GdkWindow *wnd);
