summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-icon-dnd.c
blob: 0917960c6d41bffe0b6d9b911e639c62ab29327e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* caja-icon-dnd.c - Drag & drop handling for the icon container widget.

   Copyright (C) 1999, 2000 Free Software Foundation
   Copyright (C) 2000 Eazel, Inc.

   The Mate Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.

   The Mate 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the Mate Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
   Boston, MA 02110-1301, USA.

   Authors: Ettore Perazzoli <ettore@gnu.org>,
            Darin Adler <darin@bentspoon.com>,
	    Andy Hertzfeld <andy@eazel.com>
	    Pavel Cisler <pavel@eazel.com>


   XDS support: Benedikt Meurer <benny@xfce.org> (adapted by Amos Brocco <amos.brocco@unifr.ch>)

*/


#include <config.h>
#include <math.h>
#include "caja-icon-dnd.h"

#include "caja-debug-log.h"
#include "caja-file-dnd.h"
#include "caja-icon-private.h"
#include "caja-link.h"
#include "caja-metadata.h"
#include <eel/eel-background.h>
#include <eel/eel-gdk-pixbuf-extensions.h>
#include <eel/eel-glib-extensions.h>
#include <eel/eel-mate-extensions.h>
#include <eel/eel-graphic-effects.h>
#include <eel/eel-gtk-extensions.h>
#include <eel/eel-gtk-macros.h>
#include <eel/eel-stock-dialogs.h>
#include <eel/eel-string.h>
#include <eel/eel-vfs-extensions.h>
#include <gdk/gdkkeysyms.h>
#include <gdk/gdkx.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <eel/eel-canvas-rect-ellipse.h>
#include <libcaja-private/caja-file-utilities.h>
#include <libcaja-private/caja-file-changes-queue.h>
#include <stdio.h>
#include <string.h>

static const GtkTargetEntry drag_types [] =
{
    { CAJA_ICON_DND_MATE_ICON_LIST_TYPE, 0, CAJA_ICON_DND_MATE_ICON_LIST },
    { CAJA_ICON_DND_URI_LIST_TYPE, 0, CAJA_ICON_DND_URI_LIST },
};

static const GtkTargetEntry drop_types [] =
{
    { CAJA_ICON_DND_MATE_ICON_LIST_TYPE, 0, CAJA_ICON_DND_MATE_ICON_LIST },
    /* prefer "_NETSCAPE_URL" over "text/uri-list" to satisfy web browsers. */
    { CAJA_ICON_DND_NETSCAPE_URL_TYPE, 0, CAJA_ICON_DND_NETSCAPE_URL },
    { CAJA_ICON_DND_URI_LIST_TYPE, 0, CAJA_ICON_DND_URI_LIST },
    { CAJA_ICON_DND_COLOR_TYPE, 0, CAJA_ICON_DND_COLOR },
    { CAJA_ICON_DND_BGIMAGE_TYPE, 0, CAJA_ICON_DND_BGIMAGE },
    { CAJA_ICON_DND_KEYWORD_TYPE, 0, CAJA_ICON_DND_KEYWORD },
    { CAJA_ICON_DND_RESET_BACKGROUND_TYPE,  0, CAJA_ICON_DND_RESET_BACKGROUND },
    { CAJA_ICON_DND_XDNDDIRECTSAVE_TYPE, 0, CAJA_ICON_DND_XDNDDIRECTSAVE }, /* XDS Protocol Type */
    { CAJA_ICON_DND_RAW_TYPE, 0, CAJA_ICON_DND_RAW },
    /* Must be last: */
    { CAJA_ICON_DND_ROOTWINDOW_DROP_TYPE,  0, CAJA_ICON_DND_ROOTWINDOW_DROP }
};
static void     stop_dnd_highlight         (GtkWidget      *widget);
static void     dnd_highlight_queue_redraw (GtkWidget      *widget);

static GtkTargetList *drop_types_list = NULL;
static GtkTargetList *drop_types_list_root = NULL;

static char * caja_icon_container_find_drop_target (CajaIconContainer *container,
        GdkDragContext *context,
        int x, int y, gboolean *icon_hit,
        gboolean rewrite_desktop);

static EelCanvasItem *
create_selection_shadow (CajaIconContainer *container,
                         GList *list)
{
    EelCanvasGroup *group;
    EelCanvas *canvas;
    int max_x, max_y;
    int min_x, min_y;
    GList *p;
    GtkAllocation allocation;

    if (list == NULL)
    {
        return NULL;
    }

    /* if we're only dragging a single item, don't worry about the shadow */
    if (list->next == NULL)
    {
        return NULL;
    }

    canvas = EEL_CANVAS (container);
    gtk_widget_get_allocation (GTK_WIDGET (container), &allocation);

    /* Creating a big set of rectangles in the canvas can be expensive, so
           we try to be smart and only create the maximum number of rectangles
           that we will need, in the vertical/horizontal directions.  */

    max_x = allocation.width;
    min_x = -max_x;

    max_y = allocation.height;
    min_y = -max_y;

    /* Create a group, so that it's easier to move all the items around at
           once.  */
    group = EEL_CANVAS_GROUP
            (eel_canvas_item_new (EEL_CANVAS_GROUP (canvas->root),
                                  eel_canvas_group_get_type (),
                                  NULL));

    for (p = list; p != NULL; p = p->next)
    {
        CajaDragSelectionItem *item;
        int x1, y1, x2, y2;
        GdkRGBA black = { 0, 0, 0, 1 };

        item = p->data;

        if (!item->got_icon_position)
        {
            continue;
        }

        x1 = item->icon_x;
        y1 = item->icon_y;
        x2 = x1 + item->icon_width;
        y2 = y1 + item->icon_height;

        if (x2 >= min_x && x1 <= max_x && y2 >= min_y && y1 <= max_y)
            eel_canvas_item_new
            (group,
             eel_canvas_rect_get_type (),
             "x1", (double) x1,
             "y1", (double) y1,
             "x2", (double) x2,
             "y2", (double) y2,
             "outline-color-rgba", &black,
             "outline-stippling", TRUE,
             "width_pixels", 1,
             NULL);
    }

    return EEL_CANVAS_ITEM (group);
}

/* Set the affine instead of the x and y position.
 * Simple, and setting x and y was broken at one point.
 */
static void
set_shadow_position (EelCanvasItem *shadow,
                     double x, double y)
{
    eel_canvas_item_set (shadow,
                         "x", x, "y", y,
                         NULL);
}


/* Source-side handling of the drag. */

/* iteration glue struct */
typedef struct
{
    gpointer iterator_context;
    CajaDragEachSelectedItemDataGet iteratee;
    gpointer iteratee_data;
} IconGetDataBinderContext;

static void
canvas_rect_world_to_widget (EelCanvas *canvas,
                             EelDRect *world_rect,
                             EelIRect *widget_rect)
{
    EelDRect window_rect;
    GtkAdjustment *hadj, *vadj;

    hadj = gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (canvas));
    vadj = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (canvas));

    eel_canvas_world_to_window (canvas,
                                world_rect->x0, world_rect->y0,
                                &window_rect.x0, &window_rect.y0);
    eel_canvas_world_to_window (canvas,
                                world_rect->x1, world_rect->y1,
                                &window_rect.x1, &window_rect.y1);
    widget_rect->x0 = (int) window_rect.x0 - gtk_adjustment_get_value (hadj);
    widget_rect->y0 = (int) window_rect.y0 - gtk_adjustment_get_value (vadj);
    widget_rect->x1 = (int) window_rect.x1 - gtk_adjustment_get_value (hadj);
    widget_rect->y1 = (int) window_rect.y1 - gtk_adjustment_get_value (vadj);
}

