diff options
author | Camil Staps | 2019-10-27 14:41:08 +0100 |
---|---|---|
committer | Camil Staps | 2019-10-27 14:41:08 +0100 |
commit | 7afd5796929601b10d52fc024b3cfd9ed64f25af (patch) | |
tree | de6c6f6e04a666e2a26a50d75dbff2f711b7ace3 /src/Gtk/Internal.icl | |
parent | Add newMessageDialog; add GtkTitle type and instance tune w GtkTitle | gtkWin... (diff) |
Add GtkScrollbarPolicy and instance tune GtkScrolledWindow (GtkScrollbarPolicy, GtkScrollbarPolicy)
Diffstat (limited to 'src/Gtk/Internal.icl')
-rw-r--r-- | src/Gtk/Internal.icl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Gtk/Internal.icl b/src/Gtk/Internal.icl index aed7b79..a5e2256 100644 --- a/src/Gtk/Internal.icl +++ b/src/Gtk/Internal.icl @@ -290,6 +290,11 @@ gtk_scrolled_window_new hadjust vadjust env = code { ccall gtk_scrolled_window_new "pp:p:A" } +gtk_scrolled_window_set_policy :: !Pointer !Int !Int !.a -> .a +gtk_scrolled_window_set_policy window hpolicy vpolicy env = code { + ccall gtk_scrolled_window_set_policy "pII:V:A" +} + gtk_separator_new :: !Bool !.a -> (!Pointer, !.a) gtk_separator_new vertical env = code { ccall gtk_separator_new "I:p:A" |