summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2015-02-04 09:44:23 +0100
committerMurray Cumming <murrayc@murrayc.com>2015-02-04 09:44:23 +0100
commitee8b4a04a5b9f0bdb6743f2c06799f9d5e2353c9 (patch)
treed0dd872f0a26f752e108a1730faa87b43cad440c
parent40a887ca40010ad7816e120bb4d846752595635a (diff)
downloadglibmm-ee8b4a04a5b9f0bdb6743f2c06799f9d5e2353c9.tar.gz
Regenerate methods .defs files.
-rw-r--r--gio/src/gio_methods.defs144
-rw-r--r--glib/src/glib_functions.defs15
-rw-r--r--glib/src/gobject_functions.defs4
3 files changed, 155 insertions, 8 deletions
diff --git a/gio/src/gio_methods.defs b/gio/src/gio_methods.defs
index 1170f1e0..00c9d82c 100644
--- a/gio/src/gio_methods.defs
+++ b/gio/src/gio_methods.defs
@@ -10068,6 +10068,10 @@
+;; From gio-autocleanups.h
+
+
+
;; From gioenums.h
@@ -10834,6 +10838,117 @@
+;; From glistmodel.h
+
+(define-function g_list_model_get_type
+ (c-name "g_list_model_get_type")
+ (return-type "GType")
+)
+
+(define-method get_item_type
+ (of-object "GListModel")
+ (c-name "g_list_model_get_item_type")
+ (return-type "GType")
+)
+
+(define-method get_n_items
+ (of-object "GListModel")
+ (c-name "g_list_model_get_n_items")
+ (return-type "guint")
+)
+
+(define-method get_item
+ (of-object "GListModel")
+ (c-name "g_list_model_get_item")
+ (return-type "gpointer")
+ (parameters
+ '("guint" "position")
+ )
+)
+
+(define-method get_object
+ (of-object "GListModel")
+ (c-name "g_list_model_get_object")
+ (return-type "GObject*")
+ (parameters
+ '("guint" "position")
+ )
+)
+
+(define-method items_changed
+ (of-object "GListModel")
+ (c-name "g_list_model_items_changed")
+ (return-type "none")
+ (parameters
+ '("guint" "position")
+ '("guint" "removed")
+ '("guint" "added")
+ )
+)
+
+
+
+;; From gliststore.h
+
+(define-method insert
+ (of-object "GListStore")
+ (c-name "g_list_store_insert")
+ (return-type "none")
+ (parameters
+ '("guint" "position")
+ '("gpointer" "item")
+ )
+)
+
+(define-method insert_sorted
+ (of-object "GListStore")
+ (c-name "g_list_store_insert_sorted")
+ (return-type "guint")
+ (parameters
+ '("gpointer" "item")
+ '("GCompareDataFunc" "compare_func")
+ '("gpointer" "user_data")
+ )
+)
+
+(define-method append
+ (of-object "GListStore")
+ (c-name "g_list_store_append")
+ (return-type "none")
+ (parameters
+ '("gpointer" "item")
+ )
+)
+
+(define-method remove
+ (of-object "GListStore")
+ (c-name "g_list_store_remove")
+ (return-type "none")
+ (parameters
+ '("guint" "position")
+ )
+)
+
+(define-method remove_all
+ (of-object "GListStore")
+ (c-name "g_list_store_remove_all")
+ (return-type "none")
+)
+
+(define-method splice
+ (of-object "GListStore")
+ (c-name "g_list_store_splice")
+ (return-type "none")
+ (parameters
+ '("guint" "position")
+ '("guint" "n_removals")
+ '("gpointer*" "additions")
+ '("guint" "n_additions")
+ )
+)
+
+
+
;; From gloadableicon.h
(define-function g_loadable_icon_get_type
@@ -14402,6 +14517,12 @@
)
)
+(define-method list_children
+ (of-object "GSettingsSchema")
+ (c-name "g_settings_schema_list_children")
+ (return-type "gchar**")
+)
+
(define-function g_settings_schema_key_get_type
(c-name "g_settings_schema_key_get_type")
(return-type "GType")
@@ -14446,6 +14567,12 @@
)
)
+(define-method get_name
+ (of-object "GSettingsSchemaKey")
+ (c-name "g_settings_schema_key_get_name")
+ (return-type "const-gchar*")
+)
+
(define-method get_summary
(of-object "GSettingsSchemaKey")
(c-name "g_settings_schema_key_get_summary")
@@ -14671,6 +14798,15 @@
)
)
+(define-method set_state_hint
+ (of-object "GSimpleAction")
+ (c-name "g_simple_action_set_state_hint")
+ (return-type "none")
+ (parameters
+ '("GVariant*" "state_hint")
+ )
+)
+
;; From gsimpleasyncresult.h
@@ -18231,14 +18367,6 @@
;; From gunixmounts.h
-(define-function g_unix_mount_free
- (c-name "g_unix_mount_free")
- (return-type "none")
- (parameters
- '("GUnixMountEntry*" "mount_entry")
- )
-)
-
(define-method free
(of-object "GUnixMountPoint")
(c-name "g_unix_mount_point_free")
diff --git a/glib/src/glib_functions.defs b/glib/src/glib_functions.defs
index 9d5e4c3c..edebe47a 100644
--- a/glib/src/glib_functions.defs
+++ b/glib/src/glib_functions.defs
@@ -6063,6 +6063,10 @@
+;; From glib-autocleanups.h
+
+
+
;; From glibconfig.h
@@ -14940,6 +14944,17 @@
)
)
+(define-function g_win32_check_windows_version
+ (c-name "g_win32_check_windows_version")
+ (return-type "gboolean")
+ (parameters
+ '("const-gint" "major")
+ '("const-gint" "minor")
+ '("const-gint" "spver")
+ '("const-GWin32OSType" "os_type")
+ )
+)
+
;; From valgrind.h
diff --git a/glib/src/gobject_functions.defs b/glib/src/gobject_functions.defs
index 7611a004..b59f0cfc 100644
--- a/glib/src/gobject_functions.defs
+++ b/glib/src/gobject_functions.defs
@@ -1352,6 +1352,10 @@
+;; From gobject-autocleanups.h
+
+
+
;; From gobject.h
(define-function g_initially_unowned_get_type