static void
canvas_widget_to_world (EelCanvas *canvas,
                        double widget_x, double widget_y,
                        double *world_x, double *world_y)
{
    eel_canvas_window_to_world (canvas,
    			    widget_x + gtk_adjustment_get_value (gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (canvas))),
    			    widget_y + gtk_adjustment_get_value (gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (canvas))),
                                world_x, world_y);
}

static gboolean
icon_get_data_binder (CajaIcon *icon, gpointer data)
{
    IconGetDataBinderContext *context;
    EelDRect world_rect;
    EelIRect widget_rect;
    char *uri;
    CajaIconContainer *container;

    context = (IconGetDataBinderContext *)data;

    g_assert (CAJA_IS_ICON_CONTAINER (context->iterator_context));

    container = CAJA_ICON_CONTAINER (context->iterator_context);

    world_rect = caja_icon_canvas_item_get_icon_rectangle (icon->item);

    canvas_rect_world_to_widget (EEL_CANVAS (container), &world_rect, &widget_rect);

    uri = caja_icon_container_get_icon_uri (container, icon);
    if (uri == NULL)
    {
        g_warning ("no URI for one of the iterated icons");
        return TRUE;
    }

    widget_rect = eel_irect_offset_by (widget_rect,
                                       - container->details->dnd_info->drag_info.start_x,
                                       - container->details->dnd_info->drag_info.start_y);

    widget_rect = eel_irect_scale_by (widget_rect,
                                      1 / EEL_CANVAS (container)->pixels_per_unit);

    /* pass the uri, mouse-relative x/y and icon width/height */
    context->iteratee (uri,
                       (int) widget_rect.x0,
                       (int) widget_rect.y0,
                       widget_rect.x1 - widget_rect.x0,
                       widget_rect.y1 - widget_rect.y0,
                       context->iteratee_data);

    g_free (uri);

    return TRUE;
}

/* Iterate over each selected icon in a CajaIconContainer,
 * calling each_function on each.
 */
static void
caja_icon_container_each_selected_icon (CajaIconContainer *container,
                                        gboolean (*each_function) (CajaIcon *, gpointer), gpointer data)
{
    GList *p;
    CajaIcon *icon;

    for (p = container->details->icons; p != NULL; p = p->next)
    {
        icon = p->data;
        if (!icon->is_selected)
        {
            continue;
        }
        if (!each_function (icon, data))
        {
            return;
        }
    }
}

/* Adaptor function used with caja_icon_container_each_selected_icon
 * to help iterate over all selected items, passing uris, x, y, w and h
 * values to the iteratee
 */
static void
each_icon_get_data_binder (CajaDragEachSelectedItemDataGet iteratee,
                           gpointer iterator_context, gpointer data)
{
    IconGetDataBinderContext context;
    CajaIconContainer *container;

    g_assert (CAJA_IS_ICON_CONTAINER (iterator_context));
    container = CAJA_ICON_CONTAINER (iterator_context);

    context.iterator_context = iterator_context;
    context.iteratee = iteratee;
    context.iteratee_data = data;
    caja_icon_container_each_selected_icon (container, icon_get_data_binder, &context);
}

/* Called when the data for drag&drop is needed */
static void
drag_data_get_callback (GtkWidget *widget,
                        GdkDragContext *context,
                        GtkSelectionData *selection_data,
                        guint info,
                        guint32 time,
                        gpointer data)
{
    g_assert (widget != NULL);
    g_assert (CAJA_IS_ICON_CONTAINER (widget));
    g_return_if_fail (context != NULL);

    /* Call common function from caja-drag that set's up
     * the selection data in the right format. Pass it means to
     * iterate all the selected icons.
     */
    caja_drag_drag_data_get (widget, context, selection_data,
                             info, time, widget, each_icon_get_data_binder);
}


/* Target-side handling of the drag.  */

static void
caja_icon_container_position_shadow (CajaIconContainer *container,
                                     int x, int y)
{
    EelCanvasItem *shadow;
    double world_x, world_y;

    shadow = container->details->dnd_info->shadow;
    if (shadow == NULL)
    {
        return;
    }

    canvas_widget_to_world (EEL_CANVAS (container), x, y,
                            &world_x, &world_y);

    set_shadow_position (shadow, world_x, world_y);
    eel_canvas_item_show (shadow);
}

static void
caja_icon_container_dropped_icon_feedback (GtkWidget *widget,
        GtkSelectionData *data,
        int x, int y)
{
    CajaIconContainer *container;
    CajaIconDndInfo *dnd_info;

    container = CAJA_ICON_CONTAINER (widget);
    dnd_info = container->details->dnd_info;

    /* Delete old selection list. */
    caja_drag_destroy_selection_list (dnd_info->drag_info.selection_list);
    dnd_info->drag_info.selection_list = NULL;

    /* Delete old shadow if any. */
    if (dnd_info->shadow != NULL)
    {
        /* FIXME bugzilla.gnome.org 42484:
         * Is a destroy really sufficient here? Who does the unref? */
        eel_canvas_item_destroy (dnd_info->shadow);
    }

    /* Build the selection list and the shadow. */
    dnd_info->drag_info.selection_list = caja_drag_build_selection_list (data);
    dnd_info->shadow = create_selection_shadow (container, dnd_info->drag_info.selection_list);
    caja_icon_container_position_shadow (container, x, y);
}

static char *
get_direct_save_filename (GdkDragContext *context)
{
    guchar *prop_text;
    gint prop_len;

    if (!gdk_property_get (gdk_drag_context_get_source_window (context), gdk_atom_intern (CAJA_ICON_DND_XDNDDIRECTSAVE_TYPE, FALSE),
                           gdk_atom_intern ("text/plain", FALSE), 0, 1024, FALSE, NULL, NULL,
                           &prop_len, &prop_text))
    {
        return NULL;
    }

    /* Zero-terminate the string */
    prop_text = g_realloc (prop_text, prop_len + 1);
    prop_text[prop_len] = '\0';

    /* Verify that the file name provided by the source is valid */
    if (*prop_text == '\0' ||
            strchr ((const gchar *) prop_text, G_DIR_SEPARATOR) != NULL)
    {
        caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER,
                        "Invalid filename provided by XDS drag site");
        g_free (prop_text);
        return NULL;
    }

    return prop_text;
}

static void
set_direct_save_uri (GtkWidget *widget, GdkDragContext *context, CajaDragInfo *drag_info, int x, int y)
{
    GFile *base, *child;
    char *filename, *drop_target;
    gchar *uri;

    drag_info->got_drop_data_type = TRUE;
    drag_info->data_type = CAJA_ICON_DND_XDNDDIRECTSAVE;

    uri = NULL;

    filename = get_direct_save_filename (context);
    drop_target = caja_icon_container_find_drop_target (CAJA_ICON_CONTAINER (widget),
                  context, x, y, NULL, TRUE);

    if (drop_target && eel_uri_is_trash (drop_target))
    {
        g_free (drop_target);
        drop_target = NULL; /* Cannot save to trash ...*/
    }

    if (filename != NULL && drop_target != NULL)
    {
        /* Resolve relative path */
        base = g_file_new_for_uri (drop_target);
        child = g_file_get_child (base, filename);
        uri = g_file_get_uri (child);
        g_object_unref (base);
        g_object_unref (child);

        /* Change the uri property */
        gdk_property_change (gdk_drag_context_get_source_window (context),
                             gdk_atom_intern (CAJA_ICON_DND_XDNDDIRECTSAVE_TYPE, FALSE),
                             gdk_atom_intern ("text/plain", FALSE), 8,
                             GDK_PROP_MODE_REPLACE, (const guchar *) uri,
                             strlen (uri));

        drag_info->direct_save_uri = uri;
    }

    g_free (filename);
    g_free (drop_target);
}

