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
|
/* nautilus-drag.c - Common Drag & drop handling code shared by the icon container
and the list view.
Copyright (C) 2000 Eazel, Inc.
The Gnome 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 Gnome 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 Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Authors: Pavel Cisler <pavel@eazel.com>,
Ettore Perazzoli <ettore@gnu.org>
*/
#include <config.h>
#include "nautilus-drag.h"
#include <libgnomevfs/gnome-vfs-types.h>
#include <libgnomevfs/gnome-vfs-uri.h>
#include <string.h>
#include <stdio.h>
#include "nautilus-glib-extensions.h"
void
nautilus_drag_init (NautilusDragInfo *drag_info,
const GtkTargetEntry *drag_types, int drag_type_count,
GdkBitmap *stipple)
{
drag_info->target_list = gtk_target_list_new (drag_types,
drag_type_count);
if (stipple) {
drag_info->stipple = gdk_bitmap_ref (stipple);
}
}
void
nautilus_drag_finalize (NautilusDragInfo *drag_info)
{
gtk_target_list_unref (drag_info->target_list);
nautilus_drag_destroy_selection_list (drag_info->selection_list);
if (drag_info != NULL) {
gdk_bitmap_unref (drag_info->stipple);
}
g_free (drag_info);
}
/* Functions to deal with DragSelectionItems. */
DragSelectionItem *
nautilus_drag_selection_item_new (void)
{
return g_new0 (DragSelectionItem, 1);
}
static void
drag_selection_item_destroy (DragSelectionItem *item)
{
g_free (item->uri);
g_free (item);
}
void
nautilus_drag_destroy_selection_list (GList *list)
{
GList *p;
if (list == NULL)
return;
for (p = list; p != NULL; p = p->next)
drag_selection_item_destroy (p->data);
g_list_free (list);
}
GList *
nautilus_drag_build_selection_list (GtkSelectionData *data)
{
GList *result;
const guchar *p, *oldp;
int size;
result = NULL;
oldp = data->data;
size = data->length;
while (size > 0) {
DragSelectionItem *item;
guint len;
/* The list is in the form:
name\rx:y:width:height\r\n
The geometry information after the first \r is optional. */
/* 1: Decode name. */
p = memchr (oldp, '\r', size);
if (p == NULL) {
break;
}
item = nautilus_drag_selection_item_new ();
len = p - oldp;
item->uri = g_malloc (len + 1);
memcpy (item->uri, oldp, len);
item->uri[len] = 0;
p++;
if (*p == '\n' || *p == '\0') {
result = g_list_prepend (result, item);
if (p == 0) {
g_warning ("Invalid special/x-gnome-icon-list data received: "
"missing newline character.");
break;
} else {
oldp = p + 1;
continue;
}
}
size -= p - oldp;
oldp = p;
/* 2: Decode geometry information. */
item->got_icon_position = sscanf (p, "%d:%d:%d:%d%*s",
&item->icon_x, &item->icon_y,
&item->icon_width, &item->icon_height) == 4;
if (!item->got_icon_position) {
g_warning ("Invalid special/x-gnome-icon-list data received: "
"invalid icon position specification.");
}
result = g_list_prepend (result, item);
p = memchr (p, '\r', size);
if (p == NULL || p[1] != '\n') {
g_warning ("Invalid special/x-gnome-icon-list data received: "
"missing newline character.");
if (p == NULL) {
break;
}
} else {
p += 2;
}
size -= p - oldp;
oldp = p;
}
return result;
}
gboolean
nautilus_drag_items_local (const char *target_uri_string, const GList *selection_list)
{
/* check if the first item on the list has target_uri_string as a parent
* we should really test each item but that would be slow for large selections
* and currently dropped items can only be from the same container
*/
GnomeVFSURI *target_uri;
GnomeVFSURI *item_uri;
gboolean result;
/* must have at least one item */
g_assert (selection_list);
result = FALSE;
target_uri = gnome_vfs_uri_new (target_uri_string);
/* get the parent URI of the first item in the selection */
item_uri = gnome_vfs_uri_new (((DragSelectionItem *)selection_list->data)->uri);
result = gnome_vfs_uri_is_parent (target_uri, item_uri, FALSE);
gnome_vfs_uri_unref (item_uri);
gnome_vfs_uri_unref (target_uri);
return result;
}
gboolean
nautilus_drag_can_accept_item (NautilusFile *drop_target_item,
const char *item_uri)
{
/* FIXME bugzilla.eazel.com 657:
* elaborate here some more
* should consider permissions, handle symlinks to directories, etc.
*
* for now just allways return true if dropping into a directory
*/
if (nautilus_file_get_file_type (drop_target_item)
!= GNOME_VFS_FILE_TYPE_DIRECTORY) {
return FALSE;
}
/* target is a directory, find out if it matches the item */
return !nautilus_file_matches_uri (drop_target_item, item_uri);
}
gboolean
nautilus_drag_can_accept_items (NautilusFile *drop_target_item,
const GList *items)
{
int max;
if (drop_target_item == NULL)
return FALSE;
g_assert (NAUTILUS_IS_FILE (drop_target_item));
/* Iterate through selection checking if item will get accepted by the
* drop target. If more than 100 items selected, return an over-optimisic
* result
*/
for (max = 100; items != NULL && max >=0 ; items = items->next, max--) {
if (!nautilus_drag_can_accept_item (drop_target_item,
((DragSelectionItem *)items->data)->uri)) {
return FALSE;
}
}
return TRUE;
}
/* Encode a "special/x-gnome-icon-list" selection.
Along with the URIs of the dragged files, this encodes
the location and size of each icon relative to the cursor.
*/
static void
add_one_gnome_icon_list(const char *uri, int x, int y, int w, int h,
gpointer data)
{
GString *result = (GString *)data;
char *s;
s = g_strdup_printf ("%s\r%d:%d:%hu:%hu\r\n",
uri, x, y, w, h);
g_string_append (result, s);
g_free (s);
}
/* Encode a "text/uri-list" selection. */
static void
add_one_uri_list(const char *uri, int x, int y, int w, int h,
gpointer data)
{
GString *result = (GString *)data;
g_string_append (result, uri);
g_string_append (result, "\r\n");
}
/* Common function for drag_data_get_callback calls.
* Returns FALSE if it doesn't handle drag data
*/
gboolean
nautilus_drag_drag_data_get (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection_data,
guint info,
guint32 time,
gpointer container_context,
NautilusDragEachSelectedItemIterator each_selected_item_iterator)
{
GString *result;
if (info != NAUTILUS_ICON_DND_GNOME_ICON_LIST && info != NAUTILUS_ICON_DND_URI_LIST) {
/* don't know how to handle */
return FALSE;
}
result = g_string_new (NULL);
switch (info) {
case NAUTILUS_ICON_DND_GNOME_ICON_LIST:
each_selected_item_iterator (add_one_gnome_icon_list, container_context, result);
break;
case NAUTILUS_ICON_DND_URI_LIST:
each_selected_item_iterator (add_one_uri_list, container_context, result);
break;
default:
g_assert_not_reached ();
}
gtk_selection_data_set (selection_data,
selection_data->target,
8, result->str, result->len);
return TRUE;
}
|