diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2018-02-01 17:43:15 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-02-03 16:24:13 +0100 |
commit | 2cbe094b919442471b54685a0fef0d6f83ce44b3 (patch) | |
tree | 187a9b099feed2d2da8bcc14885ab1701fc92a95 /gdk/gdkclipboard.c | |
parent | 4fa4b8525e62c711e6a7c10f25d5015428b2fa27 (diff) | |
download | gtk+-2cbe094b919442471b54685a0fef0d6f83ce44b3.tar.gz |
Allow binding GdkContentFormatsBuilder
GdkContentFormatsBuilder is currently not introspectable, as it does not
have a GType. We can turn it into a boxed type, but we need to implement
memory management for it.
The current gdk_content_formats_builder_free() function returns a newly
constructed value, so we cannot use it as a GBoxedFreeFunc; additionally
copying a GdkContentFormatsBuilder contents would make it a bit odd, as
you could get multiple identical GdkContentFormats out of the copies.
A simple approach is to model the GdkContentFormatsBuilder API to follow
the GBytes one: use reference counting for memory management, and have
a function to release a reference, return a GdkContentFormats, and reset
the GdkContentFormatsBuilder state.
For language bindings, we can provide a get_formats() function that
returns the GdkContentFormats instance and resets the builder instance,
leaving the reference count untouched.
For C convenience we can keep gdk_content_formats_builder_free(), and
make it a wrapper around gdk_content_formats_builder_get_formats(), with
the guarantee that it'll free the builder instance regardless of its
current reference count.
https://bugzilla.gnome.org/show_bug.cgi?id=793097
https://blogs.gnome.org/otte/2018/02/03/builders/
Diffstat (limited to 'gdk/gdkclipboard.c')
-rw-r--r-- | gdk/gdkclipboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkclipboard.c b/gdk/gdkclipboard.c index ee9d8e991b..df821477f2 100644 --- a/gdk/gdkclipboard.c +++ b/gdk/gdkclipboard.c @@ -820,7 +820,7 @@ gdk_clipboard_read_value_internal (GdkClipboard *clipboard, builder = gdk_content_formats_builder_new (); gdk_content_formats_builder_add_gtype (builder, type); - formats = gdk_content_formats_builder_free (builder); + formats = gdk_content_formats_builder_free_to_formats (builder); formats = gdk_content_formats_union_deserialize_mime_types (formats); gdk_clipboard_read_internal (clipboard, |