/* FIXME bugzilla.gnome.org 47445: Needs to become a shared function */
static void
get_data_on_first_target_we_support (GtkWidget *widget, GdkDragContext *context, guint32 time, int x, int y)
{
    GtkTargetList *list;
    GdkAtom target;

    if (drop_types_list == NULL)
    {
        drop_types_list = gtk_target_list_new (drop_types,
                                               G_N_ELEMENTS (drop_types) - 1);
        gtk_target_list_add_text_targets (drop_types_list, CAJA_ICON_DND_TEXT);
    }
    if (drop_types_list_root == NULL)
    {
        drop_types_list_root = gtk_target_list_new (drop_types,
                               G_N_ELEMENTS (drop_types));
        gtk_target_list_add_text_targets (drop_types_list_root, CAJA_ICON_DND_TEXT);
    }

    if (caja_icon_container_get_is_desktop (CAJA_ICON_CONTAINER (widget)))
    {
        list = drop_types_list_root;
    }
    else
    {
        list = drop_types_list;
    }

    target = gtk_drag_dest_find_target (widget, context, list);
    if (target != GDK_NONE)
    {
        guint info;
        CajaDragInfo *drag_info;
        gboolean found;

        drag_info = &(CAJA_ICON_CONTAINER (widget)->details->dnd_info->drag_info);

        found = gtk_target_list_find (list, target, &info);
        g_assert (found);

        /* Don't get_data for destructive ops */
        if ((info == CAJA_ICON_DND_ROOTWINDOW_DROP ||
                info == CAJA_ICON_DND_XDNDDIRECTSAVE) &&
                !drag_info->drop_occured)
        {
            /* We can't call get_data here, because that would
               make the source execute the rootwin action or the direct save */
            drag_info->got_drop_data_type = TRUE;
            drag_info->data_type = info;
        }
        else
        {
            if (info == CAJA_ICON_DND_XDNDDIRECTSAVE)
            {
                set_direct_save_uri (widget, context, drag_info, x, y);
            }
            gtk_drag_get_data (GTK_WIDGET (widget), context,
                               target, time);
        }
    }
}

static void
caja_icon_container_ensure_drag_data (CajaIconContainer *container,
                                      GdkDragContext *context,
                                      guint32 time)
{
    CajaIconDndInfo *dnd_info;

    dnd_info = container->details->dnd_info;

    if (!dnd_info->drag_info.got_drop_data_type)
    {
        get_data_on_first_target_we_support (GTK_WIDGET (container), context, time, 0, 0);
    }
}

static void
drag_end_callback (GtkWidget *widget,
                   GdkDragContext *context,
                   gpointer data)
{
    CajaIconContainer *container;
    CajaIconDndInfo *dnd_info;

    container = CAJA_ICON_CONTAINER (widget);
    dnd_info = container->details->dnd_info;

    caja_drag_destroy_selection_list (dnd_info->drag_info.selection_list);
    dnd_info->drag_info.selection_list = NULL;
}

static CajaIcon *
caja_icon_container_item_at (CajaIconContainer *container,
                             int x, int y)
{
    GList *p;
    int size;
    EelDRect point;
    EelIRect canvas_point;

    /* build the hit-test rectangle. Base the size on the scale factor to ensure that it is
     * non-empty even at the smallest scale factor
     */

    size = MAX (1, 1 + (1 / EEL_CANVAS (container)->pixels_per_unit));
    point.x0 = x;
    point.y0 = y;
    point.x1 = x + size;
    point.y1 = y + size;

    for (p = container->details->icons; p != NULL; p = p->next)
    {
        CajaIcon *icon;
        icon = p->data;

        eel_canvas_w2c (EEL_CANVAS (container),
                        point.x0,
                        point.y0,
                        &canvas_point.x0,
                        &canvas_point.y0);
        eel_canvas_w2c (EEL_CANVAS (container),
                        point.x1,
                        point.y1,
                        &canvas_point.x1,
                        &canvas_point.y1);
        if (caja_icon_canvas_item_hit_test_rectangle (icon->item, canvas_point))
        {
            return icon;
        }
    }

    return NULL;
}

static char *
get_container_uri (CajaIconContainer *container)
{
    char *uri;

    /* get the URI associated with the container */
    uri = NULL;
    g_signal_emit_by_name (container, "get_container_uri", &uri);
    return uri;
}

static gboolean
caja_icon_container_selection_items_local (CajaIconContainer *container,
        GList *items)
{
    char *container_uri_string;
    gboolean result;

    /* must have at least one item */
    g_assert (items);

    result = FALSE;

    /* get the URI associated with the container */
    container_uri_string = get_container_uri (container);

    if (eel_uri_is_desktop (container_uri_string))
    {
        result = caja_drag_items_on_desktop (items);
    }
    else
    {
        result = caja_drag_items_local (container_uri_string, items);
    }
    g_free (container_uri_string);

    return result;
}

static GdkDragAction
get_background_drag_action (CajaIconContainer *container,
                            GdkDragAction action)
{
    /* FIXME: This function is very FMDirectoryView specific, and
     * should be moved out of caja-icon-dnd.c */
    GdkDragAction valid_actions;

    if (action == GDK_ACTION_ASK)
    {
        valid_actions = CAJA_DND_ACTION_SET_AS_FOLDER_BACKGROUND;
        if (!eel_background_is_desktop (eel_get_widget_background (GTK_WIDGET (container))))
        {
            valid_actions |= CAJA_DND_ACTION_SET_AS_GLOBAL_BACKGROUND;
        }

        action = caja_drag_drop_background_ask
                 (GTK_WIDGET (container), valid_actions);
    }

    return action;
}

static void
receive_dropped_color (CajaIconContainer *container,
                       int x, int y,
                       GdkDragAction action,
                       GtkSelectionData *data)
{
    action = get_background_drag_action (container, action);

    if (action > 0)
    {
        char *uri;

        uri = get_container_uri (container);
        caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER,
                        "dropped color on icon container displaying %s", uri);
        g_free (uri);

        eel_background_set_dropped_color (eel_get_widget_background (GTK_WIDGET (container)),
        				  GTK_WIDGET (container),
        				  action, x, y, data);
    }
}

/* handle dropped tile images */
static void
receive_dropped_tile_image (CajaIconContainer *container, GdkDragAction action, GtkSelectionData *data)
{
    g_assert (data != NULL);

    action = get_background_drag_action (container, action);

    if (action > 0)
    {
        char *uri;

        uri = get_container_uri (container);
        caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER,
                        "dropped tile image on icon container displaying %s", uri);
        g_free (uri);

        eel_background_set_dropped_image (eel_get_widget_background (GTK_WIDGET (container)),
                                          action, gtk_selection_data_get_data (data));
    }
}

