diff options
author | Benjamin Otte <otte@redhat.com> | 2017-11-18 05:53:25 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-11-20 23:12:33 +0100 |
commit | d6a209816bacff89e361a580b24e847dca0bdef5 (patch) | |
tree | a95d06515b9513c6d7f2110ddedda19badf26a2b /gdk/gdkcontentformats.h | |
parent | 9a6ec4e9591df1a8ed72bbf8793091a1f325b5ff (diff) | |
download | gtk+-d6a209816bacff89e361a580b24e847dca0bdef5.tar.gz |
gdkdnd: Make GdkDragContext->formats a GdkContentFormats
Instead of it being a GList of GdkAtoms.
Diffstat (limited to 'gdk/gdkcontentformats.h')
-rw-r--r-- | gdk/gdkcontentformats.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdk/gdkcontentformats.h b/gdk/gdkcontentformats.h index 8859658bfb..f73c5b4688 100644 --- a/gdk/gdkcontentformats.h +++ b/gdk/gdkcontentformats.h @@ -41,6 +41,12 @@ GDK_AVAILABLE_IN_3_94 void gdk_content_formats_unref (GdkContentFormats *formats); GDK_AVAILABLE_IN_3_94 +void gdk_content_formats_print (GdkContentFormats *formats, + GString *string); +GDK_AVAILABLE_IN_3_94 +char * gdk_content_formats_to_string (GdkContentFormats *formats); + +GDK_AVAILABLE_IN_3_94 void gdk_content_formats_union (GdkContentFormats *first, const GdkContentFormats *second); GDK_AVAILABLE_IN_3_94 @@ -50,9 +56,6 @@ GDK_AVAILABLE_IN_3_94 void gdk_content_formats_add (GdkContentFormats *formats, const char *mime_type); GDK_AVAILABLE_IN_3_94 -void gdk_content_formats_remove (GdkContentFormats *formats, - const char *mime_type); -GDK_AVAILABLE_IN_3_94 gboolean gdk_content_formats_contains (const GdkContentFormats *formats, const char *mime_type); |