Make GtkDragIcon public
authorMatthias Clasen <mclasen@redhat.com>
Mon, 6 Jan 2020 20:47:25 +0000 (15:47 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 8 Jan 2020 23:48:21 +0000 (18:48 -0500)
This is needed if we want to use gdk_drag_begin
for one-off drags, without a GtkDragSource.

gtk/gtk.h
gtk/gtkdragicon.c
gtk/gtkdragicon.h [new file with mode: 0644]
gtk/gtkdragiconprivate.h

index bc401dce40525f62f2c65e878dc8f49b498c509d..f6f2030833957d8e67a0afd1aa08abe8d8aa76f6 100644 (file)
--- 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>
index 8b6edbbf9730560e1d5deb34d920b6a074e2aa83..48ac83d3a195f5769e39ee0f69fa6c44bbd1e48d 100644 (file)
@@ -23,6 +23,8 @@
 #include "gtkintl.h"
 #include "gtkwidgetprivate.h"
 #include "gtkcssnodeprivate.h"
+#include "gtknativeprivate.h"
+#include "gtkpicture.h"
 
 
 struct _GtkDragIcon
@@ -374,6 +376,44 @@ 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_from_paintable (GdkDrag      *drag,
+                                  GdkPaintable *paintable,
+                                  int           hot_x,
+                                  int           hot_y)
+{
+  GtkWidget *icon;
+  GtkWidget *picture;
+
+  gdk_drag_set_hotspot (drag, hot_x, hot_y);
+
+  icon = gtk_drag_icon_new_for_drag (drag);
+
+  picture = gtk_picture_new_for_paintable (paintable);
+  gtk_picture_set_can_shrink (GTK_PICTURE (picture), FALSE);
+  gtk_container_add (GTK_CONTAINER (icon), picture);
+
+  g_object_set_data_full (G_OBJECT (drag),
+                          "icon",
+                          g_object_ref_sink (icon),
+                          (GDestroyNotify)gtk_widget_destroy);
+  gtk_widget_show (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 (file)
index 0000000..416dcd1
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * 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)
+
+GDK_AVAILABLE_IN_ALL
+GtkWidget *     gtk_drag_icon_new_for_drag (GdkDrag *drag);
+GDK_AVAILABLE_IN_ALL
+void            gtk_drag_icon_set_from_paintable (GdkDrag      *drag,
+                                                  GdkPaintable *paintable,
+                                                  int           hot_x,
+                                                  int           hot_y);
+
+G_END_DECLS
+
+
+#endif /* __GTK_DRAG_ICON_H__ */
index 507ac908ea84366e398b0efb734cd326c8a3321a..c0fd36a672833a969ecbcfbbff4ae2627f6efc94 100644 (file)
 #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,