2017-11-17 16:31:59 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2017-11-18 01:19:53 +00:00
|
|
|
* Copyright (C) 2017 Benjamin Otte
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-11-18 01:19:53 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2017-11-17 16:31:59 +00:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gdkcontentformats
|
|
|
|
* @Title: Content Formats
|
|
|
|
* @Short_description: Advertising and negotiating of content
|
|
|
|
* exchange formats
|
2017-12-04 23:58:30 +00:00
|
|
|
* @See_also: #GdkDragContext, #GdkClipboard, #GdkContentProvider
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* This section describes the #GdkContentFormats structure that is used to
|
|
|
|
* advertise and negotiate the format of content passed between different
|
|
|
|
* widgets, windows or applications using for example the clipboard or
|
|
|
|
* drag'n'drop.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* GDK supports content in 2 forms: #GType and mime type.
|
|
|
|
* Using #GTypes is meant only for in-process content transfers. Mime types
|
|
|
|
* are meant to be used for data passing both in-process and out-of-process.
|
|
|
|
* The details of how data is passed is described in the documentation of
|
|
|
|
* the actual implementations.
|
|
|
|
*
|
|
|
|
* A #GdkContentFormats describes a set of possible formats content can be
|
|
|
|
* exchanged in. It is assumed that this set is ordered. #GTypes are more
|
|
|
|
* important than mime types. Order between different #Gtypes or mime types
|
|
|
|
* is the order they were added in, most important first. Functions that
|
|
|
|
* care about order, such as gdk_content_formats_union() will describe in
|
|
|
|
* their documentation how they interpret that order, though in general the
|
|
|
|
* order of the first argument is considered the primary order of the result,
|
|
|
|
* followed by the order of further arguments.
|
|
|
|
*
|
|
|
|
* For debugging purposes, the function gdk_content_formats_to_string() exists.
|
|
|
|
* It will print a comma-seperated formats of formats from most important to least
|
|
|
|
* important.
|
2017-11-20 01:47:45 +00:00
|
|
|
*
|
|
|
|
* #GdkContentFormats is an immutable struct. After creation, you cannot change
|
|
|
|
* the types it represents. Instead, new #GdkContentFormats have to be created.
|
|
|
|
* The #GdkContentFormatsBuilder structure is meant to help in this endeavor.
|
2017-11-17 16:31:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-11-18 01:19:53 +00:00
|
|
|
* GdkContentFormats:
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* A #GdkContentFormats struct is a reference counted struct
|
|
|
|
* and should be treated as opaque.
|
2017-11-17 16:31:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "gdkcontentformats.h"
|
|
|
|
#include "gdkcontentformatsprivate.h"
|
|
|
|
|
2017-11-25 20:59:39 +00:00
|
|
|
#include <string.h>
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
struct _GdkContentFormats
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
guint ref_count;
|
2017-11-20 03:42:43 +00:00
|
|
|
|
|
|
|
const char **mime_types; /* interned */
|
|
|
|
gsize n_mime_types;
|
2017-11-20 14:58:17 +00:00
|
|
|
GType *gtypes;
|
|
|
|
gsize n_gtypes;
|
2017-11-17 16:31:59 +00:00
|
|
|
};
|
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
G_DEFINE_BOXED_TYPE (GdkContentFormats, gdk_content_formats,
|
|
|
|
gdk_content_formats_ref,
|
|
|
|
gdk_content_formats_unref)
|
|
|
|
|
|
|
|
|
2017-11-25 20:59:39 +00:00
|
|
|
/**
|
|
|
|
* gdk_intern_mime_type:
|
|
|
|
* @string: (transfer none): string of a potential mime type
|
|
|
|
*
|
|
|
|
* Canonicalizes the given mime type and interns the result.
|
|
|
|
*
|
|
|
|
* If @string is not a valid mime type, %NULL is returned instead.
|
|
|
|
* See RFC 2048 for the syntax if mime types.
|
|
|
|
*
|
|
|
|
* Returns: An interned string for the canonicalized mime type
|
|
|
|
* or %NULL if the string wasn't a valid mime type
|
|
|
|
**/
|
|
|
|
const char *
|
|
|
|
gdk_intern_mime_type (const char *string)
|
|
|
|
{
|
|
|
|
char *tmp;
|
|
|
|
|
|
|
|
g_return_val_if_fail (string != NULL, NULL);
|
|
|
|
|
|
|
|
if (!strchr (string, '/'))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tmp = g_ascii_strdown (string, -1);
|
|
|
|
|
|
|
|
string = g_intern_string (tmp);
|
|
|
|
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
static GdkContentFormats *
|
2017-11-20 14:58:17 +00:00
|
|
|
gdk_content_formats_new_take (GType * gtypes,
|
|
|
|
gsize n_gtypes,
|
|
|
|
const char **mime_types,
|
|
|
|
gsize n_mime_types)
|
2017-11-18 01:19:53 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
GdkContentFormats *result = g_slice_new0 (GdkContentFormats);
|
|
|
|
result->ref_count = 1;
|
2017-11-18 01:19:53 +00:00
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
result->gtypes = gtypes;
|
|
|
|
result->n_gtypes = n_gtypes;
|
2017-11-20 03:42:43 +00:00
|
|
|
result->mime_types = mime_types;
|
|
|
|
result->n_mime_types = n_mime_types;
|
|
|
|
|
|
|
|
return result;
|
2017-11-18 01:19:53 +00:00
|
|
|
}
|
2017-11-17 16:31:59 +00:00
|
|
|
|
|
|
|
/**
|
2017-11-18 01:19:53 +00:00
|
|
|
* gdk_content_formats_new:
|
|
|
|
* @mime_types: (array length=n_mime_types) (allow-none): Pointer to an
|
|
|
|
* array of mime types
|
2017-11-28 14:20:14 +00:00
|
|
|
* @n_mime_types: number of entries in @mime_types.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Creates a new #GdkContentFormats from an array of mime types.
|
2017-11-20 03:42:43 +00:00
|
|
|
*
|
2017-11-28 01:02:06 +00:00
|
|
|
* The mime types must be valid and different from each other or the
|
|
|
|
* behavior of the return value is undefined. If you cannot guarantee
|
|
|
|
* this, use #GdkContentFormatsBuilder instead.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Returns: (transfer full): the new #GdkContentFormats.
|
2017-11-17 16:31:59 +00:00
|
|
|
**/
|
2017-11-18 01:19:53 +00:00
|
|
|
GdkContentFormats *
|
|
|
|
gdk_content_formats_new (const char **mime_types,
|
|
|
|
guint n_mime_types)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
guint i;
|
2018-02-24 07:40:41 +00:00
|
|
|
const char **mime_types_copy;
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
if (n_mime_types == 0)
|
2017-11-20 14:58:17 +00:00
|
|
|
return gdk_content_formats_new_take (NULL, 0, NULL, 0);
|
2017-11-20 03:42:43 +00:00
|
|
|
|
2018-02-24 07:40:41 +00:00
|
|
|
mime_types_copy = g_new (const char *, n_mime_types + 1);
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
for (i = 0; i < n_mime_types; i++)
|
2018-02-24 07:40:41 +00:00
|
|
|
mime_types_copy[i] = g_intern_string (mime_types[i]);
|
|
|
|
|
|
|
|
mime_types_copy[n_mime_types] = NULL;
|
2017-11-20 03:42:43 +00:00
|
|
|
|
2018-02-24 07:40:41 +00:00
|
|
|
return gdk_content_formats_new_take (NULL, 0, mime_types_copy, n_mime_types);
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-28 01:02:06 +00:00
|
|
|
/**
|
|
|
|
* gdk_content_formats_new_for_gtype:
|
|
|
|
* @type: a $GType
|
|
|
|
*
|
|
|
|
* Creates a new #GdkContentFormats for a given #GType.
|
|
|
|
*
|
|
|
|
* Returns: a new #GdkContentFormats
|
|
|
|
**/
|
|
|
|
GdkContentFormats *
|
|
|
|
gdk_content_formats_new_for_gtype (GType type)
|
|
|
|
{
|
|
|
|
GType *data;
|
|
|
|
|
|
|
|
g_return_val_if_fail (type != G_TYPE_INVALID, NULL);
|
|
|
|
|
|
|
|
data = g_new (GType, 2);
|
|
|
|
data[0] = type;
|
|
|
|
data[1] = G_TYPE_INVALID;
|
|
|
|
|
|
|
|
return gdk_content_formats_new_take (data, 1, NULL, 0);
|
|
|
|
}
|
|
|
|
|
2017-11-17 16:31:59 +00:00
|
|
|
/**
|
2017-11-18 01:19:53 +00:00
|
|
|
* gdk_content_formats_ref:
|
|
|
|
* @formats: a #GdkContentFormats
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Increases the reference count of a #GdkContentFormats by one.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Returns: the passed in #GdkContentFormats.
|
2017-11-17 16:31:59 +00:00
|
|
|
**/
|
2017-11-18 01:19:53 +00:00
|
|
|
GdkContentFormats *
|
|
|
|
gdk_content_formats_ref (GdkContentFormats *formats)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-18 01:19:53 +00:00
|
|
|
g_return_val_if_fail (formats != NULL, NULL);
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
formats->ref_count++;
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
return formats;
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-18 01:19:53 +00:00
|
|
|
* gdk_content_formats_unref:
|
|
|
|
* @formats: a #GdkContentFormats
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Decreases the reference count of a #GdkContentFormats by one.
|
|
|
|
* If the resulting reference count is zero, frees the formats.
|
2017-11-17 16:31:59 +00:00
|
|
|
**/
|
|
|
|
void
|
2017-11-18 01:19:53 +00:00
|
|
|
gdk_content_formats_unref (GdkContentFormats *formats)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-18 01:19:53 +00:00
|
|
|
g_return_if_fail (formats != NULL);
|
|
|
|
g_return_if_fail (formats->ref_count > 0);
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-18 01:19:53 +00:00
|
|
|
formats->ref_count--;
|
|
|
|
if (formats->ref_count > 0)
|
2017-11-17 16:31:59 +00:00
|
|
|
return;
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
g_free (formats->gtypes);
|
2017-11-20 03:42:43 +00:00
|
|
|
g_free (formats->mime_types);
|
2017-11-18 01:19:53 +00:00
|
|
|
g_slice_free (GdkContentFormats, formats);
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-18 04:53:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_content_formats_print:
|
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
* @string: a #GString to print into
|
|
|
|
*
|
|
|
|
* Prints the given @formats into a string for human consumption.
|
|
|
|
* This is meant for debugging and logging.
|
|
|
|
*
|
|
|
|
* The form of the representation may change at any time and is
|
|
|
|
* not guranteed to stay identical.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_content_formats_print (GdkContentFormats *formats,
|
|
|
|
GString *string)
|
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
gsize i;
|
2017-11-18 04:53:25 +00:00
|
|
|
|
|
|
|
g_return_if_fail (formats != NULL);
|
|
|
|
g_return_if_fail (string != NULL);
|
|
|
|
|
|
|
|
g_string_append (string, "{ ");
|
2017-11-20 14:58:17 +00:00
|
|
|
for (i = 0; i < formats->n_gtypes; i++)
|
2017-11-18 04:53:25 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
if (i > 0)
|
2017-11-18 04:53:25 +00:00
|
|
|
g_string_append (string, ", ");
|
2017-11-20 14:58:17 +00:00
|
|
|
g_string_append (string, g_type_name (formats->gtypes[i]));
|
|
|
|
}
|
|
|
|
for (i = 0; i < formats->n_mime_types; i++)
|
|
|
|
{
|
|
|
|
if (i > 0 || formats->n_gtypes > 0)
|
|
|
|
g_string_append (string, ", ");
|
2017-11-20 03:42:43 +00:00
|
|
|
g_string_append (string, formats->mime_types[i]);
|
2017-11-18 04:53:25 +00:00
|
|
|
}
|
|
|
|
g_string_append (string, " }");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_to_string:
|
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
*
|
|
|
|
* Prints the given @formats into a human-readable string.
|
|
|
|
* This is a small wrapper around gdk_content_formats_print() to help
|
|
|
|
* when debugging.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new string
|
|
|
|
**/
|
|
|
|
char *
|
|
|
|
gdk_content_formats_to_string (GdkContentFormats *formats)
|
|
|
|
{
|
|
|
|
GString *string;
|
|
|
|
|
|
|
|
g_return_val_if_fail (formats != NULL, NULL);
|
|
|
|
|
|
|
|
string = g_string_new (NULL);
|
|
|
|
gdk_content_formats_print (formats, string);
|
|
|
|
|
|
|
|
return g_string_free (string, FALSE);
|
|
|
|
}
|
|
|
|
|
2017-11-17 16:31:59 +00:00
|
|
|
/**
|
2017-11-18 01:19:53 +00:00
|
|
|
* gdk_content_formats_union:
|
2017-11-20 02:54:42 +00:00
|
|
|
* @first: (transfer full): the #GdkContentFormats to merge into
|
|
|
|
* @second: (transfer none): the #GdkContentFormats to merge from
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Append all missing types from @second to @first, in the order
|
|
|
|
* they had in @second.
|
2017-11-20 02:54:42 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GdkContentFormats
|
2017-11-17 16:31:59 +00:00
|
|
|
*/
|
2017-11-20 02:54:42 +00:00
|
|
|
GdkContentFormats *
|
2017-11-18 01:19:53 +00:00
|
|
|
gdk_content_formats_union (GdkContentFormats *first,
|
|
|
|
const GdkContentFormats *second)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-20 02:54:42 +00:00
|
|
|
GdkContentFormatsBuilder *builder;
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 02:54:42 +00:00
|
|
|
g_return_val_if_fail (first != NULL, NULL);
|
|
|
|
g_return_val_if_fail (second != NULL, NULL);
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 02:54:42 +00:00
|
|
|
builder = gdk_content_formats_builder_new ();
|
|
|
|
|
|
|
|
gdk_content_formats_builder_add_formats (builder, first);
|
|
|
|
gdk_content_formats_unref (first);
|
|
|
|
gdk_content_formats_builder_add_formats (builder, second);
|
|
|
|
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
return gdk_content_formats_builder_free_to_formats (builder);
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_content_formats_contain_interned_mime_type (const GdkContentFormats *formats,
|
|
|
|
const char *mime_type)
|
|
|
|
{
|
|
|
|
gsize i;
|
|
|
|
|
|
|
|
for (i = 0; i < formats->n_mime_types; i++)
|
|
|
|
{
|
|
|
|
if (mime_type == formats->mime_types[i])
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2017-11-17 16:31:59 +00:00
|
|
|
/**
|
2017-11-20 03:42:43 +00:00
|
|
|
* gdk_content_formats_match:
|
2017-11-18 01:19:53 +00:00
|
|
|
* @first: the primary #GdkContentFormats to intersect
|
|
|
|
* @second: the #GdkContentFormats to intersect with
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-24 10:34:19 +00:00
|
|
|
* Checks if @first and @second have any matching formats.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-20 14:58:17 +00:00
|
|
|
* Returns: %TRUE if a matching format was found.
|
2017-11-17 16:31:59 +00:00
|
|
|
*/
|
2017-11-20 14:58:17 +00:00
|
|
|
gboolean
|
2017-11-20 03:42:43 +00:00
|
|
|
gdk_content_formats_match (const GdkContentFormats *first,
|
2017-11-24 10:34:19 +00:00
|
|
|
const GdkContentFormats *second)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (first != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (second != NULL, FALSE);
|
|
|
|
|
|
|
|
return gdk_content_formats_match_gtype (first, second) != G_TYPE_INVALID
|
|
|
|
|| gdk_content_formats_match_mime_type (first, second) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_match_gtype:
|
|
|
|
* @first: the primary #GdkContentFormats to intersect
|
|
|
|
* @second: the #GdkContentFormats to intersect with
|
|
|
|
*
|
|
|
|
* Finds the first #GType from @first that is also contained
|
|
|
|
* in @second. If no matching #GType is found, %G_TYPE_INVALID
|
|
|
|
* is returned.
|
|
|
|
*
|
|
|
|
* Returns: The first common #GType or %G_TYPE_INVALID if none.
|
|
|
|
**/
|
|
|
|
GType
|
|
|
|
gdk_content_formats_match_gtype (const GdkContentFormats *first,
|
|
|
|
const GdkContentFormats *second)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
gsize i;
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
g_return_val_if_fail (first != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (second != NULL, FALSE);
|
|
|
|
|
|
|
|
for (i = 0; i < first->n_gtypes; i++)
|
|
|
|
{
|
|
|
|
if (gdk_content_formats_contain_gtype (second, first->gtypes[i]))
|
2017-11-24 10:34:19 +00:00
|
|
|
return first->gtypes[i];
|
2017-11-20 14:58:17 +00:00
|
|
|
}
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-24 10:34:19 +00:00
|
|
|
return G_TYPE_INVALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_match_mime_type:
|
|
|
|
* @first: the primary #GdkContentFormats to intersect
|
|
|
|
* @second: the #GdkContentFormats to intersect with
|
|
|
|
*
|
|
|
|
* Finds the first mime type from @first that is also contained
|
|
|
|
* in @second. If no matching mime type is found, %NULL is
|
|
|
|
* returned.
|
|
|
|
*
|
|
|
|
* Returns: The first common mime type or %NULL if none.
|
|
|
|
**/
|
|
|
|
const char *
|
|
|
|
gdk_content_formats_match_mime_type (const GdkContentFormats *first,
|
|
|
|
const GdkContentFormats *second)
|
|
|
|
{
|
|
|
|
gsize i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (first != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (second != NULL, FALSE);
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
for (i = 0; i < first->n_mime_types; i++)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
if (gdk_content_formats_contain_interned_mime_type (second, first->mime_types[i]))
|
2017-11-24 10:34:19 +00:00
|
|
|
return first->mime_types[i];
|
2017-11-20 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
2017-11-24 10:34:19 +00:00
|
|
|
return NULL;
|
2017-11-20 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_contain_gtype:
|
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
* @type: the #GType to search for
|
|
|
|
*
|
|
|
|
* Checks if a given #GType is part of the given @formats.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the #GType was found
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_content_formats_contain_gtype (const GdkContentFormats *formats,
|
|
|
|
GType type)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (formats != NULL, FALSE);
|
|
|
|
|
|
|
|
gsize i;
|
|
|
|
|
|
|
|
for (i = 0; i < formats->n_gtypes; i++)
|
|
|
|
{
|
|
|
|
if (type == formats->gtypes[i])
|
|
|
|
return TRUE;
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
return FALSE;
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-20 03:42:43 +00:00
|
|
|
* gdk_content_formats_contain_mime_type:
|
2017-11-18 01:19:53 +00:00
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
* @mime_type: the mime type to search for
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-18 01:19:53 +00:00
|
|
|
* Checks if a given mime type is part of the given @formats.
|
2017-11-17 16:31:59 +00:00
|
|
|
*
|
2017-11-20 14:58:17 +00:00
|
|
|
* Returns: %TRUE if the mime_type was found
|
2017-11-17 16:31:59 +00:00
|
|
|
**/
|
|
|
|
gboolean
|
2017-11-20 03:42:43 +00:00
|
|
|
gdk_content_formats_contain_mime_type (const GdkContentFormats *formats,
|
|
|
|
const char *mime_type)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-18 01:19:53 +00:00
|
|
|
g_return_val_if_fail (formats != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (mime_type != NULL, FALSE);
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
return gdk_content_formats_contain_interned_mime_type (formats,
|
|
|
|
g_intern_string (mime_type));
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
/**
|
|
|
|
* gdk_content_formats_get_gtypes:
|
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
* @n_gtypes: (out) (allow-none): optional pointer to take the
|
|
|
|
* number of #GTypes contained in the return value
|
|
|
|
*
|
|
|
|
* Gets the #GTypes included in @formats. Note that @formats may not
|
|
|
|
* contain any #GTypes, in particular when they are empty. In that
|
|
|
|
* case %NULL will be returned.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (nullable): %G_TYPE_INVALID-terminated array of
|
|
|
|
* types included in @formats or %NULL if none.
|
|
|
|
**/
|
|
|
|
const GType *
|
|
|
|
gdk_content_formats_get_gtypes (GdkContentFormats *formats,
|
|
|
|
gsize *n_gtypes)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (formats != NULL, NULL);
|
|
|
|
|
|
|
|
if (n_gtypes)
|
|
|
|
*n_gtypes = formats->n_gtypes;
|
|
|
|
|
|
|
|
return formats->gtypes;
|
|
|
|
}
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
/**
|
|
|
|
* gdk_content_formats_get_mime_types:
|
|
|
|
* @formats: a #GdkContentFormats
|
|
|
|
* @n_mime_types: (out) (allow-none): optional pointer to take the
|
|
|
|
* number of mime types contained in the return value
|
|
|
|
*
|
|
|
|
* Gets the mime types included in @formats. Note that @formats may not
|
|
|
|
* contain any mime types, in particular when they are empty. In that
|
|
|
|
* case %NULL will be returned.
|
|
|
|
*
|
2017-11-20 14:58:17 +00:00
|
|
|
* Returns: (transfer none) (nullable): %NULL-terminated array of
|
|
|
|
* interned strings of mime types included in @formats or %NULL
|
|
|
|
* if none.
|
2017-11-20 03:42:43 +00:00
|
|
|
**/
|
|
|
|
const char * const *
|
|
|
|
gdk_content_formats_get_mime_types (GdkContentFormats *formats,
|
|
|
|
gsize *n_mime_types)
|
2017-11-17 16:31:59 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
g_return_val_if_fail (formats != NULL, NULL);
|
2017-11-17 16:31:59 +00:00
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
if (n_mime_types)
|
|
|
|
*n_mime_types = formats->n_mime_types;
|
|
|
|
|
|
|
|
return formats->mime_types;
|
2017-11-17 16:31:59 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 01:47:45 +00:00
|
|
|
/**
|
|
|
|
* GdkContentFormatsBuilder:
|
|
|
|
*
|
|
|
|
* A #GdkContentFormatsBuilder struct is an opaque struct. It is meant to
|
|
|
|
* not be kept around and only be used to create new #GdkContentFormats
|
|
|
|
* objects.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct _GdkContentFormatsBuilder
|
|
|
|
{
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
int ref_count;
|
|
|
|
|
|
|
|
/* (element-type GType) */
|
2017-11-20 14:58:17 +00:00
|
|
|
GSList *gtypes;
|
|
|
|
gsize n_gtypes;
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
|
|
|
|
/* (element-type utf8) (interned) */
|
2017-11-20 01:47:45 +00:00
|
|
|
GSList *mime_types;
|
|
|
|
gsize n_mime_types;
|
|
|
|
};
|
|
|
|
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
G_DEFINE_BOXED_TYPE (GdkContentFormatsBuilder,
|
|
|
|
gdk_content_formats_builder,
|
|
|
|
gdk_content_formats_builder_ref,
|
|
|
|
gdk_content_formats_builder_unref)
|
|
|
|
|
2017-11-20 01:47:45 +00:00
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_new:
|
|
|
|
*
|
|
|
|
* Create a new #GdkContentFormatsBuilder object. The resulting builder
|
|
|
|
* would create an empty #GdkContentFormats. Use addition functions to add
|
|
|
|
* types to it.
|
|
|
|
*
|
|
|
|
* Returns: a new #GdkContentFormatsBuilder
|
|
|
|
**/
|
|
|
|
GdkContentFormatsBuilder *
|
|
|
|
gdk_content_formats_builder_new (void)
|
|
|
|
{
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
GdkContentFormatsBuilder *builder;
|
|
|
|
|
|
|
|
builder = g_slice_new0 (GdkContentFormatsBuilder);
|
|
|
|
builder->ref_count = 1;
|
|
|
|
|
|
|
|
return builder;
|
2017-11-20 01:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
* gdk_content_formats_builder_ref:
|
2017-11-20 01:47:45 +00:00
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
*
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
* Acquires a reference on the given @builder.
|
2017-11-20 01:47:45 +00:00
|
|
|
*
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
* This function is intended primarily for bindings. #GdkContentFormatsBuilder objects
|
|
|
|
* should not be kept around.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): the given #GdkContentFormatsBuilder with
|
|
|
|
* its reference count increased
|
|
|
|
*/
|
|
|
|
GdkContentFormatsBuilder *
|
|
|
|
gdk_content_formats_builder_ref (GdkContentFormatsBuilder *builder)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (builder != NULL, NULL);
|
|
|
|
g_return_val_if_fail (builder->ref_count > 0, NULL);
|
|
|
|
|
|
|
|
builder->ref_count += 1;
|
|
|
|
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_content_formats_builder_clear (GdkContentFormatsBuilder *builder)
|
|
|
|
{
|
|
|
|
g_clear_pointer (&builder->gtypes, g_slist_free);
|
|
|
|
g_clear_pointer (&builder->mime_types, g_slist_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_unref:
|
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
*
|
|
|
|
* Releases a reference on the given @builder.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_content_formats_builder_unref (GdkContentFormatsBuilder *builder)
|
|
|
|
{
|
|
|
|
g_return_if_fail (builder != NULL);
|
|
|
|
g_return_if_fail (builder->ref_count > 0);
|
|
|
|
|
|
|
|
builder->ref_count -= 1;
|
|
|
|
|
|
|
|
if (builder->ref_count > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gdk_content_formats_builder_clear (builder);
|
|
|
|
g_slice_free (GdkContentFormatsBuilder, builder);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_free_to_formats: (skip)
|
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
*
|
|
|
|
* Creates a new #GdkContentFormats from the current state of the
|
|
|
|
* given @builder, and frees the @builder instance.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the newly created #GdkContentFormats
|
|
|
|
* with all the formats added to @builder
|
|
|
|
*/
|
2017-11-20 01:47:45 +00:00
|
|
|
GdkContentFormats *
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
gdk_content_formats_builder_free_to_formats (GdkContentFormatsBuilder *builder)
|
|
|
|
{
|
|
|
|
GdkContentFormats *res;
|
|
|
|
|
|
|
|
g_return_val_if_fail (builder != NULL, NULL);
|
|
|
|
|
|
|
|
res = gdk_content_formats_builder_to_formats (builder);
|
|
|
|
|
|
|
|
gdk_content_formats_builder_unref (builder);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_to_formats:
|
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
*
|
|
|
|
* Creates a new #GdkContentFormats from the given @builder.
|
|
|
|
*
|
|
|
|
* The given #GdkContentFormatsBuilder is reset once this function returns;
|
|
|
|
* you cannot call this function multiple times on the same @builder instance.
|
|
|
|
*
|
|
|
|
* This function is intended primarily for bindings. C code should use
|
|
|
|
* gdk_content_formats_builder_free_to_formats().
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the newly created #GdkContentFormats
|
|
|
|
* with all the formats added to @builder
|
|
|
|
*/
|
|
|
|
GdkContentFormats *
|
|
|
|
gdk_content_formats_builder_to_formats (GdkContentFormatsBuilder *builder)
|
2017-11-20 01:47:45 +00:00
|
|
|
{
|
|
|
|
GdkContentFormats *result;
|
2017-11-20 14:58:17 +00:00
|
|
|
GType *gtypes;
|
2017-11-20 01:47:45 +00:00
|
|
|
const char **mime_types;
|
|
|
|
GSList *l;
|
|
|
|
gsize i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (builder != NULL, NULL);
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
gtypes = g_new (GType, builder->n_gtypes + 1);
|
|
|
|
i = builder->n_gtypes;
|
|
|
|
gtypes[i--] = G_TYPE_INVALID;
|
|
|
|
/* add backwards because most important type is last in the list */
|
|
|
|
for (l = builder->gtypes; l; l = l->next)
|
|
|
|
gtypes[i--] = GPOINTER_TO_SIZE (l->data);
|
|
|
|
|
2017-11-20 01:47:45 +00:00
|
|
|
mime_types = g_new (const char *, builder->n_mime_types + 1);
|
|
|
|
i = builder->n_mime_types;
|
|
|
|
mime_types[i--] = NULL;
|
|
|
|
/* add backwards because most important type is last in the list */
|
|
|
|
for (l = builder->mime_types; l; l = l->next)
|
|
|
|
mime_types[i--] = l->data;
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
result = gdk_content_formats_new_take (gtypes, builder->n_gtypes,
|
|
|
|
mime_types, builder->n_mime_types);
|
2017-11-20 03:42:43 +00:00
|
|
|
|
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/
2018-02-01 16:43:15 +00:00
|
|
|
gdk_content_formats_builder_clear (builder);
|
2017-11-20 01:47:45 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_add_formats:
|
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
* @formats: the formats to add
|
|
|
|
*
|
|
|
|
* Appends all formats from @formats to @builder, skipping those that
|
|
|
|
* already exist.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_content_formats_builder_add_formats (GdkContentFormatsBuilder *builder,
|
2017-11-20 02:54:42 +00:00
|
|
|
const GdkContentFormats *formats)
|
2017-11-20 01:47:45 +00:00
|
|
|
{
|
2017-11-20 03:42:43 +00:00
|
|
|
gsize i;
|
2017-11-20 01:47:45 +00:00
|
|
|
|
|
|
|
g_return_if_fail (builder != NULL);
|
|
|
|
g_return_if_fail (formats != NULL);
|
|
|
|
|
2017-11-20 14:58:17 +00:00
|
|
|
for (i = 0; i < formats->n_gtypes; i++)
|
|
|
|
gdk_content_formats_builder_add_gtype (builder, formats->gtypes[i]);
|
|
|
|
|
2017-11-20 03:42:43 +00:00
|
|
|
for (i = 0; i < formats->n_mime_types; i++)
|
|
|
|
gdk_content_formats_builder_add_mime_type (builder, formats->mime_types[i]);
|
2017-11-20 01:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-20 14:58:17 +00:00
|
|
|
* gdk_content_formats_builder_add_gtype:
|
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
* @type: a #GType
|
|
|
|
*
|
|
|
|
* Appends @gtype to @builder if it has not already been added.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_content_formats_builder_add_gtype (GdkContentFormatsBuilder *builder,
|
|
|
|
GType type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (builder != NULL);
|
2017-11-24 10:34:19 +00:00
|
|
|
g_return_if_fail (type != G_TYPE_INVALID);
|
2017-11-20 14:58:17 +00:00
|
|
|
|
|
|
|
if (g_slist_find (builder->gtypes, GSIZE_TO_POINTER (type)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
builder->gtypes = g_slist_prepend (builder->gtypes, GSIZE_TO_POINTER (type));
|
|
|
|
builder->n_gtypes++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_content_formats_builder_add_mime_type:
|
2017-11-20 01:47:45 +00:00
|
|
|
* @builder: a #GdkContentFormatsBuilder
|
|
|
|
* @mime_type: a mime type
|
|
|
|
*
|
|
|
|
* Appends @mime_type to @builder if it has not already been added.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_content_formats_builder_add_mime_type (GdkContentFormatsBuilder *builder,
|
|
|
|
const char *mime_type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (builder != NULL);
|
|
|
|
g_return_if_fail (mime_type != NULL);
|
|
|
|
|
|
|
|
mime_type = g_intern_string (mime_type);
|
|
|
|
|
|
|
|
if (g_slist_find (builder->mime_types, mime_type))
|
|
|
|
return;
|
|
|
|
|
|
|
|
builder->mime_types = g_slist_prepend (builder->mime_types, (gpointer) mime_type);
|
|
|
|
builder->n_mime_types++;
|
|
|
|
}
|
|
|
|
|
2017-11-29 08:37:50 +00:00
|
|
|
/* G_DEFINE_BOXED wants this */
|
|
|
|
typedef gpointer GdkFileList;
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
gdk_file_list_copy (gpointer list)
|
|
|
|
{
|
|
|
|
return g_slist_copy_deep (list, (GCopyFunc) g_object_ref, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_file_list_free (gpointer list)
|
|
|
|
{
|
|
|
|
g_slist_free_full (list, g_object_unref);
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_BOXED_TYPE (GdkFileList, gdk_file_list, gdk_file_list_copy, gdk_file_list_free)
|