]> Pileus Git - ~andy/gtk/blob - gtk/gtkdnd-quartz.c
Bug 653450 - gtkfilechooser crashes when added favorite
[~andy/gtk] / gtk / gtkdnd-quartz.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1999 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include "gdk/gdk.h"
33
34 #include "gtkdnd.h"
35 #include "gtkiconfactory.h"
36 #include "gtkicontheme.h"
37 #include "gtkimageprivate.h"
38 #include "gtkinvisible.h"
39 #include "gtkmain.h"
40 #include "gtkplug.h"
41 #include "gtkstock.h"
42 #include "gtkwindow.h"
43 #include "gtkintl.h"
44 #include "gtkquartz.h"
45 #include "gdk/quartz/gdkquartz.h"
46 #include "gtkselectionprivate.h"
47
48 typedef struct _GtkDragSourceSite GtkDragSourceSite;
49 typedef struct _GtkDragSourceInfo GtkDragSourceInfo;
50 typedef struct _GtkDragDestSite GtkDragDestSite;
51 typedef struct _GtkDragDestInfo GtkDragDestInfo;
52 typedef struct _GtkDragFindData GtkDragFindData;
53
54 static void     gtk_drag_find_widget            (GtkWidget        *widget,
55                                                  GtkDragFindData  *data);
56 static void     gtk_drag_dest_site_destroy      (gpointer          data);
57 static void     gtk_drag_dest_leave             (GtkWidget        *widget,
58                                                  GdkDragContext   *context,
59                                                  guint             time);
60 static GtkDragDestInfo *gtk_drag_get_dest_info  (GdkDragContext   *context,
61                                                  gboolean          create);
62 static void gtk_drag_source_site_destroy        (gpointer           data);
63
64 static GtkDragSourceInfo *gtk_drag_get_source_info (GdkDragContext *context,
65                                                     gboolean        create);
66
67 extern GdkDragContext *gdk_quartz_drag_source_context (); /* gdk/quartz/gdkdnd-quartz.c */
68
69 struct _GtkDragSourceSite 
70 {
71   GdkModifierType    start_button_mask;
72   GtkTargetList     *target_list;        /* Targets for drag data */
73   GdkDragAction      actions;            /* Possible actions */
74
75   /* Drag icon */
76   GtkImageType icon_type;
77   union
78   {
79     GtkImagePixbufData pixbuf;
80     GtkImageStockData stock;
81     GtkImageIconNameData name;
82   } icon_data;
83
84   /* Stored button press information to detect drag beginning */
85   gint               state;
86   gint               x, y;
87 };
88
89 struct _GtkDragSourceInfo 
90 {
91   GtkWidget         *source_widget;
92   GtkWidget         *widget;
93   GtkTargetList     *target_list; /* Targets for drag data */
94   GdkDragAction      possible_actions; /* Actions allowed by source */
95   GdkDragContext    *context;     /* drag context */
96   NSEvent           *nsevent;     /* what started it */
97   gint hot_x, hot_y;              /* Hot spot for drag */
98   GdkPixbuf         *icon_pixbuf;
99   gboolean           success;
100   gboolean           delete;
101 };
102
103 struct _GtkDragDestSite 
104 {
105   GtkDestDefaults    flags;
106   GtkTargetList     *target_list;
107   GdkDragAction      actions;
108   guint              have_drag : 1;
109   guint              track_motion : 1;
110 };
111
112 struct _GtkDragDestInfo 
113 {
114   GtkWidget         *widget;       /* Widget in which drag is in */
115   GdkDragContext    *context;      /* Drag context */
116   guint              dropped : 1;     /* Set after we receive a drop */
117   gint               drop_x, drop_y; /* Position of drop */
118 };
119
120 struct _GtkDragFindData 
121 {
122   gint x;
123   gint y;
124   GdkDragContext *context;
125   GtkDragDestInfo *info;
126   gboolean found;
127   gboolean toplevel;
128   gboolean (*callback) (GtkWidget *widget, GdkDragContext *context,
129                         gint x, gint y, guint32 time);
130   guint32 time;
131 };
132
133
134 @interface GtkDragSourceOwner : NSObject {
135   GtkDragSourceInfo *info;
136 }
137
138 @end
139
140 @implementation GtkDragSourceOwner
141 -(void)pasteboard:(NSPasteboard *)sender provideDataForType:(NSString *)type
142 {
143   guint target_info;
144   GtkSelectionData selection_data;
145
146   selection_data.selection = GDK_NONE;
147   selection_data.data = NULL;
148   selection_data.length = -1;
149   selection_data.target = _gtk_quartz_pasteboard_type_to_atom (type);
150   selection_data.display = gdk_display_get_default ();
151
152   if (gtk_target_list_find (info->target_list, 
153                             selection_data.target, 
154                             &target_info)) 
155     {
156       g_signal_emit_by_name (info->widget, "drag-data-get",
157                              info->context,
158                              &selection_data,
159                              target_info,
160                              time);
161
162       if (selection_data.length >= 0)
163         _gtk_quartz_set_selection_data_for_pasteboard (sender, &selection_data);
164       
165       g_free (selection_data.data);
166     }
167 }
168
169 - (id)initWithInfo:(GtkDragSourceInfo *)anInfo
170 {
171   self = [super init];
172
173   if (self) 
174     {
175       info = anInfo;
176     }
177
178   return self;
179 }
180
181 @end
182
183 void 
184 gtk_drag_get_data (GtkWidget      *widget,
185                    GdkDragContext *context,
186                    GdkAtom         target,
187                    guint32         time)
188 {
189   id <NSDraggingInfo> dragging_info;
190   NSPasteboard *pasteboard;
191   GtkSelectionData *selection_data;
192   GtkDragDestInfo *info;
193   GtkDragDestSite *site;
194
195   dragging_info = gdk_quartz_drag_context_get_dragging_info_libgtk_only (context);
196   pasteboard = [dragging_info draggingPasteboard];
197
198   info = gtk_drag_get_dest_info (context, FALSE);
199   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
200
201   selection_data = _gtk_quartz_get_selection_data_from_pasteboard (pasteboard,
202                                                                    target, 0);
203
204   if (site && site->target_list)
205     {
206       guint target_info;
207       
208       if (gtk_target_list_find (site->target_list, 
209                                 selection_data->target,
210                                 &target_info))
211         {
212           if (!(site->flags & GTK_DEST_DEFAULT_DROP) ||
213               selection_data->length >= 0)
214             g_signal_emit_by_name (widget,
215                                    "drag-data-received",
216                                    context, info->drop_x, info->drop_y,
217                                    selection_data,
218                                    target_info, time);
219         }
220     }
221   else
222     {
223       g_signal_emit_by_name (widget,
224                              "drag-data-received",
225                              context, info->drop_x, info->drop_y,
226                              selection_data,
227                              0, time);
228     }
229   
230   if (site && site->flags & GTK_DEST_DEFAULT_DROP)
231     {
232       gtk_drag_finish (context, 
233                        (selection_data->length >= 0),
234                        (gdk_drag_context_get_selected_action (context) == GDK_ACTION_MOVE),
235                        time);
236     }      
237 }
238
239 void 
240 gtk_drag_finish (GdkDragContext *context,
241                  gboolean        success,
242                  gboolean        del,
243                  guint32         time)
244 {
245   GtkDragSourceInfo *info;
246   GdkDragContext* source_context = gdk_quartz_drag_source_context ();
247
248   if (source_context)
249     {
250       info = gtk_drag_get_source_info (source_context, FALSE);
251       if (info)
252         {
253           info->success = success;
254           info->delete = del;
255         }
256     }
257 }
258
259 static void
260 gtk_drag_dest_info_destroy (gpointer data)
261 {
262   GtkDragDestInfo *info = data;
263
264   g_free (info);
265 }
266
267 static GtkDragDestInfo *
268 gtk_drag_get_dest_info (GdkDragContext *context,
269                         gboolean        create)
270 {
271   GtkDragDestInfo *info;
272   static GQuark info_quark = 0;
273   if (!info_quark)
274     info_quark = g_quark_from_static_string ("gtk-dest-info");
275   
276   info = g_object_get_qdata (G_OBJECT (context), info_quark);
277   if (!info && create)
278     {
279       info = g_new (GtkDragDestInfo, 1);
280       info->widget = NULL;
281       info->context = context;
282       info->dropped = FALSE;
283       g_object_set_qdata_full (G_OBJECT (context), info_quark,
284                                info, gtk_drag_dest_info_destroy);
285     }
286
287   return info;
288 }
289
290 static GQuark dest_info_quark = 0;
291
292 static GtkDragSourceInfo *
293 gtk_drag_get_source_info (GdkDragContext *context,
294                           gboolean        create)
295 {
296   GtkDragSourceInfo *info;
297
298   if (!dest_info_quark)
299     dest_info_quark = g_quark_from_static_string ("gtk-source-info");
300   
301   info = g_object_get_qdata (G_OBJECT (context), dest_info_quark);
302   if (!info && create)
303     {
304       info = g_new0 (GtkDragSourceInfo, 1);
305       info->context = context;
306       g_object_set_qdata (G_OBJECT (context), dest_info_quark, info);
307     }
308
309   return info;
310 }
311
312 static void
313 gtk_drag_clear_source_info (GdkDragContext *context)
314 {
315   g_object_set_qdata (G_OBJECT (context), dest_info_quark, NULL);
316 }
317
318 GtkWidget *
319 gtk_drag_get_source_widget (GdkDragContext *context)
320 {
321   GtkDragSourceInfo *info;
322   GdkDragContext* real_source_context = gdk_quartz_drag_source_context();
323
324   if (!real_source_context)
325     return NULL;
326
327   info = gtk_drag_get_source_info (real_source_context, FALSE);
328   if (!info)
329      return NULL;
330
331   return info->source_widget;
332 }
333
334 /*************************************************************
335  * gtk_drag_highlight_draw:
336  *     Callback for expose_event for highlighted widgets.
337  *   arguments:
338  *     widget:
339  *     event:
340  *     data:
341  *   results:
342  *************************************************************/
343
344 static gboolean
345 gtk_drag_highlight_draw (GtkWidget *widget,
346                          cairo_t   *cr,
347                          gpointer   data)
348 {
349   int width = gtk_widget_get_allocated_width (widget);
350   int height = gtk_widget_get_allocated_height (widget);
351   GtkStyleContext *context;
352
353   gtk_style_context_save (context);
354   gtk_style_context_add_class (context, GTK_STYLE_CLASS_DND);
355
356   gtk_render_frame (context, cr, 0, 0, width, height);
357
358   gtk_style_context_restore (context);
359
360   cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
361   cairo_set_line_width (cr, 1.0);
362   cairo_rectangle (cr,
363                    0.5, 0.5,
364                    width - 1, height - 1);
365   cairo_stroke (cr);
366  
367   return FALSE;
368 }
369
370 /*************************************************************
371  * gtk_drag_highlight:
372  *     Highlight the given widget in the default manner.
373  *   arguments:
374  *     widget:
375  *   results:
376  *************************************************************/
377
378 void 
379 gtk_drag_highlight (GtkWidget  *widget)
380 {
381   g_return_if_fail (GTK_IS_WIDGET (widget));
382
383   g_signal_connect_after (widget, "draw",
384                           G_CALLBACK (gtk_drag_highlight_draw),
385                           NULL);
386
387   gtk_widget_queue_draw (widget);
388 }
389
390 /*************************************************************
391  * gtk_drag_unhighlight:
392  *     Refresh the given widget to remove the highlight.
393  *   arguments:
394  *     widget:
395  *   results:
396  *************************************************************/
397
398 void 
399 gtk_drag_unhighlight (GtkWidget *widget)
400 {
401   g_return_if_fail (GTK_IS_WIDGET (widget));
402
403   g_signal_handlers_disconnect_by_func (widget,
404                                         gtk_drag_highlight_draw,
405                                         NULL);
406   
407   gtk_widget_queue_draw (widget);
408 }
409
410 static NSWindow *
411 get_toplevel_nswindow (GtkWidget *widget)
412 {
413   GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
414   GdkWindow *window = gtk_widget_get_window (toplevel);
415   
416   if (gtk_widget_is_toplevel (toplevel) && window)
417     return [gdk_quartz_window_get_nsview (window) window];
418   else
419     return NULL;
420 }
421
422 static void
423 register_types (GtkWidget *widget, GtkDragDestSite *site)
424 {
425   if (site->target_list)
426     {
427       NSWindow *nswindow = get_toplevel_nswindow (widget);
428       NSSet *types;
429       NSAutoreleasePool *pool;
430
431       if (!nswindow)
432         return;
433
434       pool = [[NSAutoreleasePool alloc] init];
435       types = _gtk_quartz_target_list_to_pasteboard_types (site->target_list);
436
437       [nswindow registerForDraggedTypes:[types allObjects]];
438
439       [types release];
440       [pool release];
441     }
442 }
443
444 static void
445 gtk_drag_dest_realized (GtkWidget *widget, 
446                         gpointer   user_data)
447 {
448   GtkDragDestSite *site = user_data;
449
450   register_types (widget, site);
451 }
452
453 static void
454 gtk_drag_dest_hierarchy_changed (GtkWidget *widget,
455                                  GtkWidget *previous_toplevel,
456                                  gpointer   user_data)
457 {
458   GtkDragDestSite *site = user_data;
459
460   register_types (widget, site);
461 }
462
463 static void
464 gtk_drag_dest_site_destroy (gpointer data)
465 {
466   GtkDragDestSite *site = data;
467     
468   if (site->target_list)
469     gtk_target_list_unref (site->target_list);
470
471   g_free (site);
472 }
473
474 void 
475 gtk_drag_dest_set (GtkWidget            *widget,
476                    GtkDestDefaults       flags,
477                    const GtkTargetEntry *targets,
478                    gint                  n_targets,
479                    GdkDragAction         actions)
480 {
481   GtkDragDestSite *old_site, *site;
482
483   g_return_if_fail (GTK_IS_WIDGET (widget));
484
485   old_site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
486
487   site = g_new (GtkDragDestSite, 1);
488   site->flags = flags;
489   site->have_drag = FALSE;
490   if (targets)
491     site->target_list = gtk_target_list_new (targets, n_targets);
492   else
493     site->target_list = NULL;
494   site->actions = actions;
495
496   if (old_site)
497     site->track_motion = old_site->track_motion;
498   else
499     site->track_motion = FALSE;
500
501   gtk_drag_dest_unset (widget);
502
503   if (gtk_widget_get_realized (widget))
504     gtk_drag_dest_realized (widget, site);
505
506   g_signal_connect (widget, "realize",
507                     G_CALLBACK (gtk_drag_dest_realized), site);
508   g_signal_connect (widget, "hierarchy-changed",
509                     G_CALLBACK (gtk_drag_dest_hierarchy_changed), site);
510
511   g_object_set_data_full (G_OBJECT (widget), I_("gtk-drag-dest"),
512                           site, gtk_drag_dest_site_destroy);
513 }
514
515 void 
516 gtk_drag_dest_set_proxy (GtkWidget      *widget,
517                          GdkWindow      *proxy_window,
518                          GdkDragProtocol protocol,
519                          gboolean        use_coordinates)
520 {
521   g_warning ("gtk_drag_dest_set_proxy is not supported on Mac OS X.");
522 }
523
524 void 
525 gtk_drag_dest_unset (GtkWidget *widget)
526 {
527   GtkDragDestSite *old_site;
528
529   g_return_if_fail (GTK_IS_WIDGET (widget));
530
531   old_site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
532   if (old_site)
533     {
534       g_signal_handlers_disconnect_by_func (widget,
535                                             gtk_drag_dest_realized,
536                                             old_site);
537       g_signal_handlers_disconnect_by_func (widget,
538                                             gtk_drag_dest_hierarchy_changed,
539                                             old_site);
540     }
541
542   g_object_set_data (G_OBJECT (widget), I_("gtk-drag-dest"), NULL);
543 }
544
545 GtkTargetList*
546 gtk_drag_dest_get_target_list (GtkWidget *widget)
547 {
548   GtkDragDestSite *site;
549
550   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
551   
552   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
553
554   return site ? site->target_list : NULL;  
555 }
556
557 void
558 gtk_drag_dest_set_target_list (GtkWidget      *widget,
559                                GtkTargetList  *target_list)
560 {
561   GtkDragDestSite *site;
562
563   g_return_if_fail (GTK_IS_WIDGET (widget));
564   
565   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
566   
567   if (!site)
568     {
569       g_warning ("Can't set a target list on a widget until you've called gtk_drag_dest_set() "
570                  "to make the widget into a drag destination");
571       return;
572     }
573
574   if (target_list)
575     gtk_target_list_ref (target_list);
576   
577   if (site->target_list)
578     gtk_target_list_unref (site->target_list);
579
580   site->target_list = target_list;
581
582   register_types (widget, site);
583 }
584
585 void
586 gtk_drag_dest_add_text_targets (GtkWidget *widget)
587 {
588   GtkTargetList *target_list;
589
590   target_list = gtk_drag_dest_get_target_list (widget);
591   if (target_list)
592     gtk_target_list_ref (target_list);
593   else
594     target_list = gtk_target_list_new (NULL, 0);
595   gtk_target_list_add_text_targets (target_list, 0);
596   gtk_drag_dest_set_target_list (widget, target_list);
597   gtk_target_list_unref (target_list);
598 }
599
600 void
601 gtk_drag_dest_add_image_targets (GtkWidget *widget)
602 {
603   GtkTargetList *target_list;
604
605   target_list = gtk_drag_dest_get_target_list (widget);
606   if (target_list)
607     gtk_target_list_ref (target_list);
608   else
609     target_list = gtk_target_list_new (NULL, 0);
610   gtk_target_list_add_image_targets (target_list, 0, FALSE);
611   gtk_drag_dest_set_target_list (widget, target_list);
612   gtk_target_list_unref (target_list);
613 }
614
615 void
616 gtk_drag_dest_add_uri_targets (GtkWidget *widget)
617 {
618   GtkTargetList *target_list;
619
620   target_list = gtk_drag_dest_get_target_list (widget);
621   if (target_list)
622     gtk_target_list_ref (target_list);
623   else
624     target_list = gtk_target_list_new (NULL, 0);
625   gtk_target_list_add_uri_targets (target_list, 0);
626   gtk_drag_dest_set_target_list (widget, target_list);
627   gtk_target_list_unref (target_list);
628 }
629
630 static void
631 prepend_and_ref_widget (GtkWidget *widget,
632                         gpointer   data)
633 {
634   GSList **slist_p = data;
635
636   *slist_p = g_slist_prepend (*slist_p, g_object_ref (widget));
637 }
638
639 static void
640 gtk_drag_find_widget (GtkWidget       *widget,
641                       GtkDragFindData *data)
642 {
643   GtkAllocation new_allocation;
644   gint allocation_to_window_x = 0;
645   gint allocation_to_window_y = 0;
646   gint x_offset = 0;
647   gint y_offset = 0;
648
649   if (data->found || !gtk_widget_get_mapped (widget) || !gtk_widget_get_sensitive (widget))
650     return;
651
652   /* Note that in the following code, we only count the
653    * position as being inside a WINDOW widget if it is inside
654    * widget->window; points that are outside of widget->window
655    * but within the allocation are not counted. This is consistent
656    * with the way we highlight drag targets.
657    *
658    * data->x,y are relative to widget->parent->window (if
659    * widget is not a toplevel, widget->window otherwise).
660    * We compute the allocation of widget in the same coordinates,
661    * clipping to widget->window, and all intermediate
662    * windows. If data->x,y is inside that, then we translate
663    * our coordinates to be relative to widget->window and
664    * recurse.
665    */  
666   gtk_widget_get_allocation (widget, &new_allocation);
667
668   if (gtk_widget_get_parent (widget))
669     {
670       gint tx, ty;
671       GdkWindow *window = gtk_widget_get_window (widget);
672       GdkWindow *parent_window;
673       GtkAllocation allocation;
674
675       parent_window = gtk_widget_get_window (gtk_widget_get_parent (widget));
676
677       /* Compute the offset from allocation-relative to
678        * window-relative coordinates.
679        */
680       gtk_widget_get_allocation (widget, &allocation);
681       allocation_to_window_x = allocation.x;
682       allocation_to_window_y = allocation.y;
683
684       if (gtk_widget_get_has_window (widget))
685         {
686           /* The allocation is relative to the parent window for
687            * window widgets, not to widget->window.
688            */
689           gdk_window_get_position (window, &tx, &ty);
690           
691           allocation_to_window_x -= tx;
692           allocation_to_window_y -= ty;
693         }
694
695       new_allocation.x = 0 + allocation_to_window_x;
696       new_allocation.y = 0 + allocation_to_window_y;
697       
698       while (window && window != parent_window)
699         {
700           GdkRectangle window_rect = { 0, 0, 0, 0 };
701           
702           window_rect.width = gdk_window_get_width (window);
703           window_rect.height = gdk_window_get_height (window);
704
705           gdk_rectangle_intersect (&new_allocation, &window_rect, &new_allocation);
706
707           gdk_window_get_position (window, &tx, &ty);
708           new_allocation.x += tx;
709           x_offset += tx;
710           new_allocation.y += ty;
711           y_offset += ty;
712           
713           window = gdk_window_get_parent (window);
714         }
715
716       if (!window)              /* Window and widget heirarchies didn't match. */
717         return;
718     }
719
720   if (data->toplevel ||
721       ((data->x >= new_allocation.x) && (data->y >= new_allocation.y) &&
722        (data->x < new_allocation.x + new_allocation.width) && 
723        (data->y < new_allocation.y + new_allocation.height)))
724     {
725       /* First, check if the drag is in a valid drop site in
726        * one of our children 
727        */
728       if (GTK_IS_CONTAINER (widget))
729         {
730           GtkDragFindData new_data = *data;
731           GSList *children = NULL;
732           GSList *tmp_list;
733           
734           new_data.x -= x_offset;
735           new_data.y -= y_offset;
736           new_data.found = FALSE;
737           new_data.toplevel = FALSE;
738           
739           /* need to reference children temporarily in case the
740            * ::drag-motion/::drag-drop callbacks change the widget hierarchy.
741            */
742           gtk_container_forall (GTK_CONTAINER (widget), prepend_and_ref_widget, &children);
743           for (tmp_list = children; tmp_list; tmp_list = tmp_list->next)
744             {
745               if (!new_data.found && gtk_widget_is_drawable (tmp_list->data))
746                 gtk_drag_find_widget (tmp_list->data, &new_data);
747               g_object_unref (tmp_list->data);
748             }
749           g_slist_free (children);
750           
751           data->found = new_data.found;
752         }
753
754       /* If not, and this widget is registered as a drop site, check to
755        * emit "drag-motion" to check if we are actually in
756        * a drop site.
757        */
758       if (!data->found &&
759           g_object_get_data (G_OBJECT (widget), "gtk-drag-dest"))
760         {
761           data->found = data->callback (widget,
762                                         data->context,
763                                         data->x - x_offset - allocation_to_window_x,
764                                         data->y - y_offset - allocation_to_window_y,
765                                         data->time);
766           /* If so, send a "drag-leave" to the last widget */
767           if (data->found)
768             {
769               if (data->info->widget && data->info->widget != widget)
770                 {
771                   gtk_drag_dest_leave (data->info->widget, data->context, data->time);
772                 }
773               data->info->widget = widget;
774             }
775         }
776     }
777 }
778
779 static void  
780 gtk_drag_dest_leave (GtkWidget      *widget,
781                      GdkDragContext *context,
782                      guint           time)
783 {
784   GtkDragDestSite *site;
785
786   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
787   g_return_if_fail (site != NULL);
788
789   if ((site->flags & GTK_DEST_DEFAULT_HIGHLIGHT) && site->have_drag)
790     gtk_drag_unhighlight (widget);
791   
792   if (!(site->flags & GTK_DEST_DEFAULT_MOTION) || site->have_drag ||
793       site->track_motion)
794     g_signal_emit_by_name (widget, "drag-leave", context, time);
795   
796   site->have_drag = FALSE;
797 }
798
799 static gboolean
800 gtk_drag_dest_motion (GtkWidget      *widget,
801                       GdkDragContext *context,
802                       gint            x,
803                       gint            y,
804                       guint           time)
805 {
806   GtkDragDestSite *site;
807   GdkDragAction action = 0;
808   gboolean retval;
809
810   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
811   g_return_val_if_fail (site != NULL, FALSE);
812
813   if (site->track_motion || site->flags & GTK_DEST_DEFAULT_MOTION)
814     {
815       if (gdk_drag_context_get_suggested_action (context) & site->actions)
816         action = gdk_drag_context_get_suggested_action (context);
817       
818       if (action && gtk_drag_dest_find_target (widget, context, NULL))
819         {
820           if (!site->have_drag)
821             {
822               site->have_drag = TRUE;
823               if (site->flags & GTK_DEST_DEFAULT_HIGHLIGHT)
824                 gtk_drag_highlight (widget);
825             }
826           
827           gdk_drag_status (context, action, time);
828         }
829       else
830         {
831           gdk_drag_status (context, 0, time);
832           if (!site->track_motion)
833             return TRUE;
834         }
835     }
836
837   g_signal_emit_by_name (widget, "drag-motion",
838                          context, x, y, time, &retval);
839
840   return (site->flags & GTK_DEST_DEFAULT_MOTION) ? TRUE : retval;
841 }
842
843 static gboolean
844 gtk_drag_dest_drop (GtkWidget        *widget,
845                     GdkDragContext   *context,
846                     gint              x,
847                     gint              y,
848                     guint             time)
849 {
850   GtkDragDestSite *site;
851   GtkDragDestInfo *info;
852   gboolean retval;
853
854   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
855   g_return_val_if_fail (site != NULL, FALSE);
856
857   info = gtk_drag_get_dest_info (context, FALSE);
858   g_return_val_if_fail (info != NULL, FALSE);
859
860   info->drop_x = x;
861   info->drop_y = y;
862
863   if (site->flags & GTK_DEST_DEFAULT_DROP)
864     {
865       GdkAtom target = gtk_drag_dest_find_target (widget, context, NULL);
866
867       if (target == GDK_NONE)
868         {
869           gtk_drag_finish (context, FALSE, FALSE, time);
870           return TRUE;
871         }
872       else
873         gtk_drag_get_data (widget, context, target, time);
874     }
875   
876   g_signal_emit_by_name (widget, "drag-drop",
877                          context, x, y, time, &retval);
878
879   return (site->flags & GTK_DEST_DEFAULT_DROP) ? TRUE : retval;
880 }
881
882 void
883 gtk_drag_dest_set_track_motion (GtkWidget *widget,
884                                 gboolean   track_motion)
885 {
886   GtkDragDestSite *site;
887
888   g_return_if_fail (GTK_IS_WIDGET (widget));
889
890   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
891   
892   g_return_if_fail (site != NULL);
893
894   site->track_motion = track_motion != FALSE;
895 }
896
897 gboolean
898 gtk_drag_dest_get_track_motion (GtkWidget *widget)
899 {
900   GtkDragDestSite *site;
901
902   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
903
904   site = g_object_get_data (G_OBJECT (widget), "gtk-drag-dest");
905
906   if (site)
907     return site->track_motion;
908
909   return FALSE;
910 }
911
912 void
913 _gtk_drag_dest_handle_event (GtkWidget *toplevel,
914                              GdkEvent  *event)
915 {
916   GtkDragDestInfo *info;
917   GdkDragContext *context;
918
919   g_return_if_fail (toplevel != NULL);
920   g_return_if_fail (event != NULL);
921
922   context = event->dnd.context;
923
924   info = gtk_drag_get_dest_info (context, TRUE);
925
926   /* Find the widget for the event */
927   switch (event->type)
928     {
929     case GDK_DRAG_ENTER:
930       break;
931
932     case GDK_DRAG_LEAVE:
933       if (info->widget)
934         {
935           gtk_drag_dest_leave (info->widget, context, event->dnd.time);
936           info->widget = NULL;
937         }
938       break;
939
940     case GDK_DRAG_MOTION:
941     case GDK_DROP_START:
942       {
943         GtkDragFindData data;
944         gint tx, ty;
945
946         if (event->type == GDK_DROP_START)
947           {
948             info->dropped = TRUE;
949             /* We send a leave here so that the widget unhighlights
950              * properly.
951              */
952             if (info->widget)
953               {
954                 gtk_drag_dest_leave (info->widget, context, event->dnd.time);
955                 info->widget = NULL;
956               }
957           }
958
959         gdk_window_get_position (gtk_widget_get_window (toplevel), &tx, &ty);
960         
961         data.x = event->dnd.x_root - tx;
962         data.y = event->dnd.y_root - ty;
963         data.context = context;
964         data.info = info;
965         data.found = FALSE;
966         data.toplevel = TRUE;
967         data.callback = (event->type == GDK_DRAG_MOTION) ?
968           gtk_drag_dest_motion : gtk_drag_dest_drop;
969         data.time = event->dnd.time;
970         
971         gtk_drag_find_widget (toplevel, &data);
972
973         if (info->widget && !data.found)
974           {
975             gtk_drag_dest_leave (info->widget, context, event->dnd.time);
976             info->widget = NULL;
977           }
978
979         /* Send a reply.
980          */
981         if (event->type == GDK_DRAG_MOTION)
982           {
983             if (!data.found)
984               gdk_drag_status (context, 0, event->dnd.time);
985           }
986
987         break;
988       default:
989         g_assert_not_reached ();
990       }
991     }
992 }
993
994
995 GdkAtom
996 gtk_drag_dest_find_target (GtkWidget      *widget,
997                            GdkDragContext *context,
998                            GtkTargetList  *target_list)
999 {
1000   id <NSDraggingInfo> dragging_info;
1001   NSPasteboard *pasteboard;
1002   GtkWidget *source_widget;
1003   GList *tmp_target;
1004   GList *tmp_source = NULL;
1005   GList *source_targets;
1006
1007   g_return_val_if_fail (GTK_IS_WIDGET (widget), GDK_NONE);
1008   g_return_val_if_fail (GDK_IS_DRAG_CONTEXT (context), GDK_NONE);
1009
1010   dragging_info = gdk_quartz_drag_context_get_dragging_info_libgtk_only (context);
1011   pasteboard = [dragging_info draggingPasteboard];
1012
1013   source_widget = gtk_drag_get_source_widget (context);
1014
1015   if (target_list == NULL)
1016     target_list = gtk_drag_dest_get_target_list (widget);
1017   
1018   if (target_list == NULL)
1019     return GDK_NONE;
1020
1021   source_targets = _gtk_quartz_pasteboard_types_to_atom_list ([pasteboard types]);
1022   tmp_target = target_list->list;
1023   while (tmp_target)
1024     {
1025       GtkTargetPair *pair = tmp_target->data;
1026       tmp_source = source_targets;
1027       while (tmp_source)
1028         {
1029           if (tmp_source->data == GUINT_TO_POINTER (pair->target))
1030             {
1031               if ((!(pair->flags & GTK_TARGET_SAME_APP) || source_widget) &&
1032                   (!(pair->flags & GTK_TARGET_SAME_WIDGET) || (source_widget == widget)))
1033                 {
1034                   g_list_free (source_targets);
1035                   return pair->target;
1036                 }
1037               else
1038                 break;
1039             }
1040           tmp_source = tmp_source->next;
1041         }
1042       tmp_target = tmp_target->next;
1043     }
1044
1045   g_list_free (source_targets);
1046   return GDK_NONE;
1047 }
1048
1049 static gboolean
1050 gtk_drag_begin_idle (gpointer arg)
1051 {
1052   NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
1053   GdkDragContext* context = (GdkDragContext*) arg;
1054   GtkDragSourceInfo* info = gtk_drag_get_source_info (context, FALSE);
1055   NSWindow *nswindow;
1056   NSPasteboard *pasteboard;
1057   GtkDragSourceOwner *owner;
1058   NSPoint point;
1059   NSSet *types;
1060   NSImage *drag_image;
1061
1062   g_assert (info != NULL);
1063
1064   pasteboard = [NSPasteboard pasteboardWithName:NSDragPboard];
1065   owner = [[GtkDragSourceOwner alloc] initWithInfo:info];
1066
1067   types = _gtk_quartz_target_list_to_pasteboard_types (info->target_list);
1068
1069   [pasteboard declareTypes:[types allObjects] owner:owner];
1070
1071   [owner release];
1072   [types release];
1073
1074   if ((nswindow = get_toplevel_nswindow (info->source_widget)) == NULL)
1075      return FALSE;
1076   
1077   /* Ref the context. It's unreffed when the drag has been aborted */
1078   g_object_ref (info->context);
1079
1080   /* FIXME: If the event isn't a mouse event, use the global cursor position instead */
1081   point = [info->nsevent locationInWindow];
1082
1083   drag_image = _gtk_quartz_create_image_from_pixbuf (info->icon_pixbuf);
1084
1085   point.x -= info->hot_x;
1086   point.y -= info->hot_y;
1087
1088   [nswindow dragImage:drag_image
1089                    at:point
1090                offset:NSMakeSize(0, 0)
1091                 event:info->nsevent
1092            pasteboard:pasteboard
1093                source:nswindow
1094             slideBack:YES];
1095
1096   [info->nsevent release];
1097   [drag_image release];
1098
1099   [pool release];
1100
1101   return FALSE;
1102 }
1103
1104 static GdkDragContext *
1105 gtk_drag_begin_internal (GtkWidget         *widget,
1106                          GtkDragSourceSite *site,
1107                          GtkTargetList     *target_list,
1108                          GdkDragAction      actions,
1109                          gint               button,
1110                          GdkEvent          *event)
1111 {
1112   GtkDragSourceInfo *info;
1113   GdkDragContext *context;
1114   NSWindow *nswindow;
1115
1116   context = gdk_drag_begin (gtk_widget_get_window (widget), NULL);
1117
1118   info = gtk_drag_get_source_info (context, TRUE);
1119   
1120   info->source_widget = g_object_ref (widget);
1121   info->widget = g_object_ref (widget);
1122   info->target_list = target_list;
1123   gtk_target_list_ref (target_list);
1124
1125   info->possible_actions = actions;
1126   
1127   g_signal_emit_by_name (widget, "drag-begin", info->context);
1128
1129   /* Ensure that we have an icon before we start the drag; the
1130    * application may have set one in ::drag_begin, or it may
1131    * not have set one.
1132    */
1133   if (!info->icon_pixbuf)
1134     {
1135       if (!site || site->icon_type == GTK_IMAGE_EMPTY)
1136         gtk_drag_set_icon_default (context);
1137       else
1138         switch (site->icon_type)
1139           {
1140           case GTK_IMAGE_PIXBUF:
1141             gtk_drag_set_icon_pixbuf (context,
1142                                       site->icon_data.pixbuf.pixbuf,
1143                                       -2, -2);
1144             break;
1145           case GTK_IMAGE_STOCK:
1146             gtk_drag_set_icon_stock (context,
1147                                      site->icon_data.stock.stock_id,
1148                                      -2, -2);
1149             break;
1150           case GTK_IMAGE_ICON_NAME:
1151             gtk_drag_set_icon_name (context,
1152                                     site->icon_data.name.icon_name,
1153                                     -2, -2);
1154             break;
1155           case GTK_IMAGE_EMPTY:
1156           default:
1157             g_assert_not_reached();
1158             break;
1159           }
1160     }
1161
1162   nswindow = get_toplevel_nswindow (widget);
1163   info->nsevent = [nswindow currentEvent];
1164   [info->nsevent retain];
1165
1166   /* drag will begin in an idle handler to avoid nested run loops */
1167
1168   g_idle_add_full (G_PRIORITY_HIGH_IDLE, gtk_drag_begin_idle, context, NULL);
1169
1170   gdk_pointer_ungrab (0);
1171
1172   return context;
1173 }
1174
1175 GdkDragContext *
1176 gtk_drag_begin (GtkWidget         *widget,
1177                 GtkTargetList     *targets,
1178                 GdkDragAction      actions,
1179                 gint               button,
1180                 GdkEvent          *event)
1181 {
1182   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1183   g_return_val_if_fail (gtk_widget_get_realized (widget), NULL);
1184   g_return_val_if_fail (targets != NULL, NULL);
1185
1186   return gtk_drag_begin_internal (widget, NULL, targets,
1187                                   actions, button, event);
1188 }
1189
1190
1191 static gboolean
1192 gtk_drag_source_event_cb (GtkWidget      *widget,
1193                           GdkEvent       *event,
1194                           gpointer        data)
1195 {
1196   GtkDragSourceSite *site;
1197   gboolean retval = FALSE;
1198   site = (GtkDragSourceSite *)data;
1199
1200   switch (event->type)
1201     {
1202     case GDK_BUTTON_PRESS:
1203       if ((GDK_BUTTON1_MASK << (event->button.button - 1)) & site->start_button_mask)
1204         {
1205           site->state |= (GDK_BUTTON1_MASK << (event->button.button - 1));
1206           site->x = event->button.x;
1207           site->y = event->button.y;
1208         }
1209       break;
1210       
1211     case GDK_BUTTON_RELEASE:
1212       if ((GDK_BUTTON1_MASK << (event->button.button - 1)) & site->start_button_mask)
1213         site->state &= ~(GDK_BUTTON1_MASK << (event->button.button - 1));
1214       break;
1215       
1216     case GDK_MOTION_NOTIFY:
1217       if (site->state & event->motion.state & site->start_button_mask)
1218         {
1219           /* FIXME: This is really broken and can leave us
1220            * with a stuck grab
1221            */
1222           int i;
1223           for (i=1; i<6; i++)
1224             {
1225               if (site->state & event->motion.state & 
1226                   GDK_BUTTON1_MASK << (i - 1))
1227                 break;
1228             }
1229
1230           if (gtk_drag_check_threshold (widget, site->x, site->y,
1231                                         event->motion.x, event->motion.y))
1232             {
1233               site->state = 0;
1234               gtk_drag_begin_internal (widget, site, site->target_list,
1235                                        site->actions, 
1236                                        i, event);
1237
1238               retval = TRUE;
1239             }
1240         }
1241       break;
1242       
1243     default:                    /* hit for 2/3BUTTON_PRESS */
1244       break;
1245     }
1246   
1247   return retval;
1248 }
1249
1250 void 
1251 gtk_drag_source_set (GtkWidget            *widget,
1252                      GdkModifierType       start_button_mask,
1253                      const GtkTargetEntry *targets,
1254                      gint                  n_targets,
1255                      GdkDragAction         actions)
1256 {
1257   GtkDragSourceSite *site;
1258
1259   g_return_if_fail (GTK_IS_WIDGET (widget));
1260
1261   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1262
1263   gtk_widget_add_events (widget,
1264                          gtk_widget_get_events (widget) |
1265                          GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
1266                          GDK_BUTTON_MOTION_MASK);
1267
1268   if (site)
1269     {
1270       if (site->target_list)
1271         gtk_target_list_unref (site->target_list);
1272     }
1273   else
1274     {
1275       site = g_new0 (GtkDragSourceSite, 1);
1276
1277       site->icon_type = GTK_IMAGE_EMPTY;
1278       
1279       g_signal_connect (widget, "button-press-event",
1280                         G_CALLBACK (gtk_drag_source_event_cb),
1281                         site);
1282       g_signal_connect (widget, "button-release-event",
1283                         G_CALLBACK (gtk_drag_source_event_cb),
1284                         site);
1285       g_signal_connect (widget, "motion-notify-event",
1286                         G_CALLBACK (gtk_drag_source_event_cb),
1287                         site);
1288       
1289       g_object_set_data_full (G_OBJECT (widget),
1290                               I_("gtk-site-data"), 
1291                               site, gtk_drag_source_site_destroy);
1292     }
1293
1294   site->start_button_mask = start_button_mask;
1295
1296   site->target_list = gtk_target_list_new (targets, n_targets);
1297
1298   site->actions = actions;
1299 }
1300
1301 /*************************************************************
1302  * gtk_drag_source_unset
1303  *     Unregister this widget as a drag source.
1304  *   arguments:
1305  *     widget:
1306  *   results:
1307  *************************************************************/
1308
1309 void 
1310 gtk_drag_source_unset (GtkWidget *widget)
1311 {
1312   GtkDragSourceSite *site;
1313
1314   g_return_if_fail (GTK_IS_WIDGET (widget));
1315
1316   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1317
1318   if (site)
1319     {
1320       g_signal_handlers_disconnect_by_func (widget,
1321                                             gtk_drag_source_event_cb,
1322                                             site);
1323       g_object_set_data (G_OBJECT (widget), I_("gtk-site-data"), NULL);
1324     }
1325 }
1326
1327 GtkTargetList *
1328 gtk_drag_source_get_target_list (GtkWidget *widget)
1329 {
1330   GtkDragSourceSite *site;
1331
1332   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
1333
1334   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1335
1336   return site ? site->target_list : NULL;
1337
1338 }
1339
1340 void
1341 gtk_drag_source_set_target_list (GtkWidget     *widget,
1342                                  GtkTargetList *target_list)
1343 {
1344   GtkDragSourceSite *site;
1345
1346   g_return_if_fail (GTK_IS_WIDGET (widget));
1347
1348   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1349   if (site == NULL)
1350     {
1351       g_warning ("gtk_drag_source_set_target_list() requires the widget "
1352                  "to already be a drag source.");
1353       return;
1354     }
1355
1356   if (target_list)
1357     gtk_target_list_ref (target_list);
1358
1359   if (site->target_list)
1360     gtk_target_list_unref (site->target_list);
1361
1362   site->target_list = target_list;
1363 }
1364
1365 /**
1366  * gtk_drag_source_add_text_targets:
1367  * @widget: a #GtkWidget that's is a drag source
1368  *
1369  * Add the text targets supported by #GtkSelection to
1370  * the target list of the drag source.  The targets
1371  * are added with @info = 0. If you need another value, 
1372  * use gtk_target_list_add_text_targets() and
1373  * gtk_drag_source_set_target_list().
1374  * 
1375  * Since: 2.6
1376  **/
1377 void
1378 gtk_drag_source_add_text_targets (GtkWidget *widget)
1379 {
1380   GtkTargetList *target_list;
1381
1382   target_list = gtk_drag_source_get_target_list (widget);
1383   if (target_list)
1384     gtk_target_list_ref (target_list);
1385   else
1386     target_list = gtk_target_list_new (NULL, 0);
1387   gtk_target_list_add_text_targets (target_list, 0);
1388   gtk_drag_source_set_target_list (widget, target_list);
1389   gtk_target_list_unref (target_list);
1390 }
1391
1392 void
1393 gtk_drag_source_add_image_targets (GtkWidget *widget)
1394 {
1395   GtkTargetList *target_list;
1396
1397   target_list = gtk_drag_source_get_target_list (widget);
1398   if (target_list)
1399     gtk_target_list_ref (target_list);
1400   else
1401     target_list = gtk_target_list_new (NULL, 0);
1402   gtk_target_list_add_image_targets (target_list, 0, TRUE);
1403   gtk_drag_source_set_target_list (widget, target_list);
1404   gtk_target_list_unref (target_list);
1405 }
1406
1407 void
1408 gtk_drag_source_add_uri_targets (GtkWidget *widget)
1409 {
1410   GtkTargetList *target_list;
1411
1412   target_list = gtk_drag_source_get_target_list (widget);
1413   if (target_list)
1414     gtk_target_list_ref (target_list);
1415   else
1416     target_list = gtk_target_list_new (NULL, 0);
1417   gtk_target_list_add_uri_targets (target_list, 0);
1418   gtk_drag_source_set_target_list (widget, target_list);
1419   gtk_target_list_unref (target_list);
1420 }
1421
1422 static void
1423 gtk_drag_source_unset_icon (GtkDragSourceSite *site)
1424 {
1425   switch (site->icon_type)
1426     {
1427     case GTK_IMAGE_EMPTY:
1428       break;
1429     case GTK_IMAGE_PIXBUF:
1430       g_object_unref (site->icon_data.pixbuf.pixbuf);
1431       break;
1432     case GTK_IMAGE_STOCK:
1433       g_free (site->icon_data.stock.stock_id);
1434       break;
1435     case GTK_IMAGE_ICON_NAME:
1436       g_free (site->icon_data.name.icon_name);
1437       break;
1438     default:
1439       g_assert_not_reached();
1440       break;
1441     }
1442   site->icon_type = GTK_IMAGE_EMPTY;
1443 }
1444
1445 static void 
1446 gtk_drag_source_site_destroy (gpointer data)
1447 {
1448   GtkDragSourceSite *site = data;
1449
1450   if (site->target_list)
1451     gtk_target_list_unref (site->target_list);
1452
1453   gtk_drag_source_unset_icon (site);
1454   g_free (site);
1455 }
1456
1457 void 
1458 gtk_drag_source_set_icon_pixbuf (GtkWidget   *widget,
1459                                  GdkPixbuf   *pixbuf)
1460 {
1461   GtkDragSourceSite *site;
1462
1463   g_return_if_fail (GTK_IS_WIDGET (widget));
1464   g_return_if_fail (GDK_IS_PIXBUF (pixbuf));
1465
1466   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1467   g_return_if_fail (site != NULL); 
1468   g_object_ref (pixbuf);
1469
1470   gtk_drag_source_unset_icon (site);
1471
1472   site->icon_type = GTK_IMAGE_PIXBUF;
1473   site->icon_data.pixbuf.pixbuf = pixbuf;
1474 }
1475
1476 /**
1477  * gtk_drag_source_set_icon_stock:
1478  * @widget: a #GtkWidget
1479  * @stock_id: the ID of the stock icon to use
1480  *
1481  * Sets the icon that will be used for drags from a particular source
1482  * to a stock icon. 
1483  **/
1484 void 
1485 gtk_drag_source_set_icon_stock (GtkWidget   *widget,
1486                                 const gchar *stock_id)
1487 {
1488   GtkDragSourceSite *site;
1489
1490   g_return_if_fail (GTK_IS_WIDGET (widget));
1491   g_return_if_fail (stock_id != NULL);
1492
1493   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1494   g_return_if_fail (site != NULL);
1495   
1496   gtk_drag_source_unset_icon (site);
1497
1498   site->icon_type = GTK_IMAGE_STOCK;
1499   site->icon_data.stock.stock_id = g_strdup (stock_id);
1500 }
1501
1502 /**
1503  * gtk_drag_source_set_icon_name:
1504  * @widget: a #GtkWidget
1505  * @icon_name: name of icon to use
1506  * 
1507  * Sets the icon that will be used for drags from a particular source
1508  * to a themed icon. See the docs for #GtkIconTheme for more details.
1509  *
1510  * Since: 2.8
1511  **/
1512 void 
1513 gtk_drag_source_set_icon_name (GtkWidget   *widget,
1514                                const gchar *icon_name)
1515 {
1516   GtkDragSourceSite *site;
1517
1518   g_return_if_fail (GTK_IS_WIDGET (widget));
1519   g_return_if_fail (icon_name != NULL);
1520
1521   site = g_object_get_data (G_OBJECT (widget), "gtk-site-data");
1522   g_return_if_fail (site != NULL);
1523
1524   gtk_drag_source_unset_icon (site);
1525
1526   site->icon_type = GTK_IMAGE_ICON_NAME;
1527   site->icon_data.name.icon_name = g_strdup (icon_name);
1528 }
1529
1530
1531 /**
1532  * gtk_drag_set_icon_widget:
1533  * @context: the context for a drag. (This must be called 
1534           with a  context for the source side of a drag)
1535  * @widget: a toplevel window to use as an icon.
1536  * @hot_x: the X offset within @widget of the hotspot.
1537  * @hot_y: the Y offset within @widget of the hotspot.
1538  * 
1539  * Changes the icon for a widget to a given widget. GTK+
1540  * will not destroy the icon, so if you don't want
1541  * it to persist, you should connect to the "drag-end" 
1542  * signal and destroy it yourself.
1543  **/
1544 void 
1545 gtk_drag_set_icon_widget (GdkDragContext    *context,
1546                           GtkWidget         *widget,
1547                           gint               hot_x,
1548                           gint               hot_y)
1549 {
1550   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1551   g_return_if_fail (GTK_IS_WIDGET (widget));
1552
1553   g_warning ("gtk_drag_set_icon_widget is not supported on Mac OS X");
1554 }
1555
1556 static void
1557 set_icon_stock_pixbuf (GdkDragContext    *context,
1558                        const gchar       *stock_id,
1559                        GdkPixbuf         *pixbuf,
1560                        gint               hot_x,
1561                        gint               hot_y)
1562 {
1563   GtkDragSourceInfo *info;
1564
1565   info = gtk_drag_get_source_info (context, FALSE);
1566
1567   if (stock_id)
1568     {
1569       pixbuf = gtk_widget_render_icon_pixbuf (info->widget, stock_id,
1570                                               GTK_ICON_SIZE_DND);
1571
1572       if (!pixbuf)
1573         {
1574           g_warning ("Cannot load drag icon from stock_id %s", stock_id);
1575           return;
1576         }
1577     }
1578   else
1579     g_object_ref (pixbuf);
1580
1581   if (info->icon_pixbuf)
1582     g_object_unref (info->icon_pixbuf);
1583   info->icon_pixbuf = pixbuf;
1584   info->hot_x = hot_x;
1585   info->hot_y = hot_y;
1586 }
1587
1588 /**
1589  * gtk_drag_set_icon_pixbuf:
1590  * @context: the context for a drag. (This must be called 
1591  *            with a  context for the source side of a drag)
1592  * @pixbuf: the #GdkPixbuf to use as the drag icon.
1593  * @hot_x: the X offset within @widget of the hotspot.
1594  * @hot_y: the Y offset within @widget of the hotspot.
1595  * 
1596  * Sets @pixbuf as the icon for a given drag.
1597  **/
1598 void 
1599 gtk_drag_set_icon_pixbuf  (GdkDragContext *context,
1600                            GdkPixbuf      *pixbuf,
1601                            gint            hot_x,
1602                            gint            hot_y)
1603 {
1604   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1605   g_return_if_fail (GDK_IS_PIXBUF (pixbuf));
1606
1607   set_icon_stock_pixbuf (context, NULL, pixbuf, hot_x, hot_y);
1608 }
1609
1610 /**
1611  * gtk_drag_set_icon_stock:
1612  * @context: the context for a drag. (This must be called 
1613  *            with a  context for the source side of a drag)
1614  * @stock_id: the ID of the stock icon to use for the drag.
1615  * @hot_x: the X offset within the icon of the hotspot.
1616  * @hot_y: the Y offset within the icon of the hotspot.
1617  * 
1618  * Sets the icon for a given drag from a stock ID.
1619  **/
1620 void 
1621 gtk_drag_set_icon_stock  (GdkDragContext *context,
1622                           const gchar    *stock_id,
1623                           gint            hot_x,
1624                           gint            hot_y)
1625 {
1626
1627   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1628   g_return_if_fail (stock_id != NULL);
1629
1630   set_icon_stock_pixbuf (context, stock_id, NULL, hot_x, hot_y);
1631 }
1632
1633
1634 /* XXX: This function is in gdk, too. Should it be in Cairo? */
1635 static gboolean
1636 _gtk_cairo_surface_extents (cairo_surface_t *surface,
1637                             GdkRectangle *extents)
1638 {
1639   double x1, x2, y1, y2;
1640   cairo_t *cr;
1641
1642   g_return_val_if_fail (surface != NULL, FALSE);
1643   g_return_val_if_fail (extents != NULL, FALSE);
1644
1645   cr = cairo_create (surface);
1646   cairo_clip_extents (cr, &x1, &y1, &x2, &y2);
1647
1648   x1 = floor (x1);
1649   y1 = floor (y1);
1650   x2 = ceil (x2);
1651   y2 = ceil (y2);
1652   x2 -= x1;
1653   y2 -= y1;
1654   
1655   if (x1 < G_MININT || x1 > G_MAXINT ||
1656       y1 < G_MININT || y1 > G_MAXINT ||
1657       x2 > G_MAXINT || y2 > G_MAXINT)
1658     {
1659       extents->x = extents->y = extents->width = extents->height = 0;
1660       return FALSE;
1661     }
1662
1663   extents->x = x1;
1664   extents->y = y1;
1665   extents->width = x2;
1666   extents->height = y2;
1667
1668   return TRUE;
1669 }
1670
1671 /**
1672  * gtk_drag_set_icon_surface:
1673  * @context: the context for a drag. (This must be called
1674  *            with a context for the source side of a drag)
1675  * @surface: the surface to use as icon
1676  *
1677  * Sets @surface as the icon for a given drag. GTK+ retains
1678  * references for the arguments, and will release them when
1679  * they are no longer needed.
1680  *
1681  * To position the surface relative to the mouse, use
1682  * cairo_surface_set_device_offset() on @surface. The mouse
1683  * cursor will be positioned at the (0,0) coordinate of the
1684  * surface.
1685  **/
1686 void
1687 gtk_drag_set_icon_surface (GdkDragContext  *context,
1688                            cairo_surface_t *surface)
1689 {
1690   GdkPixbuf *pixbuf;
1691   GdkRectangle extents;
1692   double x_offset, y_offset;
1693
1694   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1695   g_return_if_fail (surface != NULL);
1696
1697   _gtk_cairo_surface_extents (surface, &extents);
1698   cairo_surface_get_device_offset (surface, &x_offset, &y_offset);
1699
1700   pixbuf = gdk_pixbuf_get_from_surface (surface,
1701                                         extents.x, extents.y,
1702                                         extents.width, extents.height);
1703   gtk_drag_set_icon_pixbuf (context, pixbuf, -x_offset, -y_offset);
1704   g_object_unref (pixbuf);
1705 }
1706
1707 /**
1708  * gtk_drag_set_icon_name:
1709  * @context: the context for a drag. (This must be called 
1710  *            with a context for the source side of a drag)
1711  * @icon_name: name of icon to use
1712  * @hot_x: the X offset of the hotspot within the icon
1713  * @hot_y: the Y offset of the hotspot within the icon
1714  * 
1715  * Sets the icon for a given drag from a named themed icon. See
1716  * the docs for #GtkIconTheme for more details. Note that the
1717  * size of the icon depends on the icon theme (the icon is
1718  * loaded at the symbolic size #GTK_ICON_SIZE_DND), thus 
1719  * @hot_x and @hot_y have to be used with care.
1720  *
1721  * Since: 2.8
1722  **/
1723 void 
1724 gtk_drag_set_icon_name (GdkDragContext *context,
1725                         const gchar    *icon_name,
1726                         gint            hot_x,
1727                         gint            hot_y)
1728 {
1729   GdkScreen *screen;
1730   GtkSettings *settings;
1731   GtkIconTheme *icon_theme;
1732   GdkPixbuf *pixbuf;
1733   gint width, height, icon_size;
1734
1735   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1736   g_return_if_fail (icon_name != NULL);
1737
1738   screen = gdk_window_get_screen (gdk_drag_context_get_source_window (context));
1739   g_return_if_fail (screen != NULL);
1740
1741   settings = gtk_settings_get_for_screen (screen);
1742   if (gtk_icon_size_lookup_for_settings (settings,
1743                                          GTK_ICON_SIZE_DND,
1744                                          &width, &height))
1745     icon_size = MAX (width, height);
1746   else 
1747     icon_size = 32; /* default value for GTK_ICON_SIZE_DND */ 
1748
1749   icon_theme = gtk_icon_theme_get_for_screen (screen);
1750
1751   pixbuf = gtk_icon_theme_load_icon (icon_theme, icon_name,
1752                                      icon_size, 0, NULL);
1753   if (pixbuf)
1754     set_icon_stock_pixbuf (context, NULL, pixbuf, hot_x, hot_y);
1755   else
1756     g_warning ("Cannot load drag icon from icon name %s", icon_name);
1757 }
1758
1759 /**
1760  * gtk_drag_set_icon_default:
1761  * @context: the context for a drag. (This must be called 
1762              with a  context for the source side of a drag)
1763  * 
1764  * Sets the icon for a particular drag to the default
1765  * icon.
1766  **/
1767 void 
1768 gtk_drag_set_icon_default (GdkDragContext    *context)
1769 {
1770   g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
1771
1772   gtk_drag_set_icon_stock (context, GTK_STOCK_DND, -2, -2);
1773 }
1774
1775 static void
1776 gtk_drag_source_info_destroy (GtkDragSourceInfo *info)
1777 {
1778   if (info->icon_pixbuf)
1779     g_object_unref (info->icon_pixbuf);
1780
1781   g_signal_emit_by_name (info->widget, "drag-end", 
1782                          info->context);
1783
1784   if (info->source_widget)
1785     g_object_unref (info->source_widget);
1786
1787   if (info->widget)
1788     g_object_unref (info->widget);
1789
1790   gtk_target_list_unref (info->target_list);
1791
1792   gtk_drag_clear_source_info (info->context);
1793   g_object_unref (info->context);
1794
1795   g_free (info);
1796 }
1797
1798 static gboolean
1799 drag_drop_finished_idle_cb (gpointer data)
1800 {
1801   gtk_drag_source_info_destroy (data);
1802   return FALSE;
1803 }
1804
1805 static void
1806 gtk_drag_drop_finished (GtkDragSourceInfo *info)
1807 {
1808   if (info->success && info->delete)
1809     g_signal_emit_by_name (info->source_widget, "drag-data-delete",
1810                            info->context);
1811
1812   /* Workaround for the fact that the NS API blocks until the drag is
1813    * over. This way the context is still valid when returning from
1814    * drag_begin, even if it will still be quite useless. See bug #501588.
1815   */
1816   g_idle_add (drag_drop_finished_idle_cb, info);
1817 }
1818
1819 /*************************************************************
1820  * _gtk_drag_source_handle_event:
1821  *     Called from widget event handling code on Drag events
1822  *     for drag sources.
1823  *
1824  *   arguments:
1825  *     toplevel: Toplevel widget that received the event
1826  *     event:
1827  *   results:
1828  *************************************************************/
1829
1830 void
1831 _gtk_drag_source_handle_event (GtkWidget *widget,
1832                                GdkEvent  *event)
1833 {
1834   GtkDragSourceInfo *info;
1835   GdkDragContext *context;
1836
1837   g_return_if_fail (widget != NULL);
1838   g_return_if_fail (event != NULL);
1839
1840   context = event->dnd.context;
1841   info = gtk_drag_get_source_info (context, FALSE);
1842   if (!info)
1843     return;
1844
1845   switch (event->type)
1846     {
1847     case GDK_DROP_FINISHED:
1848       gtk_drag_drop_finished (info);
1849       break;
1850     default:
1851       g_assert_not_reached ();
1852     }  
1853 }
1854
1855
1856 gboolean
1857 gtk_drag_check_threshold (GtkWidget *widget,
1858                           gint       start_x,
1859                           gint       start_y,
1860                           gint       current_x,
1861                           gint       current_y)
1862 {
1863   gint drag_threshold;
1864
1865   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
1866
1867   g_object_get (gtk_widget_get_settings (widget),
1868                 "gtk-dnd-drag-threshold", &drag_threshold,
1869                 NULL);
1870   
1871   return (ABS (current_x - start_x) > drag_threshold ||
1872           ABS (current_y - start_y) > drag_threshold);
1873 }