Update copyright in all files
[geeqie.git] / src / ui_bookmark.c
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include "config.h"
24 #endif
25 #include "intl.h"
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include <gtk/gtk.h>
32
33 #include <gdk/gdkkeysyms.h> /* for key values */
34
35 #include "main.h"
36
37 #include "filedata.h"
38 #include "history_list.h"
39
40 #include "ui_bookmark.h"
41 #include "ui_fileops.h"
42 #include "ui_menu.h"
43 #include "ui_misc.h"
44 #include "ui_utildlg.h"
45 #include "ui_tabcomp.h"
46 #include "uri_utils.h"
47
48
49
50 /*
51  *-----------------------------------------------------------------------------
52  * bookmarks
53  *-----------------------------------------------------------------------------
54  */
55
56 #define BOOKMARK_DATA_KEY "bookmarkdata"
57 #define MARKER_PATH "[path]"
58 #define MARKER_ICON "[icon]"
59
60 typedef struct _BookMarkData BookMarkData;
61 typedef struct _BookButtonData BookButtonData;
62 typedef struct _BookPropData BookPropData;
63
64 struct _BookMarkData
65 {
66         GtkWidget *widget;
67         GtkWidget *box;
68         gchar *key;
69
70         void (*select_func)(const gchar *path, gpointer data);
71         gpointer select_data;
72
73         gboolean no_defaults;
74         gboolean editable;
75         gboolean only_directories;
76
77         BookButtonData *active_button;
78 };
79
80 struct _BookButtonData
81 {
82         GtkWidget *button;
83         GtkWidget *image;
84         GtkWidget *label;
85
86         gchar *key;
87         gchar *name;
88         gchar *path;
89         gchar *icon;
90         gchar *parent;
91 };
92
93 struct _BookPropData
94 {
95         GtkWidget *name_entry;
96         GtkWidget *path_entry;
97         GtkWidget *icon_entry;
98
99         BookButtonData *bb;
100 };
101
102 enum {
103         TARGET_URI_LIST,
104         TARGET_X_URL,
105         TARGET_TEXT_PLAIN
106 };
107
108 static GtkTargetEntry bookmark_drop_types[] = {
109         { "text/uri-list", 0, TARGET_URI_LIST },
110         { "x-url/http",    0, TARGET_X_URL },
111         { "_NETSCAPE_URL", 0, TARGET_X_URL }
112 };
113 #define bookmark_drop_types_n 3
114
115 static GtkTargetEntry bookmark_drag_types[] = {
116         { "text/uri-list", 0, TARGET_URI_LIST },
117         { "text/plain",    0, TARGET_TEXT_PLAIN }
118 };
119 #define bookmark_drag_types_n 2
120
121
122 static GList *bookmark_widget_list = NULL;
123 static GList *bookmark_default_list = NULL;
124
125
126 static void bookmark_populate_all(const gchar *key);
127
128
129 static BookButtonData *bookmark_from_string(const gchar *text)
130 {
131         BookButtonData *b;
132         const gchar *path_ptr;
133         const gchar *icon_ptr;
134
135         b = g_new0(BookButtonData, 1);
136
137         if (!text)
138                 {
139                 b->name = g_strdup(_("New Bookmark"));
140                 b->path = g_strdup(homedir());
141                 b->key = NULL;
142                 return b;
143                 }
144
145         b->key = g_strdup(text);
146
147         path_ptr = strstr(text, MARKER_PATH);
148         icon_ptr = strstr(text, MARKER_ICON);
149
150         if (path_ptr && icon_ptr && icon_ptr < path_ptr)
151                 {
152                 log_printf("warning, bookmark icon must be after path\n");
153                 return NULL;
154                 }
155
156         if (path_ptr)
157                 {
158                 gint l;
159
160                 l = path_ptr - text;
161                 b->name = g_strndup(text, l);
162                 path_ptr += strlen(MARKER_PATH);
163                 if (icon_ptr)
164                         {
165                         l = icon_ptr - path_ptr;
166                         b->path = g_strndup(path_ptr, l);
167                         }
168                 else
169                         {
170                         b->path = g_strdup(path_ptr);
171                         }
172                 }
173         else
174                 {
175                 b->name = g_strdup(text);
176                 b->path = g_strdup("");
177                 }
178
179         if (icon_ptr)
180                 {
181                 icon_ptr += strlen(MARKER_ICON);
182                 b->icon = g_strdup(icon_ptr);
183                 }
184
185         return b;
186 }
187
188 static void bookmark_free(BookButtonData *b)
189 {
190         if (!b) return;
191
192         g_free(b->name);
193         g_free(b->path);
194         g_free(b->icon);
195         g_free(b->key);
196         g_free(b->parent);
197         g_free(b);
198 }
199
200 static gchar *bookmark_string(const gchar *name, const gchar *path, const gchar *icon)
201 {
202         if (!name) name = _("New Bookmark");
203         if (icon && strncmp(icon, G_DIR_SEPARATOR_S, 1) != 0) icon = NULL;
204
205         if (icon)
206                 {
207                 return g_strdup_printf("%s"MARKER_PATH"%s"MARKER_ICON"%s", name, path, icon);
208                 }
209
210         return g_strdup_printf("%s"MARKER_PATH"%s", name, path);
211 }
212
213 static void bookmark_select_cb(GtkWidget *button, gpointer data)
214 {
215         BookMarkData *bm = data;
216         BookButtonData *b;
217
218         b = g_object_get_data(G_OBJECT(button), "bookbuttondata");
219         if (!b) return;
220
221         if (bm->select_func) bm->select_func(b->path, bm->select_data);
222 }
223
224 static void bookmark_edit_destroy_cb(GtkWidget *widget, gpointer data)
225 {
226         BookPropData *p = data;
227
228         bookmark_free(p->bb);
229         g_free(p);
230 }
231
232 static void bookmark_edit_cancel_cb(GenericDialog *gd, gpointer data)
233 {
234 }
235
236 static void bookmark_edit_ok_cb(GenericDialog *gd, gpointer data)
237 {
238         BookPropData *p = data;
239         const gchar *name;
240         gchar *path;
241         const gchar *icon;
242         gchar *new;
243
244         name = gtk_entry_get_text(GTK_ENTRY(p->name_entry));
245         path = remove_trailing_slash(gtk_entry_get_text(GTK_ENTRY(p->path_entry)));
246         icon = gtk_entry_get_text(GTK_ENTRY(p->icon_entry));
247
248         new = bookmark_string(name, path, icon);
249
250         if (p->bb->key)
251                 {
252                 history_list_item_change(p->bb->parent, p->bb->key, new);
253                 }
254         else
255                 {
256                 history_list_add_to_key(p->bb->parent, new, 0);
257                 }
258
259         if (path && strlen(path) > 0) tab_completion_append_to_history(p->path_entry, path);
260         if (icon && strlen(icon) > 0) tab_completion_append_to_history(p->icon_entry, icon);
261
262         g_free(path);
263         g_free(new);
264
265         bookmark_populate_all(p->bb->parent);
266 }
267
268 /* simply pass NULL for text to turn this into a 'new bookmark' dialog */
269
270 static void bookmark_edit(const gchar *key, const gchar *text, GtkWidget *parent)
271 {
272         BookPropData *p;
273         GenericDialog *gd;
274         GtkWidget *table;
275         GtkWidget *label;
276         const gchar *icon;
277
278         if (!key) key = "bookmarks";
279
280         p = g_new0(BookPropData, 1);
281
282         p->bb = bookmark_from_string(text);
283         p->bb->parent = g_strdup(key);
284
285         gd = generic_dialog_new(_("Edit Bookmark"), "bookmark_edit",
286                                 parent, TRUE,
287                                 bookmark_edit_cancel_cb, p);
288         g_signal_connect(G_OBJECT(gd->dialog), "destroy",
289                          G_CALLBACK(bookmark_edit_destroy_cb), p);
290
291         generic_dialog_add_message(gd, NULL, _("Edit Bookmark"), NULL);
292
293         generic_dialog_add_button(gd, GTK_STOCK_OK, NULL,
294                                   bookmark_edit_ok_cb, TRUE);
295
296         table = pref_table_new(gd->vbox, 3, 2, FALSE, TRUE);
297         pref_table_label(table, 0, 0, _("Name:"), 1.0);
298
299         p->name_entry = gtk_entry_new();
300         gtk_widget_set_size_request(p->name_entry, 300, -1);
301         if (p->bb->name) gtk_entry_set_text(GTK_ENTRY(p->name_entry), p->bb->name);
302         gtk_table_attach_defaults(GTK_TABLE(table), p->name_entry, 1, 2, 0, 1);
303         generic_dialog_attach_default(gd, p->name_entry);
304         gtk_widget_show(p->name_entry);
305
306         pref_table_label(table, 0, 1, _("Path:"), 1.0);
307
308         label = tab_completion_new_with_history(&p->path_entry, p->bb->path,
309                                                 "bookmark_path", -1, NULL, NULL);
310         tab_completion_add_select_button(p->path_entry, NULL, TRUE);
311         gtk_table_attach_defaults(GTK_TABLE(table), label, 1, 2, 1, 2);
312         generic_dialog_attach_default(gd, p->path_entry);
313         gtk_widget_show(label);
314
315         pref_table_label(table, 0, 2, _("Icon:"), 1.0);
316
317         icon = p->bb->icon;
318         if (!icon) icon = "";
319         label = tab_completion_new_with_history(&p->icon_entry, icon,
320                                                 "bookmark_icons", -1, NULL, NULL);
321         tab_completion_add_select_button(p->icon_entry, _("Select icon"), FALSE);
322         gtk_table_attach_defaults(GTK_TABLE(table), label, 1, 2, 2, 3);
323         generic_dialog_attach_default(gd, p->icon_entry);
324         gtk_widget_show(label);
325
326         gtk_widget_show(gd->dialog);
327 }
328
329 static void bookmark_move(BookMarkData *bm, GtkWidget *button, gint direction)
330 {
331         BookButtonData *b;
332         gint p;
333         GList *list;
334         gchar *key_holder;
335
336         if (!bm->editable) return;
337
338         b = g_object_get_data(G_OBJECT(button), "bookbuttondata");
339         if (!b) return;
340
341         list = gtk_container_get_children(GTK_CONTAINER(bm->box));
342         p = g_list_index(list, button);
343         g_list_free(list);
344
345         if (p < 0 || p + direction < 0) return;
346
347         key_holder = bm->key;
348         bm->key = "_TEMPHOLDER";
349         history_list_item_move(key_holder, b->key, -direction);
350         bookmark_populate_all(key_holder);
351         bm->key = key_holder;
352
353         gtk_box_reorder_child(GTK_BOX(bm->box), button, p + direction);
354 }
355
356 static void bookmark_menu_prop_cb(GtkWidget *widget, gpointer data)
357 {
358         BookMarkData *bm = data;
359
360         if (!bm->active_button) return;
361
362         bookmark_edit(bm->key, bm->active_button->key, widget);
363 }
364
365 static void bookmark_menu_move(BookMarkData *bm, gint direction)
366 {
367         if (!bm->active_button) return;
368
369         bookmark_move(bm, bm->active_button->button, direction);
370 }
371
372 static void bookmark_menu_up_cb(GtkWidget *widget, gpointer data)
373 {
374         bookmark_menu_move(data, -1);
375 }
376
377 static void bookmark_menu_down_cb(GtkWidget *widget, gpointer data)
378 {
379         bookmark_menu_move(data, 1);
380 }
381
382 static void bookmark_menu_remove_cb(GtkWidget *widget, gpointer data)
383 {
384         BookMarkData *bm = data;
385
386         if (!bm->active_button) return;
387
388         history_list_item_remove(bm->key, bm->active_button->key);
389         bookmark_populate_all(bm->key);
390 }
391
392 static void bookmark_menu_position_cb(GtkMenu *menu, gint *x, gint *y, gint *pushed_in, gpointer data)
393 {
394         GtkWidget *button = data;
395         GtkAllocation allocation;
396
397         gtk_widget_set_allocation(button, &allocation);
398         gdk_window_get_origin(gtk_widget_get_window(button), x, y);
399         *y += allocation.y + allocation.height;
400 }
401
402 static void bookmark_menu_popup(BookMarkData *bm, GtkWidget *button,
403                                 gint button_n, guint32 time, gboolean local)
404 {
405         GtkWidget *menu;
406         BookButtonData *b;
407
408         b = g_object_get_data(G_OBJECT(button), "bookbuttondata");
409         if (!b) return;
410
411         bm->active_button = b;
412
413         menu = popup_menu_short_lived();
414         menu_item_add_stock_sensitive(menu, _("_Properties..."), GTK_STOCK_PROPERTIES, bm->editable,
415                       G_CALLBACK(bookmark_menu_prop_cb), bm);
416         menu_item_add_stock_sensitive(menu, _("Move _up"), GTK_STOCK_GO_UP, bm->editable,
417                       G_CALLBACK(bookmark_menu_up_cb), bm);
418         menu_item_add_stock_sensitive(menu, _("Move _down"), GTK_STOCK_GO_DOWN, bm->editable,
419                       G_CALLBACK(bookmark_menu_down_cb), bm);
420         menu_item_add_stock_sensitive(menu, _("_Remove"), GTK_STOCK_REMOVE, bm->editable,
421                       G_CALLBACK(bookmark_menu_remove_cb), bm);
422
423         if (local)
424                 {
425                 gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
426                                bookmark_menu_position_cb, button, button_n, time);
427                 }
428         else
429                 {
430                 gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, button_n, time);
431                 }
432 }
433
434 static gboolean bookmark_press_cb(GtkWidget *button, GdkEventButton *event, gpointer data)
435 {
436         BookMarkData *bm = data;
437
438         if (event->button != MOUSE_BUTTON_RIGHT) return FALSE;
439
440         bookmark_menu_popup(bm, button, event->button, event->time, FALSE);
441
442         return TRUE;
443 }
444
445 static gboolean bookmark_keypress_cb(GtkWidget *button, GdkEventKey *event, gpointer data)
446 {
447         BookMarkData *bm = data;
448
449         switch (event->keyval)
450                 {
451                 case GDK_KEY_F10:
452                         if (!(event->state & GDK_CONTROL_MASK)) return FALSE;
453                 case GDK_KEY_Menu:
454                         bookmark_menu_popup(bm, button, 0, event->time, TRUE);
455                         return TRUE;
456                         break;
457                 case GDK_KEY_Up:
458                         if (event->state & GDK_SHIFT_MASK)
459                                 {
460                                 bookmark_move(bm, button, -1);
461                                 return TRUE;
462                                 }
463                         break;
464                 case GDK_KEY_Down:
465                         if (event->state & GDK_SHIFT_MASK)
466                                 {
467                                 bookmark_move(bm, button, 1);
468                                 return TRUE;
469                                 }
470                         break;
471                 }
472
473         return FALSE;
474 }
475
476 static void bookmark_drag_set_data(GtkWidget *button,
477                                    GdkDragContext *context, GtkSelectionData *selection_data,
478                                    guint info, guint time, gpointer data)
479 {
480         BookMarkData *bm = data;
481         BookButtonData *b;
482         GList *list = NULL;
483
484 #if GTK_CHECK_VERSION(3,0,0)
485         if (gdk_drag_context_get_dest_window(context) == gtk_widget_get_window(bm->widget)) return;
486 #else
487         if (context->dest_window == bm->widget->window) return;
488 #endif
489
490         b = g_object_get_data(G_OBJECT(button), "bookbuttondata");
491         if (!b) return;
492
493         list = g_list_append(list, b->path);
494
495         gchar **uris = uris_from_filelist(list);
496         gboolean ret = gtk_selection_data_set_uris(selection_data, uris);
497         if (!ret)
498                 {
499                 char *str = g_strjoinv("\r\n", uris);
500                 ret = gtk_selection_data_set_text(selection_data, str, -1);
501                 g_free(str);
502                 }
503
504         g_strfreev(uris);
505         g_list_free(list);
506 }
507
508 static void bookmark_drag_begin(GtkWidget *button, GdkDragContext *context, gpointer data)
509 {
510         GdkPixbuf *pixbuf;
511         GdkModifierType mask;
512         gint x, y;
513         GtkAllocation allocation;
514
515         gtk_widget_get_allocation(button, &allocation);
516
517 #if GTK_CHECK_VERSION(3,0,0)
518         pixbuf = gdk_pixbuf_get_from_window(gtk_widget_get_window(button),
519                                             allocation.x, allocation.y,
520                                             allocation.width, allocation.height);
521 #else
522         pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8,
523                                 allocation.width, allocation.height);
524         gdk_pixbuf_get_from_drawable(pixbuf, gtk_widget_get_window(button), NULL,
525                                      allocation.x, allocation.y,
526                                      0, 0, allocation.width, allocation.height);
527 #endif
528         gdk_window_get_pointer(gtk_widget_get_window(button), &x, &y, &mask);
529
530         gtk_drag_set_icon_pixbuf(context, pixbuf,
531                                  x - allocation.x, y - allocation.y);
532         g_object_unref(pixbuf);
533 }
534
535 static void bookmark_populate(BookMarkData *bm)
536 {
537         GtkBox *box;
538         GList *work;
539         GList *children;
540
541         box = GTK_BOX(bm->box);
542         children = gtk_container_get_children(GTK_CONTAINER(box));
543         work = children;
544         while (work)
545                 {
546                 GtkWidget *widget = GTK_WIDGET(work->data);
547                 work = work->next;
548                 gtk_widget_destroy(widget);
549                 }
550
551         if (!bm->no_defaults && !history_list_get_by_key(bm->key))
552                 {
553                 gchar *buf;
554                 gchar *path;
555
556                 if (!bookmark_default_list)
557                         {
558                         buf = bookmark_string(_("Home"), homedir(), NULL);
559                         history_list_add_to_key(bm->key, buf, 0);
560                         g_free(buf);
561
562                         buf = bookmark_string(".", g_strdup(history_list_find_last_path_by_key("path_list")), NULL);
563                         history_list_add_to_key(bm->key, buf, 0);
564                         g_free(buf);
565
566                         path = g_build_filename(homedir(), "Desktop", NULL);
567                         if (isname(path))
568                                 {
569                                 buf = bookmark_string(_("Desktop"), path, NULL);
570                                 history_list_add_to_key(bm->key, buf, 0);
571                                 g_free(buf);
572                                 }
573                         g_free(path);
574                         }
575
576                 work = bookmark_default_list;
577                 while (work && work->next)
578                         {
579                         gchar *name;
580
581                         name = work->data;
582                         work = work->next;
583                         path = work->data;
584                         work = work->next;
585
586                         if (strcmp(name, ".") == 0)
587                                 {
588                                 buf = bookmark_string(name, g_strdup(history_list_find_last_path_by_key("path_list")), NULL);
589                                 }
590                         else
591                                 {
592                                 buf = bookmark_string(name, path, NULL);
593                                 }
594                         history_list_add_to_key(bm->key, buf, 0);
595                         g_free(buf);
596                         }
597                 }
598
599         work = history_list_get_by_key(bm->key);
600         work = g_list_last(work);
601         while (work)
602                 {
603                 BookButtonData *b;
604
605                 b = bookmark_from_string(work->data);
606                 if (b)
607                         {
608                         if (strcmp(b->name, ".") == 0)
609                                 {
610                                 gchar *buf;
611
612                                 b->path = g_strdup(history_list_find_last_path_by_key("path_list"));
613                                 buf = bookmark_string(".", b->path, b->icon);
614                                 history_list_item_change("bookmarks", b->key, buf);
615                                 b->key = g_strdup(buf);
616                                 g_free(buf);
617                                 }
618                         GtkWidget *box;
619
620                         b->button = gtk_button_new();
621                         gtk_button_set_relief(GTK_BUTTON(b->button), GTK_RELIEF_NONE);
622                         gtk_box_pack_start(GTK_BOX(bm->box), b->button, FALSE, FALSE, 0);
623                         gtk_widget_show(b->button);
624
625                         g_object_set_data_full(G_OBJECT(b->button), "bookbuttondata",
626                                                b, (GDestroyNotify)bookmark_free);
627
628                         box = gtk_hbox_new(FALSE, PREF_PAD_BUTTON_GAP);
629                         gtk_container_add(GTK_CONTAINER(b->button), box);
630                         gtk_widget_show(box);
631
632                         if (b->icon)
633                                 {
634                                 GdkPixbuf *pixbuf;
635                                 gchar *iconl;
636
637                                 iconl = path_from_utf8(b->icon);
638                                 pixbuf = gdk_pixbuf_new_from_file(iconl, NULL);
639                                 g_free(iconl);
640                                 if (pixbuf)
641                                         {
642                                         GdkPixbuf *scaled;
643                                         gint w, h;
644
645                                         w = h = 16;
646                                         gtk_icon_size_lookup(GTK_ICON_SIZE_BUTTON, &w, &h);
647
648                                         scaled = gdk_pixbuf_scale_simple(pixbuf, w, h,
649                                                                          GDK_INTERP_BILINEAR);
650                                         b->image = gtk_image_new_from_pixbuf(scaled);
651                                         g_object_unref(scaled);
652                                         g_object_unref(pixbuf);
653                                         }
654                                 else
655                                         {
656                                         b->image = gtk_image_new_from_stock(GTK_STOCK_MISSING_IMAGE,
657                                                                             GTK_ICON_SIZE_BUTTON);
658                                         }
659                                 }
660                         else
661                                 {
662                                 b->image = gtk_image_new_from_stock(GTK_STOCK_JUMP_TO, GTK_ICON_SIZE_BUTTON);
663                                 }
664                         gtk_box_pack_start(GTK_BOX(box), b->image, FALSE, FALSE, 0);
665                         gtk_widget_show(b->image);
666
667                         b->label = gtk_label_new(b->name);
668                         gtk_box_pack_start(GTK_BOX(box), b->label, FALSE, FALSE, 0);
669                         gtk_widget_show(b->label);
670
671                         g_signal_connect(G_OBJECT(b->button), "clicked",
672                                          G_CALLBACK(bookmark_select_cb), bm);
673                         g_signal_connect(G_OBJECT(b->button), "button_press_event",
674                                          G_CALLBACK(bookmark_press_cb), bm);
675                         g_signal_connect(G_OBJECT(b->button), "key_press_event",
676                                          G_CALLBACK(bookmark_keypress_cb), bm);
677
678                         gtk_drag_source_set(b->button, GDK_BUTTON1_MASK,
679                                             bookmark_drag_types, bookmark_drag_types_n,
680                                             GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK);
681                         g_signal_connect(G_OBJECT(b->button), "drag_data_get",
682                                          G_CALLBACK(bookmark_drag_set_data), bm);
683                         g_signal_connect(G_OBJECT(b->button), "drag_begin",
684                                          G_CALLBACK(bookmark_drag_begin), bm);
685                         }
686
687                 work = work->prev;
688                 }
689 }
690
691 static void bookmark_populate_all(const gchar *key)
692 {
693         GList *work;
694
695         if (!key) return;
696
697         work = bookmark_widget_list;
698         while (work)
699                 {
700                 BookMarkData *bm;
701
702                 bm = work->data;
703                 work = work->next;
704
705                 if (strcmp(bm->key, key) == 0)
706                         {
707                         bookmark_populate(bm);
708                         }
709                 }
710 }
711
712 static void bookmark_dnd_get_data(GtkWidget *widget,
713                                   GdkDragContext *context, gint x, gint y,
714                                   GtkSelectionData *selection_data, guint info,
715                                   guint time, gpointer data)
716 {
717         BookMarkData *bm = data;
718         GList *list = NULL;
719         GList *errors = NULL;
720         GList *work;
721         gchar **uris;
722
723         if (!bm->editable) return;
724
725         uris = gtk_selection_data_get_uris(selection_data);
726         list = uri_filelist_from_uris(uris, &errors);
727         if(errors)
728                 {
729                 warning_dialog_dnd_uri_error(errors);
730                 string_list_free(errors);
731                 }
732         g_strfreev(uris);
733
734         work = list;
735         while (work)
736                 {
737                 gchar *path = work->data;
738                 gchar *buf;
739
740                 work = work->next;
741
742                 if (bm->only_directories && !isdir(path)) continue;
743                 buf = bookmark_string(filename_from_path(path), path, NULL);
744                 history_list_add_to_key(bm->key, buf, 0);
745                 g_free(buf);
746                 }
747
748         string_list_free(list);
749
750         bookmark_populate_all(bm->key);
751 }
752
753 static void bookmark_list_destroy(GtkWidget *widget, gpointer data)
754 {
755         BookMarkData *bm = data;
756
757         bookmark_widget_list = g_list_remove(bookmark_widget_list, bm);
758
759         g_free(bm->key);
760         g_free(bm);
761 }
762
763 GtkWidget *bookmark_list_new(const gchar *key,
764                              void (*select_func)(const gchar *path, gpointer data), gpointer select_data)
765 {
766         GtkWidget *scrolled;
767         BookMarkData *bm;
768
769         if (!key) key = "bookmarks";
770
771         bm = g_new0(BookMarkData, 1);
772         bm->key = g_strdup(key);
773
774         bm->select_func = select_func;
775         bm->select_data = select_data;
776
777         bm->no_defaults = FALSE;
778         bm->editable = TRUE;
779         bm->only_directories = FALSE;
780
781         scrolled = gtk_scrolled_window_new(NULL, NULL);
782         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled),
783                                        GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
784
785         bm->box = gtk_vbox_new(FALSE, 0);
786         gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled), bm->box);
787         gtk_widget_show(bm->box);
788
789         bookmark_populate(bm);
790
791         g_signal_connect(G_OBJECT(bm->box), "destroy",
792                          G_CALLBACK(bookmark_list_destroy), bm);
793         g_object_set_data(G_OBJECT(bm->box), BOOKMARK_DATA_KEY, bm);
794         g_object_set_data(G_OBJECT(scrolled), BOOKMARK_DATA_KEY, bm);
795         bm->widget = scrolled;
796
797         gtk_drag_dest_set(scrolled,
798                           GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP,
799                           bookmark_drop_types, bookmark_drop_types_n,
800                           GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK);
801         g_signal_connect(G_OBJECT(scrolled), "drag_data_received",
802                          G_CALLBACK(bookmark_dnd_get_data), bm);
803
804         bookmark_widget_list = g_list_append(bookmark_widget_list, bm);
805
806         return scrolled;
807 }
808
809 void bookmark_list_set_key(GtkWidget *list, const gchar *key)
810 {
811         BookMarkData *bm;
812
813         if (!list || !key) return;
814
815         bm = g_object_get_data(G_OBJECT(list), BOOKMARK_DATA_KEY);
816         if (!bm) return;
817
818         if (bm->key && strcmp(bm->key, key) == 0) return;
819
820         g_free(bm->key);
821         bm->key = g_strdup(key);
822
823         bookmark_populate(bm);
824 }
825
826 void bookmark_list_set_no_defaults(GtkWidget *list, gboolean no_defaults)
827 {
828         BookMarkData *bm;
829
830         bm = g_object_get_data(G_OBJECT(list), BOOKMARK_DATA_KEY);
831         if (!bm) return;
832
833         bm->no_defaults = no_defaults;
834 }
835
836 void bookmark_list_set_editable(GtkWidget *list, gboolean editable)
837 {
838         BookMarkData *bm;
839
840         bm = g_object_get_data(G_OBJECT(list), BOOKMARK_DATA_KEY);
841         if (!bm) return;
842
843         bm->editable = editable;
844 }
845
846 void bookmark_list_set_only_directories(GtkWidget *list, gboolean only_directories)
847 {
848         BookMarkData *bm;
849
850         bm = g_object_get_data(G_OBJECT(list), BOOKMARK_DATA_KEY);
851         if (!bm) return;
852
853         bm->only_directories = only_directories;
854 }
855
856 void bookmark_list_add(GtkWidget *list, const gchar *name, const gchar *path)
857 {
858         BookMarkData *bm;
859         gchar *buf;
860
861         bm = g_object_get_data(G_OBJECT(list), BOOKMARK_DATA_KEY);
862         if (!bm) return;
863
864         buf = bookmark_string(name, path, NULL);
865         history_list_add_to_key(bm->key, buf, 0);
866         g_free(buf);
867
868         bookmark_populate_all(bm->key);
869 }
870
871 void bookmark_add_default(const gchar *name, const gchar *path)
872 {
873         if (!name || !path) return;
874         bookmark_default_list = g_list_append(bookmark_default_list, g_strdup(name));
875         bookmark_default_list = g_list_append(bookmark_default_list, g_strdup(path));
876 }
877
878 /*
879  *-----------------------------------------------------------------------------
880  * combo with history key
881  *-----------------------------------------------------------------------------
882  */
883
884 typedef struct _HistoryComboData HistoryComboData;
885 struct _HistoryComboData
886 {
887         GtkWidget *combo;
888         GtkWidget *entry;
889         gchar *history_key;
890         gint history_levels;
891 };
892
893 static void history_combo_destroy(GtkWidget *widget, gpointer data)
894 {
895         HistoryComboData *hc = data;
896
897         g_free(hc->history_key);
898         g_free(data);
899 }
900
901 /* if text is NULL, entry is set to the most recent item */
902 GtkWidget *history_combo_new(GtkWidget **entry, const gchar *text,
903                              const gchar *history_key, gint max_levels)
904 {
905         HistoryComboData *hc;
906         GList *work;
907         gint n = 0;
908
909         hc = g_new0(HistoryComboData, 1);
910         hc->history_key = g_strdup(history_key);
911         hc->history_levels = max_levels;
912
913         hc->combo = gtk_combo_box_text_new_with_entry();
914
915         hc->entry = gtk_bin_get_child(GTK_BIN(hc->combo));
916
917         g_object_set_data(G_OBJECT(hc->combo), "history_combo_data", hc);
918         g_object_set_data(G_OBJECT(hc->entry), "history_combo_data", hc);
919         g_signal_connect(G_OBJECT(hc->combo), "destroy",
920                          G_CALLBACK(history_combo_destroy), hc);
921
922         work = history_list_get_by_key(hc->history_key);
923         while (work)
924                 {
925                 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(hc->combo), (gchar *)work->data);
926                 work = work->next;
927                 n++;
928                 }
929
930         if (text)
931                 {
932                 gtk_entry_set_text(GTK_ENTRY(hc->entry), text);
933                 }
934         else if (n > 0)
935                 {
936                 gtk_combo_box_set_active(GTK_COMBO_BOX(hc->combo), 0);
937                 }
938
939         if (entry) *entry = hc->entry;
940         return hc->combo;
941 }
942
943 /* if text is NULL, current entry text is used
944  * widget can be the combo or entry widget
945  */
946 void history_combo_append_history(GtkWidget *widget, const gchar *text)
947 {
948         HistoryComboData *hc;
949         gchar *new_text;
950
951         hc = g_object_get_data(G_OBJECT(widget), "history_combo_data");
952         if (!hc)
953                 {
954                 log_printf("widget is not a history combo\n");
955                 return;
956                 }
957
958         if (text)
959                 {
960                 new_text = g_strdup(text);
961                 }
962         else
963                 {
964                 new_text = g_strdup(gtk_entry_get_text(GTK_ENTRY(hc->entry)));
965                 }
966
967         if (new_text && strlen(new_text) > 0)
968                 {
969                 GtkTreeModel *store;
970                 GList *work;
971
972                 history_list_add_to_key(hc->history_key, new_text, hc->history_levels);
973
974                 gtk_combo_box_set_active(GTK_COMBO_BOX(hc->combo), -1);
975
976                 store = gtk_combo_box_get_model(GTK_COMBO_BOX(hc->combo));
977                 gtk_list_store_clear(GTK_LIST_STORE(store));
978
979                 work = history_list_get_by_key(hc->history_key);
980                 while (work)
981                         {
982                         gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(hc->combo), (gchar *)work->data);
983                         work = work->next;
984                         }
985                 }
986
987         g_free(new_text);
988 }
989 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */