diff options
author | Camil Staps | 2019-10-30 13:21:06 +0100 |
---|---|---|
committer | Camil Staps | 2019-10-30 13:21:06 +0100 |
commit | 79915057437b92095ed44667c269c8650a77a298 (patch) | |
tree | 7ff268809cc3a6b9c842d0b40bf42da7eabf9fd0 /src/Gtk/Widgets.icl | |
parent | Add G modifier to ccalls gtk_sheet_thaw and gtk_sheet_row_set_visibility whic... (diff) |
Add GdkEvent and KeyPressHandler
Diffstat (limited to 'src/Gtk/Widgets.icl')
-rw-r--r-- | src/Gtk/Widgets.icl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Gtk/Widgets.icl b/src/Gtk/Widgets.icl index ff162cd..db69b81 100644 --- a/src/Gtk/Widgets.icl +++ b/src/Gtk/Widgets.icl @@ -12,6 +12,7 @@ from Text import class Text(split), instance Text String import qualified Text import Gtk +import Gdk.Internal import Gtk.Internal newAccelGroup :: !w -> GtkM GtkAccelGroup | gtkWindow w @@ -568,7 +569,7 @@ instance gtkWidget GtkWindow where gtkWidget (GtkWindow w) = GtkWidget w instance gtkContainer GtkWindow where gtkContainer (GtkWindow w) = GtkContainer w instance gtkWindow GtkWindow where gtkWindow w = w -newPopup :: -> GtkM GtkWindow +newPopup :: GtkM GtkWindow newPopup = new_window_or_popup True newWindow :: GtkM GtkWindow |