/* handle dropped keywords */
static void
receive_dropped_keyword (CajaIconContainer *container, const char *keyword, int x, int y)
{
    char *uri;
    double world_x, world_y;

    CajaIcon *drop_target_icon;
    CajaFile *file;

    g_assert (keyword != NULL);

    /* find the item we hit with our drop, if any */
    canvas_widget_to_world (EEL_CANVAS (container), x, y, &world_x, &world_y);
    drop_target_icon = caja_icon_container_item_at (container, world_x, world_y);
    if (drop_target_icon == NULL)
    {
        return;
    }

    /* FIXME bugzilla.gnome.org 42485:
     * This does not belong in the icon code.
     * It has to be in the file manager.
     * The icon code has no right to deal with the file directly.
     * But luckily there's no issue of not getting a file object,
     * so we don't have to worry about async. issues here.
     */
    uri = caja_icon_container_get_icon_uri (container, drop_target_icon);

    caja_debug_log (FALSE, CAJA_DEBUG_LOG_DOMAIN_USER,
                    "dropped emblem '%s' on icon container URI: %s",
                    keyword, uri);

    file = caja_file_get_by_uri (uri);
    g_free (uri);

    caja_drag_file_receive_dropped_keyword (file, keyword);

    caja_file_unref (file);
    caja_icon_container_update_icon (container, drop_target_icon);
}

/* handle dropped url */
static void
receive_dropped_netscape_url (CajaIconContainer *container, const char *encoded_url, GdkDragContext *context, int x, int y)
{
    char *drop_target;

    if (encoded_url == NULL)
    {
        return;
    }

    drop_target = caja_icon_container_find_drop_target (container, context, x, y, NULL, TRUE);

    g_signal_emit_by_name (container, "handle_netscape_url",
                           encoded_url,
                           drop_target,
                           gdk_drag_context_get_selected_action (context),
                           x, y);

    g_free (drop_target);
}

/* handle dropped uri list */
static void
receive_dropped_uri_list (CajaIconContainer *container, const char *uri_list, GdkDragContext *context, int x, int y)
{
    char *drop_target;

    if (uri_list == NULL)
    {
        return;
    }

    drop_target = caja_icon_container_find_drop_target (container, context, x, y, NULL, TRUE);

    g_signal_emit_by_name (container, "handle_uri_list",
                           uri_list,
                           drop_target,
                           gdk_drag_context_get_selected_action (context),
                           x, y);

    g_free (drop_target);
}

/* handle dropped text */
static void
receive_dropped_text (CajaIconContainer *container, const char *text, GdkDragContext *context, int x, int y)
{
    char *drop_target;

    if (text == NULL)
    {
        return;
    }

    drop_target = caja_icon_container_find_drop_target (container, context, x, y, NULL, TRUE);

    g_signal_emit_by_name (container, "handle_text",
                           text,
                           drop_target,
                           gdk_drag_context_get_selected_action (context),
                           x, y);

    g_free (drop_target);
}

/* handle dropped raw data */
static void
receive_dropped_raw (CajaIconContainer *container, const char *raw_data, int length, const char *direct_save_uri, GdkDragContext *context, int x, int y)
{
    char *drop_target;

    if (raw_data == NULL)
    {
        return;
    }

    drop_target = caja_icon_container_find_drop_target (container, context, x, y, NULL, TRUE);

    g_signal_emit_by_name (container, "handle_raw",
                           raw_data,
                           length,
                           drop_target,
                           direct_save_uri,
                           gdk_drag_context_get_selected_action (context),
                           x, y);

    g_free (drop_target);
}

static int
auto_scroll_timeout_callback (gpointer data)
{
    CajaIconContainer *container;
    GtkWidget *widget;
    float x_scroll_delta, y_scroll_delta;
    GdkRectangle exposed_area;
    GtkAllocation allocation;

    g_assert (CAJA_IS_ICON_CONTAINER (data));
    widget = GTK_WIDGET (data);
    container = CAJA_ICON_CONTAINER (widget);

    if (container->details->dnd_info->drag_info.waiting_to_autoscroll
            && container->details->dnd_info->drag_info.start_auto_scroll_in > eel_get_system_time())
    {
        /* not yet */
        return TRUE;
    }

    container->details->dnd_info->drag_info.waiting_to_autoscroll = FALSE;

    caja_drag_autoscroll_calculate_delta (widget, &x_scroll_delta, &y_scroll_delta);
    if (x_scroll_delta == 0 && y_scroll_delta == 0)
    {
        /* no work */
        return TRUE;
    }

    /* Clear the old dnd highlight frame */
    dnd_highlight_queue_redraw (widget);

    if (!caja_icon_container_scroll (container, (int)x_scroll_delta, (int)y_scroll_delta))
    {
        /* the scroll value got pinned to a min or max adjustment value,
         * we ended up not scrolling
         */
        return TRUE;
    }

    /* Make sure the dnd highlight frame is redrawn */
    dnd_highlight_queue_redraw (widget);

    /* update cached drag start offsets */
    container->details->dnd_info->drag_info.start_x -= x_scroll_delta;
    container->details->dnd_info->drag_info.start_y -= y_scroll_delta;

    /* Due to a glitch in GtkLayout, whe need to do an explicit draw of the exposed
     * area.
     * Calculate the size of the area we need to draw
     */
    gtk_widget_get_allocation (widget, &allocation);
    exposed_area.x = allocation.x;
    exposed_area.y = allocation.y;
    exposed_area.width = allocation.width;
    exposed_area.height = allocation.height;

    if (x_scroll_delta > 0)
    {
        exposed_area.x = exposed_area.width - x_scroll_delta;
    }
    else if (x_scroll_delta < 0)
    {
        exposed_area.width = -x_scroll_delta;
    }

    if (y_scroll_delta > 0)
    {
        exposed_area.y = exposed_area.height - y_scroll_delta;
    }
    else if (y_scroll_delta < 0)
    {
        exposed_area.height = -y_scroll_delta;
    }

    /* offset it to 0, 0 */
    exposed_area.x -= allocation.x;
    exposed_area.y -= allocation.y;

    gtk_widget_queue_draw_area (widget,
                                exposed_area.x,
                                exposed_area.y,
                                exposed_area.width,
                                exposed_area.height);

    return TRUE;
}

static void
set_up_auto_scroll_if_needed (CajaIconContainer *container)
{
    caja_drag_autoscroll_start (&container->details->dnd_info->drag_info,
                                GTK_WIDGET (container),
                                auto_scroll_timeout_callback,
                                container);
}

static void
stop_auto_scroll (CajaIconContainer *container)
{
    caja_drag_autoscroll_stop (&container->details->dnd_info->drag_info);
}

static void
handle_local_move (CajaIconContainer *container,
                   double world_x, double world_y)
{
    GList *moved_icons, *p;
    CajaDragSelectionItem *item;
    CajaIcon *icon;
    CajaFile *file;
    char screen_string[32];
    GdkScreen *screen;
    time_t now;

    if (container->details->auto_layout)
    {
        return;
    }

    time (&now);

    /* Move and select the icons. */
    moved_icons = NULL;
    for (p = container->details->dnd_info->drag_info.selection_list; p != NULL; p = p->next)
    {
        item = p->data;

        icon = caja_icon_container_get_icon_by_uri
               (container, item->uri);

        if (icon == NULL)
        {
            /* probably dragged from another screen.  Add it to
             * this screen
             */

            file = caja_file_get_by_uri (item->uri);

            screen = gtk_widget_get_screen (GTK_WIDGET (container));
            g_snprintf (screen_string, sizeof (screen_string), "%d",
                        gdk_x11_screen_get_screen_number (screen));
            caja_file_set_metadata (file,
                                    CAJA_METADATA_KEY_SCREEN,
                                    NULL, screen_string);
            caja_file_set_time_metadata (file,
                                         CAJA_METADATA_KEY_ICON_POSITION_TIMESTAMP, now);

            caja_icon_container_add (container, CAJA_ICON_CONTAINER_ICON_DATA (file));

            icon = caja_icon_container_get_icon_by_uri
                   (container, item->uri);
        }

        if (item->got_icon_position)
        {
            caja_icon_container_move_icon
            (container, icon,
             world_x + item->icon_x, world_y + item->icon_y,
             icon->scale,
             TRUE, TRUE, TRUE);
        }
        moved_icons = g_list_prepend (moved_icons, icon);
    }
    caja_icon_container_select_list_unselect_others
    (container, moved_icons);
    /* Might have been moved in a way that requires adjusting scroll region. */
    caja_icon_container_update_scroll_region (container);
    g_list_free (moved_icons);
}

