diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-05-28 23:55:53 -0400 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2017-12-03 05:43:24 +0100 |
commit | e94b9b9a62571e3fde676b4a4cba8fbaf2219609 (patch) | |
tree | 2a69cd9cfcde30b228b1d7da51496db9909e7e9d /gdk/gdkclipboard.h | |
parent | 174a36257f1118a631a79e53ac295af576203ec0 (diff) | |
download | gtk+-e94b9b9a62571e3fde676b4a4cba8fbaf2219609.tar.gz |
gdk: A GdkClipboard API draft
This commit adds a GdkClipboard object which is intended to
replace GtkClipboard, eventually.
Diffstat (limited to 'gdk/gdkclipboard.h')
-rw-r--r-- | gdk/gdkclipboard.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gdk/gdkclipboard.h b/gdk/gdkclipboard.h new file mode 100644 index 0000000000..08943e55e6 --- /dev/null +++ b/gdk/gdkclipboard.h @@ -0,0 +1,48 @@ +/* GDK - The GIMP Drawing Kit + * + * Copyright (C) 2017 Benjamin Otte <otte@gnome.org> + * + * 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 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * 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/>. + */ + +#ifndef __GDK_CLIPBOARD_H__ +#define __GDK_CLIPBOARD_H__ + +#if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION) +#error "Only <gdk/gdk.h> can be included directly." +#endif + +#include <gdk/gdkversionmacros.h> +#include <gdk/gdktypes.h> +#include <gdk-pixbuf/gdk-pixbuf.h> + + +G_BEGIN_DECLS + +#define GDK_TYPE_CLIPBOARD (gdk_clipboard_get_type ()) +#define GDK_CLIPBOARD(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDK_TYPE_CLIPBOARD, GdkClipboard)) +#define GDK_IS_CLIPBOARD(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDK_TYPE_CLIPBOARD)) + +GDK_AVAILABLE_IN_3_94 +GType gdk_clipboard_get_type (void) G_GNUC_CONST; + +GDK_AVAILABLE_IN_3_94 +GdkDisplay * gdk_clipboard_get_display (GdkClipboard *clipboard); +GDK_AVAILABLE_IN_3_94 +GdkContentFormats * gdk_clipboard_get_formats (GdkClipboard *clipboard); + + +G_END_DECLS + +#endif /* __GDK_CLIPBOARD_H__ */ |