summaryrefslogtreecommitdiff
path: root/gtk/gtkdndprivate.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-05-16 17:54:01 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-05-16 17:54:01 -0400
commit0a5e216d421e98ca926e14bacede84d929745c53 (patch)
tree13bccceab3922e9620eb0c6a405671937f51aeb8 /gtk/gtkdndprivate.h
parent987da43e71bc2781bfd65534a68d9855a7dfa4c7 (diff)
downloadgtk+-0a5e216d421e98ca926e14bacede84d929745c53.tar.gz
DND: Move private api to a private header
Diffstat (limited to 'gtk/gtkdndprivate.h')
-rw-r--r--gtk/gtkdndprivate.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/gtk/gtkdndprivate.h b/gtk/gtkdndprivate.h
new file mode 100644
index 0000000000..f3eee94034
--- /dev/null
+++ b/gtk/gtkdndprivate.h
@@ -0,0 +1,36 @@
+/* -*- Mode: C; c-file-style: "gnu"; tab-width: 8 -*- */
+/* GTK - The GIMP Toolkit
+ * Copyright (C) 2015 Red Hat, Inc.
+ *
+ * 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 __GTK_DND_PRIVATE_H__
+#define __GTK_DND_PRIVATE_H__
+
+
+#include <gtk/gtkwidget.h>
+#include <gtk/gtkselection.h>
+
+
+G_BEGIN_DECLS
+
+void _gtk_drag_source_handle_event (GtkWidget *widget,
+ GdkEvent *event);
+void _gtk_drag_dest_handle_event (GtkWidget *toplevel,
+ GdkEvent *event);
+
+G_END_DECLS
+
+#endif /* __GTK_DND_PRIVATE_H__ */