static void
handle_nonlocal_move (CajaIconContainer *container,
                      GdkDragAction action,
                      int x, int y,
                      const char *target_uri,
                      gboolean icon_hit)
{
    GList *source_uris, *p;
    GArray *source_item_locations;
    gboolean free_target_uri, is_rtl;
    int index, item_x;
    GtkAllocation allocation;

    if (container->details->dnd_info->drag_info.selection_list == NULL)
    {
        return;
    }

    source_uris = NULL;
    for (p = container->details->dnd_info->drag_info.selection_list; p != NULL; p = p->next)
    {
        /* do a shallow copy of all the uri strings of the copied files */
        source_uris = g_list_prepend (source_uris, ((CajaDragSelectionItem *)p->data)->uri);
    }
    source_uris = g_list_reverse (source_uris);

    is_rtl = caja_icon_container_is_layout_rtl (container);

    source_item_locations = g_array_new (FALSE, TRUE, sizeof (GdkPoint));
    if (!icon_hit)
    {
        /* Drop onto a container. Pass along the item points to allow placing
         * the items in their same relative positions in the new container.
         */
        source_item_locations = g_array_set_size (source_item_locations,
                                g_list_length (container->details->dnd_info->drag_info.selection_list));

        for (index = 0, p = container->details->dnd_info->drag_info.selection_list;
                p != NULL; index++, p = p->next)
        {
            item_x = ((CajaDragSelectionItem *)p->data)->icon_x;
            if (is_rtl)
                item_x = -item_x - ((CajaDragSelectionItem *)p->data)->icon_width;
            g_array_index (source_item_locations, GdkPoint, index).x = item_x;
            g_array_index (source_item_locations, GdkPoint, index).y =
                ((CajaDragSelectionItem *)p->data)->icon_y;
        }
    }

    free_target_uri = FALSE;
    /* Rewrite internal desktop URIs to the normal target uri */
    if (eel_uri_is_desktop (target_uri))
    {
        target_uri = caja_get_desktop_directory_uri ();
        free_target_uri = TRUE;
    }

    if (is_rtl)
    {
        gtk_widget_get_allocation (GTK_WIDGET (container), &allocation);
        x = CANVAS_WIDTH (container, allocation) - x;
    }

    /* start the copy */
    g_signal_emit_by_name (container, "move_copy_items",
                           source_uris,
                           source_item_locations,
                           target_uri,
                           action,
                           x, y);

    if (free_target_uri)
    {
        g_free ((char *)target_uri);
    }

    g_list_free (source_uris);
    g_array_free (source_item_locations, TRUE);
}

static char *
caja_icon_container_find_drop_target (CajaIconContainer *container,
                                      GdkDragContext *context,
                                      int x, int y,
                                      gboolean *icon_hit,
                                      gboolean rewrite_desktop)
{
    CajaIcon *drop_target_icon;
    double world_x, world_y;
    CajaFile *file;
    char *icon_uri;
    char *container_uri;

    if (icon_hit)
    {
        *icon_hit = FALSE;
    }

    if (!container->details->dnd_info->drag_info.got_drop_data_type)
    {
        return NULL;
    }

    canvas_widget_to_world (EEL_CANVAS (container), x, y, &world_x, &world_y);

    /* FIXME bugzilla.gnome.org 42485:
     * These "can_accept_items" tests need to be done by
     * the icon view, not here. This file is not supposed to know
     * that the target is a file.
     */

    /* Find the item we hit with our drop, if any */
    drop_target_icon = caja_icon_container_item_at (container, world_x, world_y);
    if (drop_target_icon != NULL)
    {
        icon_uri = caja_icon_container_get_icon_uri (container, drop_target_icon);
        if (icon_uri != NULL)
        {
            file = caja_file_get_by_uri (icon_uri);

            if (!caja_drag_can_accept_info (file,
                                            container->details->dnd_info->drag_info.data_type,
                                            container->details->dnd_info->drag_info.selection_list))
            {
                /* the item we dropped our selection on cannot accept the items,
                 * do the same thing as if we just dropped the items on the canvas
                 */
                drop_target_icon = NULL;
            }

            g_free (icon_uri);
            caja_file_unref (file);
        }
    }

    if (drop_target_icon == NULL)
    {
        if (icon_hit)
        {
            *icon_hit = FALSE;
        }

        container_uri = get_container_uri (container);

        if (rewrite_desktop &&
                container_uri != NULL &&
                eel_uri_is_desktop (container_uri))
        {
            g_free (container_uri);
            container_uri = caja_get_desktop_directory_uri ();
        }

        return container_uri;
    }

    if (icon_hit)
    {
        *icon_hit = TRUE;
    }
    return caja_icon_container_get_icon_drop_target_uri (container, drop_target_icon);
}

static gboolean
selection_is_image_file (GList *selection_list)
{
    const char *mime_type;
    CajaDragSelectionItem *selected_item;
    gboolean result;
    GFile *location;
    GFileInfo *info;

    /* Make sure only one item is selected */
    if (selection_list == NULL ||
            selection_list->next != NULL)
    {
        return FALSE;
    }

    selected_item = selection_list->data;

    mime_type = NULL;

    location = g_file_new_for_uri (selected_item->uri);
    info = g_file_query_info (location,
                              G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
                              0, NULL, NULL);
    if (info)
    {
        mime_type = g_file_info_get_content_type (info);
    }

    result = eel_istr_has_prefix (mime_type, "image/");

    if (info)
    {
        g_object_unref (info);
    }
    g_object_unref (location);

    return result;
}


static void
caja_icon_container_receive_dropped_icons (CajaIconContainer *container,
        GdkDragContext *context,
        int x, int y)
{
    char *drop_target;
    gboolean local_move_only;
    double world_x, world_y;
    gboolean icon_hit;
    GdkDragAction action, real_action;
    CajaDragSelectionItem *selected_item;

    drop_target = NULL;

    if (container->details->dnd_info->drag_info.selection_list == NULL)
    {
        return;
    }

    real_action = gdk_drag_context_get_selected_action (context);

    if (real_action == GDK_ACTION_ASK)
    {
        /* FIXME bugzilla.gnome.org 42485: This belongs in FMDirectoryView, not here. */
        /* Check for special case items in selection list */
        if (caja_drag_selection_includes_special_link (container->details->dnd_info->drag_info.selection_list))
        {
            /* We only want to move the trash */
            action = GDK_ACTION_MOVE;
        }
        else
        {
            action = GDK_ACTION_MOVE | GDK_ACTION_COPY | GDK_ACTION_LINK;

            if (selection_is_image_file (container->details->dnd_info->drag_info.selection_list))
            {
                action |= CAJA_DND_ACTION_SET_AS_BACKGROUND;
            }
        }
        real_action = caja_drag_drop_action_ask (GTK_WIDGET (container), action);
    }

    if (real_action == (GdkDragAction) CAJA_DND_ACTION_SET_AS_BACKGROUND)
    {
        selected_item = container->details->dnd_info->drag_info.selection_list->data;
        eel_background_set_dropped_image (eel_get_widget_background (GTK_WIDGET (container)),
                                          real_action, selected_item->uri);
        return;
    }

    if (real_action > 0)
    {
        eel_canvas_window_to_world (EEL_CANVAS (container),
    				    x + gtk_adjustment_get_value (gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (container))),
    				    y + gtk_adjustment_get_value (gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (container))),
                                    &world_x, &world_y);

        drop_target = caja_icon_container_find_drop_target (container,
                      context, x, y, &icon_hit, FALSE);

        local_move_only = FALSE;
        if (!icon_hit && real_action == GDK_ACTION_MOVE)
        {
            /* we can just move the icon positions if the move ended up in
             * the item's parent container
             */
            local_move_only = caja_icon_container_selection_items_local
                              (container, container->details->dnd_info->drag_info.selection_list);
        }

        if (local_move_only)
        {
            handle_local_move (container, world_x, world_y);
        }
        else
        {
            handle_nonlocal_move (container, real_action, world_x, world_y, drop_target, icon_hit);
        }
    }

    g_free (drop_target);
    caja_drag_destroy_selection_list (container->details->dnd_info->drag_info.selection_list);
    container->details->dnd_info->drag_info.selection_list = NULL;
}

