1 /* ev-sidebar-attachments.c
2 * this file is part of evince, a gnome document viewer
4 * Copyright (C) 2006 Carlos Garcia Campos
7 * Carlos Garcia Campos <carlosgc@gnome.org>
9 * Evince is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * Evince is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
30 #include <glib/gi18n.h>
31 #include <glib/gstdio.h>
34 #include "ev-document-attachments.h"
36 #include "ev-job-scheduler.h"
37 #include "ev-file-helpers.h"
38 #include "ev-sidebar-attachments.h"
39 #include "ev-sidebar-page.h"
59 static guint signals[N_SIGNALS];
61 struct _EvSidebarAttachmentsPrivate {
66 GtkIconTheme *icon_theme;
67 GHashTable *icon_cache;
70 static void ev_sidebar_attachments_page_iface_init (EvSidebarPageInterface *iface);
72 G_DEFINE_TYPE_EXTENDED (EvSidebarAttachments,
73 ev_sidebar_attachments,
76 G_IMPLEMENT_INTERFACE (EV_TYPE_SIDEBAR_PAGE,
77 ev_sidebar_attachments_page_iface_init))
79 #define EV_SIDEBAR_ATTACHMENTS_GET_PRIVATE(object) \
80 (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_SIDEBAR_ATTACHMENTS, EvSidebarAttachmentsPrivate))
84 ev_sidebar_attachments_icon_cache_add (EvSidebarAttachments *ev_attachbar,
85 const gchar *mime_type,
86 const GdkPixbuf *pixbuf)
88 g_assert (mime_type != NULL);
89 g_assert (GDK_IS_PIXBUF (pixbuf));
91 g_hash_table_insert (ev_attachbar->priv->icon_cache,
92 (gpointer)g_strdup (mime_type),
98 icon_theme_get_pixbuf_from_mime_type (GtkIconTheme *icon_theme,
99 const gchar *mime_type)
101 const char *separator;
105 separator = strchr (mime_type, '/');
107 return NULL; /* maybe we should return a GError with "invalid MIME-type" */
109 icon_name = g_string_new ("gnome-mime-");
110 g_string_append_len (icon_name, mime_type, separator - mime_type);
111 g_string_append_c (icon_name, '-');
112 g_string_append (icon_name, separator + 1);
113 pixbuf = gtk_icon_theme_load_icon (icon_theme, icon_name->str, 48, 0, NULL);
114 g_string_free (icon_name, TRUE);
118 icon_name = g_string_new ("gnome-mime-");
119 g_string_append_len (icon_name, mime_type, separator - mime_type);
120 pixbuf = gtk_icon_theme_load_icon (icon_theme, icon_name->str, 48, 0, NULL);
121 g_string_free (icon_name, TRUE);
127 ev_sidebar_attachments_icon_cache_get (EvSidebarAttachments *ev_attachbar,
128 const gchar *mime_type)
130 GdkPixbuf *pixbuf = NULL;
132 g_assert (mime_type != NULL);
134 pixbuf = g_hash_table_lookup (ev_attachbar->priv->icon_cache,
137 if (GDK_IS_PIXBUF (pixbuf))
140 pixbuf = icon_theme_get_pixbuf_from_mime_type (ev_attachbar->priv->icon_theme,
143 if (GDK_IS_PIXBUF (pixbuf))
144 ev_sidebar_attachments_icon_cache_add (ev_attachbar,
152 icon_cache_update_icon (gchar *key,
154 EvSidebarAttachments *ev_attachbar)
156 GdkPixbuf *pixbuf = NULL;
158 pixbuf = icon_theme_get_pixbuf_from_mime_type (ev_attachbar->priv->icon_theme,
161 ev_sidebar_attachments_icon_cache_add (ev_attachbar,
169 ev_sidebar_attachments_icon_cache_refresh (EvSidebarAttachments *ev_attachbar)
171 g_hash_table_foreach_remove (ev_attachbar->priv->icon_cache,
172 (GHRFunc) icon_cache_update_icon,
176 static EvAttachment *
177 ev_sidebar_attachments_get_attachment_at_pos (EvSidebarAttachments *ev_attachbar,
181 GtkTreePath *path = NULL;
183 EvAttachment *attachment = NULL;
185 path = gtk_icon_view_get_path_at_pos (GTK_ICON_VIEW (ev_attachbar->priv->icon_view),
191 gtk_tree_model_get_iter (GTK_TREE_MODEL (ev_attachbar->priv->model),
193 gtk_tree_model_get (GTK_TREE_MODEL (ev_attachbar->priv->model), &iter,
194 COLUMN_ATTACHMENT, &attachment,
197 gtk_icon_view_select_path (GTK_ICON_VIEW (ev_attachbar->priv->icon_view),
200 gtk_tree_path_free (path);
206 ev_sidebar_attachments_popup_menu_show (EvSidebarAttachments *ev_attachbar,
210 GtkIconView *icon_view;
212 GList *selected = NULL, *l;
213 GList *attach_list = NULL;
215 icon_view = GTK_ICON_VIEW (ev_attachbar->priv->icon_view);
217 path = gtk_icon_view_get_path_at_pos (icon_view, x, y);
221 if (!gtk_icon_view_path_is_selected (icon_view, path)) {
222 gtk_icon_view_unselect_all (icon_view);
223 gtk_icon_view_select_path (icon_view, path);
226 gtk_tree_path_free (path);
228 selected = gtk_icon_view_get_selected_items (icon_view);
232 for (l = selected; l && l->data; l = g_list_next (l)) {
234 EvAttachment *attachment = NULL;
236 path = (GtkTreePath *) l->data;
238 gtk_tree_model_get_iter (GTK_TREE_MODEL (ev_attachbar->priv->model),
240 gtk_tree_model_get (GTK_TREE_MODEL (ev_attachbar->priv->model), &iter,
241 COLUMN_ATTACHMENT, &attachment,
245 attach_list = g_list_prepend (attach_list, attachment);
247 gtk_tree_path_free (path);
250 g_list_free (selected);
255 g_signal_emit (ev_attachbar, signals[SIGNAL_POPUP_MENU], 0, attach_list);
261 ev_sidebar_attachments_popup_menu (GtkWidget *widget)
263 EvSidebarAttachments *ev_attachbar = EV_SIDEBAR_ATTACHMENTS (widget);
266 gtk_widget_get_pointer (widget, &x, &y);
268 return ev_sidebar_attachments_popup_menu_show (ev_attachbar, x, y);
272 ev_sidebar_attachments_button_press (EvSidebarAttachments *ev_attachbar,
273 GdkEventButton *event,
274 GtkWidget *icon_view)
276 if (!gtk_widget_has_focus (icon_view)) {
277 gtk_widget_grab_focus (icon_view);
280 if (event->button == 2)
283 switch (event->button) {
285 if (event->type == GDK_2BUTTON_PRESS) {
286 GError *error = NULL;
287 EvAttachment *attachment;
289 attachment = ev_sidebar_attachments_get_attachment_at_pos (ev_attachbar,
295 ev_attachment_open (attachment,
296 gtk_widget_get_screen (GTK_WIDGET (ev_attachbar)),
301 g_warning ("%s", error->message);
302 g_error_free (error);
305 g_object_unref (attachment);
311 return ev_sidebar_attachments_popup_menu_show (ev_attachbar, event->x, event->y);
318 ev_sidebar_attachments_update_icons (EvSidebarAttachments *ev_attachbar,
324 ev_sidebar_attachments_icon_cache_refresh (ev_attachbar);
326 valid = gtk_tree_model_get_iter_first (
327 GTK_TREE_MODEL (ev_attachbar->priv->model),
331 EvAttachment *attachment = NULL;
332 GdkPixbuf *pixbuf = NULL;
333 const gchar *mime_type;
335 gtk_tree_model_get (GTK_TREE_MODEL (ev_attachbar->priv->model), &iter,
336 COLUMN_ATTACHMENT, &attachment,
339 mime_type = ev_attachment_get_mime_type (attachment);
342 g_object_unref (attachment);
344 pixbuf = ev_sidebar_attachments_icon_cache_get (ev_attachbar,
347 gtk_list_store_set (ev_attachbar->priv->model, &iter,
351 valid = gtk_tree_model_iter_next (
352 GTK_TREE_MODEL (ev_attachbar->priv->model),
358 ev_sidebar_attachments_screen_changed (GtkWidget *widget,
359 GdkScreen *old_screen)
361 EvSidebarAttachments *ev_attachbar = EV_SIDEBAR_ATTACHMENTS (widget);
364 if (!ev_attachbar->priv->icon_theme)
367 screen = gtk_widget_get_screen (widget);
368 if (screen == old_screen)
372 g_signal_handlers_disconnect_by_func (
373 gtk_icon_theme_get_for_screen (old_screen),
374 G_CALLBACK (ev_sidebar_attachments_update_icons),
378 ev_attachbar->priv->icon_theme = gtk_icon_theme_get_for_screen (screen);
379 g_signal_connect_swapped (ev_attachbar->priv->icon_theme,
381 G_CALLBACK (ev_sidebar_attachments_update_icons),
382 (gpointer) ev_attachbar);
384 if (GTK_WIDGET_CLASS (ev_sidebar_attachments_parent_class)->screen_changed) {
385 GTK_WIDGET_CLASS (ev_sidebar_attachments_parent_class)->screen_changed (widget, old_screen);
390 ev_sidebar_attachments_drag_data_get (GtkWidget *widget,
391 GdkDragContext *drag_context,
392 GtkSelectionData *data,
397 EvSidebarAttachments *ev_attachbar = EV_SIDEBAR_ATTACHMENTS (user_data);
398 GList *selected = NULL, *l;
402 selected = gtk_icon_view_get_selected_items (GTK_ICON_VIEW (ev_attachbar->priv->icon_view));
406 uris = g_ptr_array_new ();
408 for (l = selected; l && l->data; l = g_list_next (l)) {
409 EvAttachment *attachment;
414 GError *error = NULL;
416 path = (GtkTreePath *) l->data;
418 gtk_tree_model_get_iter (GTK_TREE_MODEL (ev_attachbar->priv->model),
420 gtk_tree_model_get (GTK_TREE_MODEL (ev_attachbar->priv->model), &iter,
421 COLUMN_ATTACHMENT, &attachment,
424 /* FIXMEchpe: convert to filename encoding first! */
425 template = g_strdup_printf ("%s.XXXXXX", ev_attachment_get_name (attachment));
426 file = ev_mkstemp_file (template, &error);
429 if (file != NULL && ev_attachment_save (attachment, file, &error)) {
432 uri = g_file_get_uri (file);
433 g_ptr_array_add (uris, uri);
437 g_warning ("%s", error->message);
438 g_error_free (error);
441 gtk_tree_path_free (path);
442 g_object_unref (file);
443 g_object_unref (attachment);
446 g_ptr_array_add (uris, NULL); /* NULL-terminate */
447 uri_list = (char **) g_ptr_array_free (uris, FALSE);
448 gtk_selection_data_set_uris (data, uri_list);
449 g_strfreev (uri_list);
451 g_list_free (selected);
455 ev_sidebar_attachments_get_property (GObject *object,
460 EvSidebarAttachments *ev_sidebar_attachments;
462 ev_sidebar_attachments = EV_SIDEBAR_ATTACHMENTS (object);
466 g_value_set_object (value, ev_sidebar_attachments->priv->icon_view);
469 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
475 ev_sidebar_attachments_dispose (GObject *object)
477 EvSidebarAttachments *ev_attachbar = EV_SIDEBAR_ATTACHMENTS (object);
479 if (ev_attachbar->priv->icon_theme) {
480 g_signal_handlers_disconnect_by_func (
481 ev_attachbar->priv->icon_theme,
482 G_CALLBACK (ev_sidebar_attachments_update_icons),
484 ev_attachbar->priv->icon_theme = NULL;
487 if (ev_attachbar->priv->model) {
488 g_object_unref (ev_attachbar->priv->model);
489 ev_attachbar->priv->model = NULL;
492 if (ev_attachbar->priv->icon_cache) {
493 g_hash_table_destroy (ev_attachbar->priv->icon_cache);
494 ev_attachbar->priv->icon_cache = NULL;
497 G_OBJECT_CLASS (ev_sidebar_attachments_parent_class)->dispose (object);
501 ev_sidebar_attachments_class_init (EvSidebarAttachmentsClass *ev_attachbar_class)
503 GObjectClass *g_object_class;
504 GtkWidgetClass *gtk_widget_class;
506 g_object_class = G_OBJECT_CLASS (ev_attachbar_class);
507 gtk_widget_class = GTK_WIDGET_CLASS (ev_attachbar_class);
509 g_object_class->get_property = ev_sidebar_attachments_get_property;
510 g_object_class->dispose = ev_sidebar_attachments_dispose;
511 gtk_widget_class->popup_menu = ev_sidebar_attachments_popup_menu;
512 gtk_widget_class->screen_changed = ev_sidebar_attachments_screen_changed;
514 g_type_class_add_private (g_object_class, sizeof (EvSidebarAttachmentsPrivate));
517 signals[SIGNAL_POPUP_MENU] =
518 g_signal_new ("popup",
519 G_TYPE_FROM_CLASS (g_object_class),
520 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
521 G_STRUCT_OFFSET (EvSidebarAttachmentsClass, popup_menu),
523 g_cclosure_marshal_VOID__POINTER,
527 g_object_class_override_property (g_object_class,
533 ev_sidebar_attachments_init (EvSidebarAttachments *ev_attachbar)
537 ev_attachbar->priv = EV_SIDEBAR_ATTACHMENTS_GET_PRIVATE (ev_attachbar);
539 swindow = gtk_scrolled_window_new (NULL, NULL);
540 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swindow),
542 GTK_POLICY_AUTOMATIC);
543 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (swindow),
546 ev_attachbar->priv->model = gtk_list_store_new (N_COLS,
553 ev_attachbar->priv->icon_view =
554 gtk_icon_view_new_with_model (GTK_TREE_MODEL (ev_attachbar->priv->model));
555 gtk_icon_view_set_selection_mode (GTK_ICON_VIEW (ev_attachbar->priv->icon_view),
556 GTK_SELECTION_MULTIPLE);
557 gtk_icon_view_set_columns (GTK_ICON_VIEW (ev_attachbar->priv->icon_view), -1);
558 g_object_set (G_OBJECT (ev_attachbar->priv->icon_view),
559 "text-column", COLUMN_NAME,
560 "pixbuf-column", COLUMN_ICON,
562 g_signal_connect_swapped (ev_attachbar->priv->icon_view,
563 "button-press-event",
564 G_CALLBACK (ev_sidebar_attachments_button_press),
565 (gpointer) ev_attachbar);
567 gtk_container_add (GTK_CONTAINER (swindow),
568 ev_attachbar->priv->icon_view);
570 gtk_container_add (GTK_CONTAINER (ev_attachbar),
572 gtk_widget_show_all (GTK_WIDGET (ev_attachbar));
575 ev_attachbar->priv->icon_theme = NULL;
578 ev_attachbar->priv->icon_cache = g_hash_table_new_full (g_str_hash,
584 gtk_icon_view_enable_model_drag_source (
585 GTK_ICON_VIEW (ev_attachbar->priv->icon_view),
589 gtk_drag_source_add_uri_targets (ev_attachbar->priv->icon_view);
591 g_signal_connect (ev_attachbar->priv->icon_view,
593 G_CALLBACK (ev_sidebar_attachments_drag_data_get),
594 (gpointer) ev_attachbar);
598 ev_sidebar_attachments_new (void)
600 GtkWidget *ev_attachbar;
602 ev_attachbar = g_object_new (EV_TYPE_SIDEBAR_ATTACHMENTS, NULL);
608 job_finished_callback (EvJobAttachments *job,
609 EvSidebarAttachments *ev_attachbar)
613 for (l = job->attachments; l && l->data; l = g_list_next (l)) {
614 EvAttachment *attachment;
616 GdkPixbuf *pixbuf = NULL;
617 const gchar *mime_type;
619 attachment = EV_ATTACHMENT (l->data);
621 mime_type = ev_attachment_get_mime_type (attachment);
622 pixbuf = ev_sidebar_attachments_icon_cache_get (ev_attachbar,
625 gtk_list_store_append (ev_attachbar->priv->model, &iter);
626 gtk_list_store_set (ev_attachbar->priv->model, &iter,
627 COLUMN_NAME, ev_attachment_get_name (attachment),
629 COLUMN_ATTACHMENT, attachment,
633 g_object_unref (job);
638 ev_sidebar_attachments_document_changed_cb (EvDocumentModel *model,
640 EvSidebarAttachments *ev_attachbar)
642 EvDocument *document = ev_document_model_get_document (model);
645 if (!EV_IS_DOCUMENT_ATTACHMENTS (document))
648 if (!ev_document_attachments_has_attachments (EV_DOCUMENT_ATTACHMENTS (document)))
651 if (!ev_attachbar->priv->icon_theme) {
654 screen = gtk_widget_get_screen (GTK_WIDGET (ev_attachbar));
655 ev_attachbar->priv->icon_theme = gtk_icon_theme_get_for_screen (screen);
656 g_signal_connect_swapped (ev_attachbar->priv->icon_theme,
658 G_CALLBACK (ev_sidebar_attachments_update_icons),
659 (gpointer) ev_attachbar);
662 gtk_list_store_clear (ev_attachbar->priv->model);
664 job = ev_job_attachments_new (document);
665 g_signal_connect (job, "finished",
666 G_CALLBACK (job_finished_callback),
668 g_signal_connect (job, "cancelled",
669 G_CALLBACK (g_object_unref),
671 /* The priority doesn't matter for this job */
672 ev_job_scheduler_push_job (job, EV_JOB_PRIORITY_NONE);
676 ev_sidebar_attachments_set_model (EvSidebarPage *page,
677 EvDocumentModel *model)
679 g_signal_connect (model, "notify::document",
680 G_CALLBACK (ev_sidebar_attachments_document_changed_cb),
685 ev_sidebar_attachments_support_document (EvSidebarPage *sidebar_page,
686 EvDocument *document)
688 return (EV_IS_DOCUMENT_ATTACHMENTS (document) &&
689 ev_document_attachments_has_attachments (EV_DOCUMENT_ATTACHMENTS (document)));
693 ev_sidebar_attachments_get_label (EvSidebarPage *sidebar_page)
695 return _("Attachments");
699 ev_sidebar_attachments_page_iface_init (EvSidebarPageInterface *iface)
701 iface->support_document = ev_sidebar_attachments_support_document;
702 iface->set_model = ev_sidebar_attachments_set_model;
703 iface->get_label = ev_sidebar_attachments_get_label;