diff options
author | Camil Staps | 2019-10-29 19:39:13 +0100 |
---|---|---|
committer | Camil Staps | 2019-10-29 22:19:53 +0100 |
commit | 8e4c06ed5e4572d7e9c1655b1d3442d4467f2997 (patch) | |
tree | d1088d8536e7e55d2bca1c5a0a0d46a58ed105f7 /src/Gtk/Internal.icl | |
parent | Add functions to set/check row visibility of GtkSheets (diff) |
Add GtkSearchEntry
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 db2ef5a..95b4b2a 100644 --- a/src/Gtk/Internal.icl +++ b/src/Gtk/Internal.icl @@ -482,6 +482,11 @@ gtk_scrolled_window_set_policy window hpolicy vpolicy env = code { ccall gtk_scrolled_window_set_policy "pII:V:A" } +gtk_search_entry_new :: !.a -> (!Pointer, !.a) +gtk_search_entry_new env = code { + ccall gtk_search_entry_new ":p:A" +} + gtk_separator_menu_item_new :: !.a -> (!Pointer, !.a) gtk_separator_menu_item_new env = code { ccall gtk_separator_menu_item_new ":p:A" |