[gtk/dnd-gestures-2: 97/100] Make GtkDragIcon public
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/dnd-gestures-2: 97/100] Make GtkDragIcon public
- Date: Mon, 6 Jan 2020 21:22:15 +0000 (UTC)
commit c6fd83a58a7166bf557745eab5b2db3da89ec6fd
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Jan 6 15:47:25 2020 -0500
Make GtkDragIcon public
This is needed if we want to use gdk_drag_begin
for one-off drags, without a GtkDragSource.
gtk/gtk.h | 1 +
gtk/gtkdragicon.c | 15 +++++++++++++++
gtk/gtkdragicon.h | 44 ++++++++++++++++++++++++++++++++++++++++++++
gtk/gtkdragiconprivate.h | 6 +-----
4 files changed, 61 insertions(+), 5 deletions(-)
---
diff --git a/gtk/gtk.h b/gtk/gtk.h
index bc401dce40..f6f2030833 100644
--- a/gtk/gtk.h
+++ b/gtk/gtk.h
@@ -91,6 +91,7 @@
#include <gtk/gtkdebug.h>
#include <gtk/gtkdialog.h>
#include <gtk/gtkdragdest.h>
+#include <gtk/gtkdragicon.h>
#include <gtk/gtkdragsource.h>
#include <gtk/gtkdrawingarea.h>
#include <gtk/gtkeditable.h>
diff --git a/gtk/gtkdragicon.c b/gtk/gtkdragicon.c
index 8b6edbbf97..723de3b6ab 100644
--- a/gtk/gtkdragicon.c
+++ b/gtk/gtkdragicon.c
@@ -23,6 +23,7 @@
#include "gtkintl.h"
#include "gtkwidgetprivate.h"
#include "gtkcssnodeprivate.h"
+#include "gtknativeprivate.h"
struct _GtkDragIcon
@@ -374,6 +375,20 @@ gtk_drag_icon_new (void)
return g_object_new (GTK_TYPE_DRAG_ICON, NULL);
}
+GtkWidget *
+gtk_drag_icon_new_for_drag (GdkDrag *drag)
+{
+ GtkWidget *icon;
+
+ g_return_val_if_fail (GDK_IS_DRAG (drag), NULL);
+
+ icon = g_object_new (GTK_TYPE_DRAG_ICON, NULL);
+
+ gtk_drag_icon_set_surface (GTK_DRAG_ICON (icon), gdk_drag_get_drag_surface (drag));
+
+ return icon;
+}
+
void
gtk_drag_icon_set_surface (GtkDragIcon *icon,
GdkSurface *surface)
diff --git a/gtk/gtkdragicon.h b/gtk/gtkdragicon.h
new file mode 100644
index 0000000000..bff181d2c5
--- /dev/null
+++ b/gtk/gtkdragicon.h
@@ -0,0 +1,44 @@
+/*
+ * Copyright © 2020 Matthias Clasen
+ *
+ * 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.1 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/>.
+ *
+ * Authors: Benjamin Otte <otte gnome org>
+ */
+
+#ifndef __GTK_DRAG_ICON_H__
+#define __GTK_DRAG_ICON_H__
+
+
+#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#error "Only <gtk/gtk.h> can be included directly."
+#endif
+
+#include <gio/gio.h>
+#include <gtk/gtkwidget.h>
+#include <gtk/gtkcontainer.h>
+
+
+G_BEGIN_DECLS
+
+#define GTK_TYPE_DRAG_ICON (gtk_drag_icon_get_type ())
+
+G_DECLARE_FINAL_TYPE (GtkDragIcon, gtk_drag_icon, GTK, DRAG_ICON, GtkContainer)
+
+GtkWidget * gtk_drag_icon_new_for_drag (GdkDrag *drag);
+
+G_END_DECLS
+
+
+#endif /* __GTK_DRAG_ICON_H__ */
diff --git a/gtk/gtkdragiconprivate.h b/gtk/gtkdragiconprivate.h
index 507ac908ea..c0fd36a672 100644
--- a/gtk/gtkdragiconprivate.h
+++ b/gtk/gtkdragiconprivate.h
@@ -26,14 +26,10 @@
#define __GTK_DRAG_ICON_PRIVATE_H__
#include <gio/gio.h>
-#include <gtk/gtk.h>
+#include <gtk/gtkdragicon.h>
G_BEGIN_DECLS
-#define GTK_TYPE_DRAG_ICON (gtk_drag_icon_get_type ())
-
-G_DECLARE_FINAL_TYPE (GtkDragIcon, gtk_drag_icon, GTK, DRAG_ICON, GtkContainer)
-
GtkWidget * gtk_drag_icon_new (void);
void gtk_drag_icon_set_surface (GtkDragIcon *icon,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]