summaryrefslogtreecommitdiff
path: root/src/Gtk/Internal.icl
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gtk/Internal.icl')
-rw-r--r--src/Gtk/Internal.icl15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Gtk/Internal.icl b/src/Gtk/Internal.icl
index dab7f62..d0993bf 100644
--- a/src/Gtk/Internal.icl
+++ b/src/Gtk/Internal.icl
@@ -41,6 +41,21 @@ gtk_box_pack_end box child expand fill spacing env = code {
ccall gtk_box_pack_end "ppIII:V:A"
}
+gtk_check_menu_item_get_active :: !Pointer !.a -> (!Bool, !.a)
+gtk_check_menu_item_get_active item env = code {
+ ccall gtk_check_menu_item_get_active "p:I:A"
+}
+
+gtk_check_menu_item_new :: !.a -> (!Pointer, !.a)
+gtk_check_menu_item_new env = code {
+ ccall gtk_check_menu_item_new ":p:A"
+}
+
+gtk_check_menu_item_set_active :: !Pointer !Bool !.a -> .a
+gtk_check_menu_item_set_active item setting env = code {
+ ccall gtk_check_menu_item_set_active "pI:V:A"
+}
+
gtk_container_add :: !Pointer !Pointer !.a -> .a
gtk_container_add container widget env = code {
ccall gtk_container_add "pp:V:A"