static void
caja_icon_container_get_drop_action (CajaIconContainer *container,
                                     GdkDragContext *context,
                                     int x, int y,
                                     int *action)
{
    char *drop_target;
    gboolean icon_hit;
    CajaIcon *icon;
    double world_x, world_y;

    icon_hit = FALSE;
    if (!container->details->dnd_info->drag_info.got_drop_data_type)
    {
        /* drag_data_received_callback didn't get called yet */
        return;
    }

    /* find out if we're over an icon */
    canvas_widget_to_world (EEL_CANVAS (container), x, y, &world_x, &world_y);

    icon = caja_icon_container_item_at (container, world_x, world_y);

    *action = 0;

    /* case out on the type of object being dragged */
    switch (container->details->dnd_info->drag_info.data_type)
    {
    case CAJA_ICON_DND_MATE_ICON_LIST:
        if (container->details->dnd_info->drag_info.selection_list == NULL)
        {
            return;
        }
        drop_target = caja_icon_container_find_drop_target (container,
                      context, x, y, &icon_hit, FALSE);
        if (!drop_target)
        {
            return;
        }
        caja_drag_default_drop_action_for_icons (context, drop_target,
                container->details->dnd_info->drag_info.selection_list,
                action);
        g_free (drop_target);
        break;
    case CAJA_ICON_DND_URI_LIST:
        drop_target = caja_icon_container_find_drop_target (container,
                      context, x, y, &icon_hit, FALSE);
        *action = caja_drag_default_drop_action_for_uri_list (context, drop_target);

        g_free (drop_target);
        break;

        /* handle emblems by setting the action if we're over an object */
    case CAJA_ICON_DND_KEYWORD:
        if (icon != NULL)
        {
            *action = gdk_drag_context_get_suggested_action (context);
        }
        break;

    case CAJA_ICON_DND_NETSCAPE_URL:
        *action = caja_drag_default_drop_action_for_netscape_url (context);
        break;

    case CAJA_ICON_DND_COLOR:
    case CAJA_ICON_DND_BGIMAGE:
    case CAJA_ICON_DND_RESET_BACKGROUND:
    case CAJA_ICON_DND_ROOTWINDOW_DROP:
        *action = gdk_drag_context_get_suggested_action (context);
        break;

    case CAJA_ICON_DND_TEXT:
    case CAJA_ICON_DND_XDNDDIRECTSAVE:
    case CAJA_ICON_DND_RAW:
        *action = GDK_ACTION_COPY;
        break;
    }
}

static void
set_drop_target (CajaIconContainer *container,
                 CajaIcon *icon)
{
    CajaIcon *old_icon;

    /* Check if current drop target changed, update icon drop
     * higlight if needed.
     */
    old_icon = container->details->drop_target;
    if (icon == old_icon)
    {
        return;
    }

    /* Remember the new drop target for the next round. */
    container->details->drop_target = icon;
    caja_icon_container_update_icon (container, old_icon);
    caja_icon_container_update_icon (container, icon);
}

static void
caja_icon_dnd_update_drop_target (CajaIconContainer *container,
                                  GdkDragContext *context,
                                  int x, int y)
{
    CajaIcon *icon;
    CajaFile *file;
    double world_x, world_y;
    char *uri;

    g_assert (CAJA_IS_ICON_CONTAINER (container));

    canvas_widget_to_world (EEL_CANVAS (container), x, y, &world_x, &world_y);

    /* Find the item we hit with our drop, if any. */
    icon = caja_icon_container_item_at (container, world_x, world_y);

    /* FIXME bugzilla.gnome.org 42485:
     * These "can_accept_items" tests need to be done by
     * the icon view, not here. This file is not supposed to know
     * that the target is a file.
     */

    /* Find if target icon accepts our drop. */
    if (icon != NULL && (container->details->dnd_info->drag_info.data_type != CAJA_ICON_DND_KEYWORD))
    {
        uri = caja_icon_container_get_icon_uri (container, icon);
        file = caja_file_get_by_uri (uri);
        g_free (uri);

        if (!caja_drag_can_accept_info (file,
                                        container->details->dnd_info->drag_info.data_type,
                                        container->details->dnd_info->drag_info.selection_list))
        {
            icon = NULL;
        }

        caja_file_unref (file);
    }

    set_drop_target (container, icon);
}

static void
caja_icon_container_free_drag_data (CajaIconContainer *container)
{
    CajaIconDndInfo *dnd_info;

    dnd_info = container->details->dnd_info;

    dnd_info->drag_info.got_drop_data_type = FALSE;

    if (dnd_info->shadow != NULL)
    {
        eel_canvas_item_destroy (dnd_info->shadow);
        dnd_info->shadow = NULL;
    }

    if (dnd_info->drag_info.selection_data != NULL)
    {
        gtk_selection_data_free (dnd_info->drag_info.selection_data);
        dnd_info->drag_info.selection_data = NULL;
    }

    if (dnd_info->drag_info.direct_save_uri != NULL)
    {
        g_free (dnd_info->drag_info.direct_save_uri);
        dnd_info->drag_info.direct_save_uri = NULL;
    }
}

static void
drag_leave_callback (GtkWidget *widget,
                     GdkDragContext *context,
                     guint32 time,
                     gpointer data)
{
    CajaIconDndInfo *dnd_info;

    dnd_info = CAJA_ICON_CONTAINER (widget)->details->dnd_info;

    if (dnd_info->shadow != NULL)
        eel_canvas_item_hide (dnd_info->shadow);

    stop_dnd_highlight (widget);

    set_drop_target (CAJA_ICON_CONTAINER (widget), NULL);
    stop_auto_scroll (CAJA_ICON_CONTAINER (widget));
    caja_icon_container_free_drag_data(CAJA_ICON_CONTAINER (widget));
}

static void
drag_begin_callback (GtkWidget      *widget,
                     GdkDragContext *context,
                     gpointer        data)
{
    CajaIconContainer *container;
    cairo_surface_t *surface;
    double x1, y1, x2, y2, winx, winy;
    int x_offset, y_offset;
    int start_x, start_y;

    container = CAJA_ICON_CONTAINER (widget);

    start_x = container->details->dnd_info->drag_info.start_x +
    	gtk_adjustment_get_value (gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (container)));
    start_y = container->details->dnd_info->drag_info.start_y +
    	gtk_adjustment_get_value (gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (container)));

    /* create a pixmap and mask to drag with */
    surface = caja_icon_canvas_item_get_drag_surface (container->details->drag_icon->item);

    /* compute the image's offset */
    eel_canvas_item_get_bounds (EEL_CANVAS_ITEM (container->details->drag_icon->item),
                                &x1, &y1, &x2, &y2);
    eel_canvas_world_to_window (EEL_CANVAS (container),
                                x1, y1,  &winx, &winy);
    x_offset = start_x - winx;
    y_offset = start_y - winy;

    cairo_surface_set_device_offset (surface, -x_offset, -y_offset);
    gtk_drag_set_icon_surface (context, surface);
    cairo_surface_destroy (surface);
}

