1 /* this file is part of evince, a gnome document viewer
3 * Copyright (C) 2004 Red Hat, Inc.
4 * Copyright (C) 2004, 2005 Anders Carlsson <andersca@gnome.org>
7 * Jonathan Blandford <jrb@alum.mit.edu>
8 * Anders Carlsson <andersca@gnome.org>
10 * Evince is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * Evince is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
31 #include <glib/gi18n.h>
34 #include "ev-document-misc.h"
35 #include "ev-document-thumbnails.h"
36 #include "ev-job-scheduler.h"
37 #include "ev-sidebar-page.h"
38 #include "ev-sidebar-thumbnails.h"
40 #include "ev-window.h"
42 #define THUMBNAIL_WIDTH 100
44 /* The IconView doesn't scale nearly as well as the TreeView, so we arbitrarily
46 #define MAX_ICON_VIEW_PAGE_COUNT 1500
48 typedef struct _EvThumbsSize
54 typedef struct _EvThumbsSizeCache {
61 struct _EvSidebarThumbnailsPrivate {
65 GtkAdjustment *vadjustment;
66 GtkListStore *list_store;
67 GHashTable *loading_icons;
69 EvDocumentModel *model;
70 EvThumbsSizeCache *size_cache;
72 gint n_pages, pages_done;
75 gboolean inverted_colors;
78 gint start_page, end_page;
94 static void ev_sidebar_thumbnails_clear_model (EvSidebarThumbnails *sidebar);
95 static gboolean ev_sidebar_thumbnails_support_document (EvSidebarPage *sidebar_page,
96 EvDocument *document);
97 static void ev_sidebar_thumbnails_page_iface_init (EvSidebarPageIface *iface);
98 static const gchar* ev_sidebar_thumbnails_get_label (EvSidebarPage *sidebar_page);
99 static void thumbnail_job_completed_callback (EvJobThumbnail *job,
100 EvSidebarThumbnails *sidebar_thumbnails);
101 static void adjustment_changed_cb (EvSidebarThumbnails *sidebar_thumbnails);
103 G_DEFINE_TYPE_EXTENDED (EvSidebarThumbnails,
104 ev_sidebar_thumbnails,
107 G_IMPLEMENT_INTERFACE (EV_TYPE_SIDEBAR_PAGE,
108 ev_sidebar_thumbnails_page_iface_init))
110 #define EV_SIDEBAR_THUMBNAILS_GET_PRIVATE(object) \
111 (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_SIDEBAR_THUMBNAILS, EvSidebarThumbnailsPrivate));
113 /* Thumbnails dimensions cache */
114 #define EV_THUMBNAILS_SIZE_CACHE_KEY "ev-thumbnails-size-cache"
116 static EvThumbsSizeCache *
117 ev_thumbnails_size_cache_new (EvDocument *document)
119 EvThumbsSizeCache *cache;
120 EvRenderContext *rc = NULL;
122 EvThumbsSize *thumb_size;
124 cache = g_new0 (EvThumbsSizeCache, 1);
126 n_pages = ev_document_get_n_pages (document);
128 /* Assume all pages are the same size until proven otherwise */
129 cache->uniform = TRUE;
131 for (i = 0; i < n_pages; i++) {
133 gdouble page_width, page_height;
134 gint thumb_width = 0;
135 gint thumb_height = 0;
137 page = ev_document_get_page (document, i);
139 ev_document_get_page_size (document, i, &page_width, &page_height);
142 rc = ev_render_context_new (page, 0, (gdouble)THUMBNAIL_WIDTH / page_width);
144 ev_render_context_set_page (rc, page);
145 ev_render_context_set_scale (rc, (gdouble)THUMBNAIL_WIDTH / page_width);
148 ev_document_thumbnails_get_dimensions (EV_DOCUMENT_THUMBNAILS (document),
149 rc, &thumb_width, &thumb_height);
152 cache->uniform_width = thumb_width;
153 cache->uniform_height = thumb_height;
154 } else if (cache->uniform &&
155 (cache->uniform_width != thumb_width ||
156 cache->uniform_height != thumb_height)) {
157 /* It's a different thumbnail size. Backfill the array. */
160 cache->sizes = g_new0 (EvThumbsSize, n_pages);
162 for (j = 0; j < i; j++) {
163 thumb_size = &(cache->sizes[j]);
164 thumb_size->width = cache->uniform_width;
165 thumb_size->height = cache->uniform_height;
167 cache->uniform = FALSE;
170 if (! cache->uniform) {
171 thumb_size = &(cache->sizes[i]);
173 thumb_size->width = thumb_width;
174 thumb_size->height = thumb_height;
177 g_object_unref (page);
188 ev_thumbnails_size_cache_get_size (EvThumbsSizeCache *cache,
196 if (cache->uniform) {
197 w = cache->uniform_width;
198 h = cache->uniform_height;
200 EvThumbsSize *thumb_size;
202 thumb_size = &(cache->sizes[page]);
204 w = thumb_size->width;
205 h = thumb_size->height;
208 if (rotation == 0 || rotation == 180) {
209 if (width) *width = w;
210 if (height) *height = h;
212 if (width) *width = h;
213 if (height) *height = w;
218 ev_thumbnails_size_cache_free (EvThumbsSizeCache *cache)
221 g_free (cache->sizes);
228 static EvThumbsSizeCache *
229 ev_thumbnails_size_cache_get (EvDocument *document)
231 EvThumbsSizeCache *cache;
233 cache = g_object_get_data (G_OBJECT (document), EV_THUMBNAILS_SIZE_CACHE_KEY);
235 cache = ev_thumbnails_size_cache_new (document);
236 g_object_set_data_full (G_OBJECT (document),
237 EV_THUMBNAILS_SIZE_CACHE_KEY,
239 (GDestroyNotify)ev_thumbnails_size_cache_free);
247 ev_sidebar_thumbnails_dispose (GObject *object)
249 EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (object);
251 if (sidebar_thumbnails->priv->loading_icons) {
252 g_hash_table_destroy (sidebar_thumbnails->priv->loading_icons);
253 sidebar_thumbnails->priv->loading_icons = NULL;
256 if (sidebar_thumbnails->priv->list_store) {
257 ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
258 g_object_unref (sidebar_thumbnails->priv->list_store);
259 sidebar_thumbnails->priv->list_store = NULL;
262 G_OBJECT_CLASS (ev_sidebar_thumbnails_parent_class)->dispose (object);
266 ev_sidebar_thumbnails_get_property (GObject *object,
271 EvSidebarThumbnails *sidebar = EV_SIDEBAR_THUMBNAILS (object);
275 if (sidebar->priv->tree_view)
276 g_value_set_object (value, sidebar->priv->tree_view);
278 g_value_set_object (value, sidebar->priv->icon_view);
281 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
287 ev_sidebar_thumbnails_map (GtkWidget *widget)
289 EvSidebarThumbnails *sidebar;
291 sidebar = EV_SIDEBAR_THUMBNAILS (widget);
293 GTK_WIDGET_CLASS (ev_sidebar_thumbnails_parent_class)->map (widget);
295 adjustment_changed_cb (sidebar);
299 ev_sidebar_thumbnails_class_init (EvSidebarThumbnailsClass *ev_sidebar_thumbnails_class)
301 GObjectClass *g_object_class;
302 GtkObjectClass *gtk_object_class;
303 GtkWidgetClass *widget_class;
305 g_object_class = G_OBJECT_CLASS (ev_sidebar_thumbnails_class);
306 gtk_object_class = GTK_OBJECT_CLASS (ev_sidebar_thumbnails_class);
307 widget_class = GTK_WIDGET_CLASS (ev_sidebar_thumbnails_class);
309 g_object_class->dispose = ev_sidebar_thumbnails_dispose;
310 g_object_class->get_property = ev_sidebar_thumbnails_get_property;
311 widget_class->map = ev_sidebar_thumbnails_map;
313 g_object_class_override_property (g_object_class,
317 g_type_class_add_private (g_object_class, sizeof (EvSidebarThumbnailsPrivate));
321 ev_sidebar_thumbnails_new (void)
323 GtkWidget *ev_sidebar_thumbnails;
325 ev_sidebar_thumbnails = g_object_new (EV_TYPE_SIDEBAR_THUMBNAILS, NULL);
327 return ev_sidebar_thumbnails;
331 ev_sidebar_thumbnails_get_loading_icon (EvSidebarThumbnails *sidebar_thumbnails,
335 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
339 key = g_strdup_printf ("%dx%d", width, height);
340 icon = g_hash_table_lookup (priv->loading_icons, key);
342 gboolean inverted_colors;
344 inverted_colors = ev_document_model_get_inverted_colors (priv->model);
345 icon = ev_document_misc_get_loading_thumbnail (width, height, inverted_colors);
346 g_hash_table_insert (priv->loading_icons, key, icon);
355 clear_range (EvSidebarThumbnails *sidebar_thumbnails,
359 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
363 gint prev_width = -1;
364 gint prev_height = -1;
366 g_assert (start_page <= end_page);
368 path = gtk_tree_path_new_from_indices (start_page, -1);
369 for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
370 result && start_page <= end_page;
371 result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), start_page ++) {
373 GdkPixbuf *loading_icon = NULL;
376 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store),
382 g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, sidebar_thumbnails);
383 ev_job_cancel (EV_JOB (job));
384 g_object_unref (job);
387 ev_thumbnails_size_cache_get_size (priv->size_cache, start_page,
390 if (!loading_icon || (width != prev_width && height != prev_height)) {
392 ev_sidebar_thumbnails_get_loading_icon (sidebar_thumbnails,
397 prev_height = height;
399 gtk_list_store_set (priv->list_store, &iter,
401 COLUMN_THUMBNAIL_SET, FALSE,
402 COLUMN_PIXBUF, loading_icon,
405 gtk_tree_path_free (path);
409 get_scale_for_page (EvSidebarThumbnails *sidebar_thumbnails,
412 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
415 ev_document_get_page_size (priv->document, page, &width, NULL);
417 return (gdouble)THUMBNAIL_WIDTH / width;
421 add_range (EvSidebarThumbnails *sidebar_thumbnails,
425 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
429 gint page = start_page;
431 g_assert (start_page <= end_page);
433 path = gtk_tree_path_new_from_indices (start_page, -1);
434 for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
435 result && page <= end_page;
436 result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), page ++) {
438 gboolean thumbnail_set;
440 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store), &iter,
442 COLUMN_THUMBNAIL_SET, &thumbnail_set,
445 if (job == NULL && !thumbnail_set) {
446 job = ev_job_thumbnail_new (priv->document,
447 page, priv->rotation,
448 get_scale_for_page (sidebar_thumbnails, page));
449 ev_job_scheduler_push_job (EV_JOB (job), EV_JOB_PRIORITY_HIGH);
451 g_object_set_data_full (G_OBJECT (job), "tree_iter",
452 gtk_tree_iter_copy (&iter),
453 (GDestroyNotify) gtk_tree_iter_free);
454 g_signal_connect (job, "finished",
455 G_CALLBACK (thumbnail_job_completed_callback),
457 gtk_list_store_set (priv->list_store, &iter,
461 /* The queue and the list own a ref to the job now */
462 g_object_unref (job);
464 g_object_unref (job);
467 gtk_tree_path_free (path);
470 /* This modifies start */
472 update_visible_range (EvSidebarThumbnails *sidebar_thumbnails,
476 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
477 int old_start_page, old_end_page;
479 old_start_page = priv->start_page;
480 old_end_page = priv->end_page;
482 if (start_page == old_start_page &&
483 end_page == old_end_page)
486 /* Clear the areas we no longer display */
487 if (old_start_page >= 0 && old_start_page < start_page)
488 clear_range (sidebar_thumbnails, old_start_page, MIN (start_page - 1, old_end_page));
490 if (old_end_page > 0 && old_end_page > end_page)
491 clear_range (sidebar_thumbnails, MAX (end_page + 1, old_start_page), old_end_page);
493 add_range (sidebar_thumbnails, start_page, end_page);
495 priv->start_page = start_page;
496 priv->end_page = end_page;
500 adjustment_changed_cb (EvSidebarThumbnails *sidebar_thumbnails)
502 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
503 GtkTreePath *path = NULL;
504 GtkTreePath *path2 = NULL;
510 /* Widget is not currently visible */
511 if (!gtk_widget_get_mapped (GTK_WIDGET (sidebar_thumbnails)))
514 page_size = gtk_adjustment_get_page_size (priv->vadjustment);
519 value = gtk_adjustment_get_value (priv->vadjustment);
521 if (priv->tree_view) {
522 if (! gtk_widget_get_realized (priv->tree_view))
525 gtk_tree_view_convert_tree_to_bin_window_coords (GTK_TREE_VIEW (priv->tree_view),
528 gtk_tree_view_convert_tree_to_bin_window_coords (GTK_TREE_VIEW (priv->tree_view),
529 0, (int) (value + page_size),
531 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
534 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
537 } else if (priv->icon_view) {
538 if (! gtk_widget_get_realized (priv->icon_view))
540 if (! gtk_icon_view_get_visible_range (GTK_ICON_VIEW (priv->icon_view), &path, &path2))
547 update_visible_range (sidebar_thumbnails,
548 gtk_tree_path_get_indices (path)[0],
549 gtk_tree_path_get_indices (path2)[0]);
552 gtk_tree_path_free (path);
553 gtk_tree_path_free (path2);
557 ev_sidebar_thumbnails_fill_model (EvSidebarThumbnails *sidebar_thumbnails)
559 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
562 gint prev_width = -1;
563 gint prev_height = -1;
565 for (i = 0; i < sidebar_thumbnails->priv->n_pages; i++) {
568 GdkPixbuf *loading_icon = NULL;
571 page_label = ev_document_get_page_label (priv->document, i);
572 page_string = g_markup_printf_escaped ("<i>%s</i>", page_label);
573 ev_thumbnails_size_cache_get_size (sidebar_thumbnails->priv->size_cache, i,
574 sidebar_thumbnails->priv->rotation,
576 if (!loading_icon || (width != prev_width && height != prev_height)) {
578 ev_sidebar_thumbnails_get_loading_icon (sidebar_thumbnails,
583 prev_height = height;
585 gtk_list_store_append (priv->list_store, &iter);
586 gtk_list_store_set (priv->list_store, &iter,
587 COLUMN_PAGE_STRING, page_string,
588 COLUMN_PIXBUF, loading_icon,
589 COLUMN_THUMBNAIL_SET, FALSE,
592 g_free (page_string);
597 ev_sidebar_tree_selection_changed (GtkTreeSelection *selection,
598 EvSidebarThumbnails *ev_sidebar_thumbnails)
600 EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
605 if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
608 path = gtk_tree_model_get_path (GTK_TREE_MODEL (priv->list_store),
610 page = gtk_tree_path_get_indices (path)[0];
611 gtk_tree_path_free (path);
613 ev_document_model_set_page (priv->model, page);
617 ev_sidebar_icon_selection_changed (GtkIconView *icon_view,
618 EvSidebarThumbnails *ev_sidebar_thumbnails)
620 EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
625 selected = gtk_icon_view_get_selected_items (icon_view);
626 if (selected == NULL)
629 /* We don't handle or expect multiple selection. */
630 g_assert (selected->next == NULL);
632 path = selected->data;
633 page = gtk_tree_path_get_indices (path)[0];
635 gtk_tree_path_free (path);
636 g_list_free (selected);
638 ev_document_model_set_page (priv->model, page);
642 ev_sidebar_init_tree_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
644 EvSidebarThumbnailsPrivate *priv;
645 GtkTreeSelection *selection;
646 GtkCellRenderer *renderer;
648 priv = ev_sidebar_thumbnails->priv;
649 priv->tree_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
651 selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
652 g_signal_connect (selection, "changed",
653 G_CALLBACK (ev_sidebar_tree_selection_changed), ev_sidebar_thumbnails);
654 gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->tree_view), FALSE);
655 renderer = g_object_new (GTK_TYPE_CELL_RENDERER_PIXBUF,
659 gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
663 gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
664 NULL, gtk_cell_renderer_text_new (),
666 gtk_container_add (GTK_CONTAINER (priv->swindow), priv->tree_view);
667 gtk_widget_show (priv->tree_view);
671 ev_sidebar_init_icon_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
673 EvSidebarThumbnailsPrivate *priv;
675 priv = ev_sidebar_thumbnails->priv;
677 priv->icon_view = gtk_icon_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
678 gtk_icon_view_set_markup_column (GTK_ICON_VIEW (priv->icon_view), 0);
679 gtk_icon_view_set_pixbuf_column (GTK_ICON_VIEW (priv->icon_view), 1);
680 g_signal_connect (priv->icon_view, "selection-changed",
681 G_CALLBACK (ev_sidebar_icon_selection_changed), ev_sidebar_thumbnails);
683 gtk_container_add (GTK_CONTAINER (priv->swindow), priv->icon_view);
684 gtk_widget_show (priv->icon_view);
688 ev_sidebar_thumbnails_use_icon_view (EvSidebarThumbnails *sidebar_thumbnails)
690 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
692 return (ev_document_get_n_pages (priv->document) <= MAX_ICON_VIEW_PAGE_COUNT);
696 ev_sidebar_thumbnails_init (EvSidebarThumbnails *ev_sidebar_thumbnails)
698 EvSidebarThumbnailsPrivate *priv;
700 priv = ev_sidebar_thumbnails->priv = EV_SIDEBAR_THUMBNAILS_GET_PRIVATE (ev_sidebar_thumbnails);
702 priv->list_store = gtk_list_store_new (NUM_COLUMNS,
706 EV_TYPE_JOB_THUMBNAIL);
708 priv->swindow = gtk_scrolled_window_new (NULL, NULL);
710 /* We actually don't want GTK_POLICY_AUTOMATIC for horizontal scrollbar here
711 * it's just a workaround for bug #449462
713 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->swindow),
714 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
715 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (priv->swindow),
717 priv->vadjustment = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (priv->swindow));
718 g_signal_connect_data (priv->vadjustment, "value-changed",
719 G_CALLBACK (adjustment_changed_cb),
720 ev_sidebar_thumbnails, NULL,
721 G_CONNECT_SWAPPED | G_CONNECT_AFTER);
722 g_signal_connect_swapped (priv->swindow, "size-allocate",
723 G_CALLBACK (adjustment_changed_cb),
724 ev_sidebar_thumbnails);
725 gtk_box_pack_start (GTK_BOX (ev_sidebar_thumbnails), priv->swindow, TRUE, TRUE, 0);
727 /* Put it all together */
728 gtk_widget_show_all (priv->swindow);
732 ev_sidebar_thumbnails_set_current_page (EvSidebarThumbnails *sidebar,
735 GtkTreeView *tree_view;
738 path = gtk_tree_path_new_from_indices (page, -1);
740 if (sidebar->priv->tree_view) {
741 tree_view = GTK_TREE_VIEW (sidebar->priv->tree_view);
742 gtk_tree_view_set_cursor (tree_view, path, NULL, FALSE);
743 gtk_tree_view_scroll_to_cell (tree_view, path, NULL, FALSE, 0.0, 0.0);
744 } else if (sidebar->priv->icon_view) {
746 g_signal_handlers_block_by_func
747 (sidebar->priv->icon_view,
748 G_CALLBACK (ev_sidebar_icon_selection_changed), sidebar);
750 gtk_icon_view_select_path (GTK_ICON_VIEW (sidebar->priv->icon_view), path);
752 g_signal_handlers_unblock_by_func
753 (sidebar->priv->icon_view,
754 G_CALLBACK (ev_sidebar_icon_selection_changed), sidebar);
756 gtk_icon_view_set_cursor (GTK_ICON_VIEW (sidebar->priv->icon_view), path, NULL, FALSE);
759 gtk_tree_path_free (path);
763 page_changed_cb (EvSidebarThumbnails *sidebar,
767 ev_sidebar_thumbnails_set_current_page (sidebar, new_page);
771 refresh (EvSidebarThumbnails *sidebar_thumbnails)
773 adjustment_changed_cb (sidebar_thumbnails);
778 ev_sidebar_thumbnails_reload (EvSidebarThumbnails *sidebar_thumbnails)
780 EvDocumentModel *model;
782 if (sidebar_thumbnails->priv->loading_icons)
783 g_hash_table_remove_all (sidebar_thumbnails->priv->loading_icons);
785 if (sidebar_thumbnails->priv->document == NULL ||
786 sidebar_thumbnails->priv->n_pages <= 0)
789 model = sidebar_thumbnails->priv->model;
791 ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
792 ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
794 /* Trigger a redraw */
795 sidebar_thumbnails->priv->start_page = -1;
796 sidebar_thumbnails->priv->end_page = -1;
797 ev_sidebar_thumbnails_set_current_page (sidebar_thumbnails,
798 ev_document_model_get_page (model));
799 g_idle_add ((GSourceFunc)refresh, sidebar_thumbnails);
803 ev_sidebar_thumbnails_rotation_changed_cb (EvDocumentModel *model,
805 EvSidebarThumbnails *sidebar_thumbnails)
807 gint rotation = ev_document_model_get_rotation (model);
809 sidebar_thumbnails->priv->rotation = rotation;
810 ev_sidebar_thumbnails_reload (sidebar_thumbnails);
814 ev_sidebar_thumbnails_inverted_colors_changed_cb (EvDocumentModel *model,
816 EvSidebarThumbnails *sidebar_thumbnails)
818 gboolean inverted_colors = ev_document_model_get_inverted_colors (model);
820 sidebar_thumbnails->priv->inverted_colors = inverted_colors;
821 ev_sidebar_thumbnails_reload (sidebar_thumbnails);
825 thumbnail_job_completed_callback (EvJobThumbnail *job,
826 EvSidebarThumbnails *sidebar_thumbnails)
828 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
831 iter = (GtkTreeIter *) g_object_get_data (G_OBJECT (job), "tree_iter");
832 if (priv->inverted_colors)
833 ev_document_misc_invert_pixbuf (job->thumbnail);
834 gtk_list_store_set (priv->list_store,
836 COLUMN_PIXBUF, job->thumbnail,
837 COLUMN_THUMBNAIL_SET, TRUE,
843 ev_sidebar_thumbnails_document_changed_cb (EvDocumentModel *model,
845 EvSidebarThumbnails *sidebar_thumbnails)
847 EvDocument *document = ev_document_model_get_document (model);
848 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
850 if (!EV_IS_DOCUMENT_THUMBNAILS (document) ||
851 ev_document_get_n_pages (document) <= 0 ||
852 !ev_document_check_dimensions (document)) {
856 priv->size_cache = ev_thumbnails_size_cache_get (document);
857 priv->document = document;
858 priv->n_pages = ev_document_get_n_pages (document);
859 priv->rotation = ev_document_model_get_rotation (model);
860 priv->inverted_colors = ev_document_model_get_inverted_colors (model);
861 priv->loading_icons = g_hash_table_new_full (g_str_hash,
863 (GDestroyNotify)g_free,
864 (GDestroyNotify)g_object_unref);
866 ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
867 ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
869 /* Create the view widget, and remove the old one, if needed */
870 if (ev_sidebar_thumbnails_use_icon_view (sidebar_thumbnails)) {
871 if (priv->tree_view) {
872 gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->tree_view);
873 priv->tree_view = NULL;
876 if (! priv->icon_view) {
877 ev_sidebar_init_icon_view (sidebar_thumbnails);
878 g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
880 gtk_widget_queue_resize (priv->icon_view);
883 if (priv->icon_view) {
884 gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->icon_view);
885 priv->icon_view = NULL;
888 if (! priv->tree_view) {
889 ev_sidebar_init_tree_view (sidebar_thumbnails);
890 g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
894 /* Connect to the signal and trigger a fake callback */
895 g_signal_connect_swapped (priv->model, "page-changed",
896 G_CALLBACK (page_changed_cb),
898 g_signal_connect (priv->model, "notify::rotation",
899 G_CALLBACK (ev_sidebar_thumbnails_rotation_changed_cb),
901 g_signal_connect (priv->model, "notify::inverted-colors",
902 G_CALLBACK (ev_sidebar_thumbnails_inverted_colors_changed_cb),
904 sidebar_thumbnails->priv->start_page = -1;
905 sidebar_thumbnails->priv->end_page = -1;
906 ev_sidebar_thumbnails_set_current_page (sidebar_thumbnails,
907 ev_document_model_get_page (model));
908 adjustment_changed_cb (sidebar_thumbnails);
912 ev_sidebar_thumbnails_set_model (EvSidebarPage *sidebar_page,
913 EvDocumentModel *model)
915 EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (sidebar_page);
916 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
918 if (priv->model == model)
922 g_signal_connect (model, "notify::document",
923 G_CALLBACK (ev_sidebar_thumbnails_document_changed_cb),
928 ev_sidebar_thumbnails_clear_job (GtkTreeModel *model,
935 gtk_tree_model_get (model, iter, COLUMN_JOB, &job, -1);
939 g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, data);
940 g_object_unref (job);
947 ev_sidebar_thumbnails_clear_model (EvSidebarThumbnails *sidebar_thumbnails)
949 EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
951 gtk_tree_model_foreach (GTK_TREE_MODEL (priv->list_store), ev_sidebar_thumbnails_clear_job, sidebar_thumbnails);
952 gtk_list_store_clear (priv->list_store);
956 ev_sidebar_thumbnails_support_document (EvSidebarPage *sidebar_page,
957 EvDocument *document)
959 return (EV_IS_DOCUMENT_THUMBNAILS (document));
963 ev_sidebar_thumbnails_get_label (EvSidebarPage *sidebar_page)
965 return _("Thumbnails");
969 ev_sidebar_thumbnails_page_iface_init (EvSidebarPageIface *iface)
971 iface->support_document = ev_sidebar_thumbnails_support_document;
972 iface->set_model = ev_sidebar_thumbnails_set_model;
973 iface->get_label = ev_sidebar_thumbnails_get_label;