void
caja_icon_dnd_begin_drag (CajaIconContainer *container,
                          GdkDragAction actions,
                          int button,
                          GdkEventMotion *event,
                          int                    start_x,
                          int                    start_y)
{
    CajaIconDndInfo *dnd_info;

    g_return_if_fail (CAJA_IS_ICON_CONTAINER (container));
    g_return_if_fail (event != NULL);

    dnd_info = container->details->dnd_info;
    g_return_if_fail (dnd_info != NULL);

    /* Notice that the event is in bin_window coordinates, because of
           the way the canvas handles events.
    */
    dnd_info->drag_info.start_x = start_x -
    	gtk_adjustment_get_value (gtk_scrollable_get_hadjustment (GTK_SCROLLABLE (container)));
    dnd_info->drag_info.start_y = start_y -
    	gtk_adjustment_get_value (gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (container)));

    /* start the drag */
    gtk_drag_begin_with_coordinates (GTK_WIDGET (container),
                                    dnd_info->drag_info.target_list,
                                    actions,
                                    button,
                                    (GdkEvent *) event,
                                    dnd_info->drag_info.start_x,
                                    dnd_info->drag_info.start_y);
}

static gboolean
drag_highlight_draw (GtkWidget *widget,
                     cairo_t   *cr,
                     gpointer   user_data)
{
    gint width, height;
    GdkWindow *window;
    GtkStyleContext *style;

    window = gtk_widget_get_window (widget);
    width = gdk_window_get_width (window);
    height = gdk_window_get_height (window);

    style = gtk_widget_get_style_context (widget);

    gtk_style_context_save (style);
    gtk_style_context_add_class (style, GTK_STYLE_CLASS_DND);
    gtk_style_context_set_state (style, GTK_STATE_FLAG_FOCUSED);

    gtk_render_frame (style,
                      cr,
                      0, 0, width, height);

    gtk_style_context_restore (style);

    return FALSE;
}

/* Queue a redraw of the dnd highlight rect */
static void
dnd_highlight_queue_redraw (GtkWidget *widget)
{
    CajaIconDndInfo *dnd_info;
    int width, height;
    GtkAllocation allocation;

    dnd_info = CAJA_ICON_CONTAINER (widget)->details->dnd_info;

    if (!dnd_info->highlighted)
    {
        return;
    }

    gtk_widget_get_allocation (widget, &allocation);
    width = allocation.width;
    height = allocation.height;

    /* we don't know how wide the shadow is exactly,
     * so we expose a 10-pixel wide border
     */
    gtk_widget_queue_draw_area (widget,
                                0, 0,
                                width, 10);
    gtk_widget_queue_draw_area (widget,
                                0, 0,
                                10, height);
    gtk_widget_queue_draw_area (widget,
                                0, height - 10,
                                width, 10);
    gtk_widget_queue_draw_area (widget,
                                width - 10, 0,
                                10, height);
}

static void
start_dnd_highlight (GtkWidget *widget)
{
    CajaIconDndInfo *dnd_info;
    GtkWidget *toplevel;

    dnd_info = CAJA_ICON_CONTAINER (widget)->details->dnd_info;

    toplevel = gtk_widget_get_toplevel (widget);
    if (toplevel != NULL &&
            g_object_get_data (G_OBJECT (toplevel), "is_desktop_window"))
    {
        return;
    }

    if (!dnd_info->highlighted)
    {
        dnd_info->highlighted = TRUE;
        g_signal_connect_after (widget, "draw",
                                G_CALLBACK (drag_highlight_draw),
                                NULL);
        dnd_highlight_queue_redraw (widget);
    }
}

static void
stop_dnd_highlight (GtkWidget *widget)
{
    CajaIconDndInfo *dnd_info;

    dnd_info = CAJA_ICON_CONTAINER (widget)->details->dnd_info;

    if (dnd_info->highlighted)
    {
        g_signal_handlers_disconnect_by_func (widget,
                                              drag_highlight_draw,
                                              NULL);
        dnd_highlight_queue_redraw (widget);
        dnd_info->highlighted = FALSE;
    }
}

static gboolean
drag_motion_callback (GtkWidget *widget,
                      GdkDragContext *context,
                      int x, int y,
                      guint32 time)
{
    int action;

    caja_icon_container_ensure_drag_data (CAJA_ICON_CONTAINER (widget), context, time);
    caja_icon_container_position_shadow (CAJA_ICON_CONTAINER (widget), x, y);
    caja_icon_dnd_update_drop_target (CAJA_ICON_CONTAINER (widget), context, x, y);
    set_up_auto_scroll_if_needed (CAJA_ICON_CONTAINER (widget));
    /* Find out what the drop actions are based on our drag selection and
     * the drop target.
     */
    action = 0;
    caja_icon_container_get_drop_action (CAJA_ICON_CONTAINER (widget), context, x, y,
                                         &action);
    if (action != 0)
    {
        start_dnd_highlight (widget);
    }

    gdk_drag_status (context, action, time);

    return TRUE;
}

static gboolean
drag_drop_callback (GtkWidget *widget,
                    GdkDragContext *context,
                    int x,
                    int y,
                    guint32 time,
                    gpointer data)
{
    CajaIconDndInfo *dnd_info;

    dnd_info = CAJA_ICON_CONTAINER (widget)->details->dnd_info;

    /* tell the drag_data_received callback that
       the drop occured and that it can actually
       process the actions.
       make sure it is going to be called at least once.
    */
    dnd_info->drag_info.drop_occured = TRUE;

    get_data_on_first_target_we_support (widget, context, time, x, y);

    return TRUE;
}

void
caja_icon_dnd_end_drag (CajaIconContainer *container)
{
    CajaIconDndInfo *dnd_info;

    g_return_if_fail (CAJA_IS_ICON_CONTAINER (container));

    dnd_info = container->details->dnd_info;
    g_return_if_fail (dnd_info != NULL);
    stop_auto_scroll (container);
    /* Do nothing.
     * Can that possibly be right?
     */
}

/** this callback is called in 2 cases.
    It is called upon drag_motion events to get the actual data
    In that case, it just makes sure it gets the data.
    It is called upon drop_drop events to execute the actual
    actions on the received action. In that case, it actually first makes sure
    that we have got the data then processes it.
*/

static void
drag_data_received_callback (GtkWidget *widget,
                             GdkDragContext *context,
                             int x,
                             int y,
                             GtkSelectionData *data,
                             guint info,
                             guint32 time,
                             gpointer user_data)
{
    CajaDragInfo *drag_info;
    EelBackground *background;
    char *tmp;
    const char *tmp_raw;
    int length;
    gboolean success;

    drag_info = &(CAJA_ICON_CONTAINER (widget)->details->dnd_info->drag_info);

    drag_info->got_drop_data_type = TRUE;
    drag_info->data_type = info;

    switch (info)
    {
    case CAJA_ICON_DND_MATE_ICON_LIST:
        caja_icon_container_dropped_icon_feedback (widget, data, x, y);
        break;
    case CAJA_ICON_DND_COLOR:
    case CAJA_ICON_DND_BGIMAGE:
    case CAJA_ICON_DND_KEYWORD:
    case CAJA_ICON_DND_URI_LIST:
    case CAJA_ICON_DND_TEXT:
    case CAJA_ICON_DND_RESET_BACKGROUND:
    case CAJA_ICON_DND_XDNDDIRECTSAVE:
    case CAJA_ICON_DND_RAW:
        /* Save the data so we can do the actual work on drop. */
        if (drag_info->selection_data != NULL)
        {
            gtk_selection_data_free (drag_info->selection_data);
        }
        drag_info->selection_data = gtk_selection_data_copy (data);
        break;

        /* Netscape keeps sending us the data, even though we accept the first drag */
    case CAJA_ICON_DND_NETSCAPE_URL:
        if (drag_info->selection_data != NULL)
        {
            gtk_selection_data_free (drag_info->selection_data);
            drag_info->selection_data = gtk_selection_data_copy (data);
        }
        break;
    case CAJA_ICON_DND_ROOTWINDOW_DROP:
        /* Do nothing, this won't even happen, since we don't want to call get_data twice */
        break;
    }

    /* this is the second use case of this callback.
     * we have to do the actual work for the drop.
     */
    if (drag_info->drop_occured)
    {

        success = FALSE;
        switch (info)
        {
        case CAJA_ICON_DND_MATE_ICON_LIST:
            caja_icon_container_receive_dropped_icons
            (CAJA_ICON_CONTAINER (widget),
             context, x, y);
            break;
        case CAJA_ICON_DND_COLOR:
            receive_dropped_color (CAJA_ICON_CONTAINER (widget),
                                   x, y,
                                   gdk_drag_context_get_selected_action (context),
                                   data);
            success = TRUE;
            break;
        case CAJA_ICON_DND_BGIMAGE:
            receive_dropped_tile_image
            (CAJA_ICON_CONTAINER (widget),
             gdk_drag_context_get_selected_action (context),
             data);
            break;
        case CAJA_ICON_DND_KEYWORD:
            receive_dropped_keyword
            (CAJA_ICON_CONTAINER (widget),
             (char *) gtk_selection_data_get_data (data), x, y);
            break;
        case CAJA_ICON_DND_NETSCAPE_URL:
            receive_dropped_netscape_url
            (CAJA_ICON_CONTAINER (widget),
             (char *) gtk_selection_data_get_data (data), context, x, y);
            success = TRUE;
            break;
        case CAJA_ICON_DND_URI_LIST:
            receive_dropped_uri_list
            (CAJA_ICON_CONTAINER (widget),
             (char *) gtk_selection_data_get_data (data), context, x, y);
            success = TRUE;
            break;
        case CAJA_ICON_DND_TEXT:
            tmp = gtk_selection_data_get_text (data);
            receive_dropped_text
            (CAJA_ICON_CONTAINER (widget),
             (char *) tmp, context, x, y);
            success = TRUE;
            g_free (tmp);
            break;
        case CAJA_ICON_DND_RAW:
            length = gtk_selection_data_get_length (data);
            tmp_raw = gtk_selection_data_get_data (data);
            receive_dropped_raw
            (CAJA_ICON_CONTAINER (widget),
             tmp_raw, length, drag_info->direct_save_uri,
             context, x, y);
            success = TRUE;
            break;
        case CAJA_ICON_DND_RESET_BACKGROUND:
            background = eel_get_widget_background (widget);
            if (background != NULL)
            {
                eel_background_reset (background);
            }
            gtk_drag_finish (context, FALSE, FALSE, time);
            break;
        case CAJA_ICON_DND_ROOTWINDOW_DROP:
            /* Do nothing, everything is done by the sender */
            break;
        case CAJA_ICON_DND_XDNDDIRECTSAVE:
        {
            const guchar *selection_data;
            gint selection_length;
            gint selection_format;

            selection_data = gtk_selection_data_get_data (drag_info->selection_data);
            selection_length = gtk_selection_data_get_length (drag_info->selection_data);
            selection_format = gtk_selection_data_get_format (drag_info->selection_data);

            if (selection_format == 8 &&
                    selection_length == 1 &&
                    selection_data[0] == 'F')
            {
                gtk_drag_get_data (widget, context,
                                   gdk_atom_intern (CAJA_ICON_DND_RAW_TYPE,
                                                    FALSE),
                                   time);
                return;
            }
            else if (selection_format == 8 &&
                     selection_length == 1 &&
                     selection_data[0] == 'F' &&
                     drag_info->direct_save_uri != NULL)
            {
                GdkPoint p;
                GFile *location;

                location = g_file_new_for_uri (drag_info->direct_save_uri);

                caja_file_changes_queue_file_added (location);
                p.x = x;
                p.y = y;
                caja_file_changes_queue_schedule_position_set (
                    location,
                    p,
                    gdk_x11_screen_get_screen_number (
                        gtk_widget_get_screen (widget)));
                g_object_unref (location);
                caja_file_changes_consume_changes (TRUE);
                success = TRUE;
            }
            break;
        } /* CAJA_ICON_DND_XDNDDIRECTSAVE */
        }
        gtk_drag_finish (context, success, FALSE, time);

        caja_icon_container_free_drag_data (CAJA_ICON_CONTAINER (widget));

        set_drop_target (CAJA_ICON_CONTAINER (widget), NULL);

        /* reinitialise it for the next dnd */
        drag_info->drop_occured = FALSE;
    }

}

void
caja_icon_dnd_init (CajaIconContainer *container)
{
    GtkTargetList *targets;
    int n_elements;

    g_return_if_fail (container != NULL);
    g_return_if_fail (CAJA_IS_ICON_CONTAINER (container));


    container->details->dnd_info = g_new0 (CajaIconDndInfo, 1);
    caja_drag_init (&container->details->dnd_info->drag_info,
                    drag_types, G_N_ELEMENTS (drag_types), TRUE);

    /* Set up the widget as a drag destination.
     * (But not a source, as drags starting from this widget will be
         * implemented by dealing with events manually.)
     */
    n_elements = G_N_ELEMENTS (drop_types);
    if (!caja_icon_container_get_is_desktop (container))
    {
        /* Don't set up rootwindow drop */
        n_elements -= 1;
    }
    gtk_drag_dest_set (GTK_WIDGET (container),
                       0,
                       drop_types, n_elements,
                       GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK | GDK_ACTION_ASK);

    targets = gtk_drag_dest_get_target_list (GTK_WIDGET (container));
    gtk_target_list_add_text_targets (targets, CAJA_ICON_DND_TEXT);


    /* Messages for outgoing drag. */
    g_signal_connect (container, "drag_begin",
                      G_CALLBACK (drag_begin_callback), NULL);
    g_signal_connect (container, "drag_data_get",
                      G_CALLBACK (drag_data_get_callback), NULL);
    g_signal_connect (container, "drag_end",
                      G_CALLBACK (drag_end_callback), NULL);

    /* Messages for incoming drag. */
    g_signal_connect (container, "drag_data_received",
                      G_CALLBACK (drag_data_received_callback), NULL);
    g_signal_connect (container, "drag_motion",
                      G_CALLBACK (drag_motion_callback), NULL);
    g_signal_connect (container, "drag_drop",
                      G_CALLBACK (drag_drop_callback), NULL);
    g_signal_connect (container, "drag_leave",
                      G_CALLBACK (drag_leave_callback), NULL);
}

void
caja_icon_dnd_fini (CajaIconContainer *container)
{
    g_return_if_fail (CAJA_IS_ICON_CONTAINER (container));

    if (container->details->dnd_info != NULL)
    {
        stop_auto_scroll (container);

        caja_drag_finalize (&container->details->dnd_info->drag_info);
        container->details->dnd_info = NULL;
    }
}