]> www.fi.muni.cz Git - evince.git/blob - shell/ev-sidebar-thumbnails.c
d86e6a553befb0ed62d4af8071f7161dc4acfed9
[evince.git] / shell / ev-sidebar-thumbnails.c
1 /* this file is part of evince, a gnome document viewer
2  *
3  *  Copyright (C) 2004 Red Hat, Inc.
4  *  Copyright (C) 2004, 2005 Anders Carlsson <andersca@gnome.org>
5  *
6  *  Authors:
7  *    Jonathan Blandford <jrb@alum.mit.edu>
8  *    Anders Carlsson <andersca@gnome.org>
9  *
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.
14  *
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.
19  *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include <string.h>
30
31 #include <glib/gi18n.h>
32 #include <gtk/gtk.h>
33
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"
39 #include "ev-utils.h"
40 #include "ev-window.h"
41
42 #define THUMBNAIL_WIDTH 100
43
44 /* The IconView doesn't scale nearly as well as the TreeView, so we arbitrarily
45  * limit its use */
46 #define MAX_ICON_VIEW_PAGE_COUNT 1500
47
48
49 struct _EvSidebarThumbnailsPrivate {
50         GtkWidget *swindow;
51         GtkWidget *icon_view;
52         GtkWidget *tree_view;
53         GtkAdjustment *vadjustment;
54         GtkListStore *list_store;
55         GHashTable *loading_icons;
56         EvDocument *document;
57         EvPageCache *page_cache;
58
59         gint n_pages, pages_done;
60
61         int rotation;
62
63         /* Visible pages */
64         gint start_page, end_page;
65 };
66
67 enum {
68         COLUMN_PAGE_STRING,
69         COLUMN_PIXBUF,
70         COLUMN_THUMBNAIL_SET,
71         COLUMN_JOB,
72         NUM_COLUMNS
73 };
74
75 enum {
76         PROP_0,
77         PROP_WIDGET,
78 };
79
80 static void         ev_sidebar_thumbnails_clear_model      (EvSidebarThumbnails *sidebar);
81 static gboolean     ev_sidebar_thumbnails_support_document (EvSidebarPage       *sidebar_page,
82                                                             EvDocument          *document);
83 static void         ev_sidebar_thumbnails_page_iface_init  (EvSidebarPageIface  *iface);
84 static void         ev_sidebar_thumbnails_set_document     (EvSidebarPage       *sidebar_page,
85                                                             EvDocument          *document);
86 static const gchar* ev_sidebar_thumbnails_get_label        (EvSidebarPage       *sidebar_page);
87 static void         thumbnail_job_completed_callback       (EvJobThumbnail      *job,
88                                                             EvSidebarThumbnails *sidebar_thumbnails);
89 static void         adjustment_changed_cb                  (EvSidebarThumbnails *sidebar_thumbnails);
90
91 G_DEFINE_TYPE_EXTENDED (EvSidebarThumbnails, 
92                         ev_sidebar_thumbnails, 
93                         GTK_TYPE_VBOX,
94                         0, 
95                         G_IMPLEMENT_INTERFACE (EV_TYPE_SIDEBAR_PAGE, 
96                                                ev_sidebar_thumbnails_page_iface_init))
97
98 #define EV_SIDEBAR_THUMBNAILS_GET_PRIVATE(object) \
99         (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_SIDEBAR_THUMBNAILS, EvSidebarThumbnailsPrivate));
100
101
102 static void
103 ev_sidebar_thumbnails_dispose (GObject *object)
104 {
105         EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (object);
106         
107         if (sidebar_thumbnails->priv->loading_icons) {
108                 g_hash_table_destroy (sidebar_thumbnails->priv->loading_icons);
109                 sidebar_thumbnails->priv->loading_icons = NULL;
110         }
111         
112         if (sidebar_thumbnails->priv->list_store) {
113                 ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
114                 g_object_unref (sidebar_thumbnails->priv->list_store);
115                 sidebar_thumbnails->priv->list_store = NULL;
116         }
117         
118         G_OBJECT_CLASS (ev_sidebar_thumbnails_parent_class)->dispose (object);
119 }
120
121 static void
122 ev_sidebar_thumbnails_get_property (GObject    *object,
123                                     guint       prop_id,
124                                     GValue     *value,
125                                     GParamSpec *pspec)
126 {
127         EvSidebarThumbnails *sidebar = EV_SIDEBAR_THUMBNAILS (object);
128
129         switch (prop_id) {
130         case PROP_WIDGET:
131                 if (sidebar->priv->tree_view)
132                         g_value_set_object (value, sidebar->priv->tree_view);
133                 else
134                         g_value_set_object (value, sidebar->priv->icon_view);
135                 break;
136         default:
137                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
138                 break;
139         }
140 }
141
142 static void
143 ev_sidebar_thumbnails_map (GtkWidget *widget)
144 {
145         EvSidebarThumbnails *sidebar;
146
147         sidebar = EV_SIDEBAR_THUMBNAILS (widget);
148
149         GTK_WIDGET_CLASS (ev_sidebar_thumbnails_parent_class)->map (widget);
150         
151         adjustment_changed_cb (sidebar);
152 }
153
154 static void
155 ev_sidebar_thumbnails_class_init (EvSidebarThumbnailsClass *ev_sidebar_thumbnails_class)
156 {
157         GObjectClass *g_object_class;
158         GtkObjectClass *gtk_object_class;
159         GtkWidgetClass *widget_class;
160
161         g_object_class = G_OBJECT_CLASS (ev_sidebar_thumbnails_class);
162         gtk_object_class = GTK_OBJECT_CLASS (ev_sidebar_thumbnails_class);
163         widget_class = GTK_WIDGET_CLASS (ev_sidebar_thumbnails_class);
164
165         g_object_class->dispose = ev_sidebar_thumbnails_dispose;
166         g_object_class->get_property = ev_sidebar_thumbnails_get_property;
167         widget_class->map = ev_sidebar_thumbnails_map;
168
169         g_object_class_override_property (g_object_class,
170                                           PROP_WIDGET,
171                                           "main-widget");
172
173         g_type_class_add_private (g_object_class, sizeof (EvSidebarThumbnailsPrivate));
174 }
175
176 GtkWidget *
177 ev_sidebar_thumbnails_new (void)
178 {
179         GtkWidget *ev_sidebar_thumbnails;
180
181         ev_sidebar_thumbnails = g_object_new (EV_TYPE_SIDEBAR_THUMBNAILS, NULL);
182
183         return ev_sidebar_thumbnails;
184 }
185
186 static GdkPixbuf *
187 ev_sidebar_thumbnails_get_loading_icon (EvSidebarThumbnails *sidebar_thumbnails,
188                                         gint                 width,
189                                         gint                 height)
190 {
191         GdkPixbuf *icon;
192         gchar     *key;
193
194         key = g_strdup_printf ("%dx%d", width, height);
195         icon = g_hash_table_lookup (sidebar_thumbnails->priv->loading_icons, key);
196         if (!icon) {
197                 icon = ev_document_misc_get_thumbnail_frame (width, height, NULL);
198                 g_hash_table_insert (sidebar_thumbnails->priv->loading_icons,
199                                      key, icon);
200         } else {
201                 g_free (key);
202         }
203         
204         return icon;
205 }
206
207 static void
208 clear_range (EvSidebarThumbnails *sidebar_thumbnails,
209              gint                 start_page,
210              gint                 end_page)
211 {
212         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
213         GtkTreePath *path;
214         GtkTreeIter iter;
215         gboolean result;
216         gint prev_width = -1;
217         gint prev_height = -1;
218
219         g_assert (start_page <= end_page);
220
221         path = gtk_tree_path_new_from_indices (start_page, -1);
222         for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
223              result && start_page <= end_page;
224              result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), start_page ++) {
225                 EvJobThumbnail *job;
226                 GdkPixbuf *loading_icon = NULL;
227                 gint width, height;
228
229                 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store),
230                                     &iter,
231                                     COLUMN_JOB, &job,
232                                     -1);
233
234                 if (job) {
235                         g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, sidebar_thumbnails);
236                         ev_job_cancel (EV_JOB (job));
237                         g_object_unref (job);
238                 }
239
240                 ev_page_cache_get_thumbnail_size (priv->page_cache, start_page,
241                                                   priv->rotation,
242                                                   &width, &height);
243                 if (!loading_icon || (width != prev_width && height != prev_height)) {
244                         loading_icon =
245                                 ev_sidebar_thumbnails_get_loading_icon (sidebar_thumbnails,
246                                                                         width, height);
247                 }
248
249                 prev_width = width;
250                 prev_height = height;
251
252                 gtk_list_store_set (priv->list_store, &iter,
253                                     COLUMN_JOB, NULL,
254                                     COLUMN_THUMBNAIL_SET, FALSE,
255                                     COLUMN_PIXBUF, loading_icon,
256                                     -1);
257         }
258         gtk_tree_path_free (path);
259 }
260
261 static gdouble
262 get_scale_for_page (EvSidebarThumbnails *sidebar_thumbnails,
263                     gint                 page)
264 {
265         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
266         gint width, height;
267
268         ev_page_cache_get_size (priv->page_cache,
269                                 page, 0,
270                                 1.0, &width, &height);
271         
272         return (gdouble)THUMBNAIL_WIDTH / (gdouble)width;
273 }
274
275 static void
276 add_range (EvSidebarThumbnails *sidebar_thumbnails,
277            gint                 start_page,
278            gint                 end_page)
279 {
280         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
281         GtkTreePath *path;
282         GtkTreeIter iter;
283         gboolean result;
284         gint page = start_page;
285
286         g_assert (start_page <= end_page);
287
288         path = gtk_tree_path_new_from_indices (start_page, -1);
289         for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
290              result && page <= end_page;
291              result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), page ++) {
292                 EvJob *job;
293                 gboolean thumbnail_set;
294
295                 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store), &iter,
296                                     COLUMN_JOB, &job,
297                                     COLUMN_THUMBNAIL_SET, &thumbnail_set,
298                                     -1);
299
300                 if (job == NULL && !thumbnail_set) {
301                         job = ev_job_thumbnail_new (priv->document,
302                                                     page, priv->rotation,
303                                                     get_scale_for_page (sidebar_thumbnails, page));
304                         ev_job_scheduler_push_job (EV_JOB (job), EV_JOB_PRIORITY_HIGH);
305                         
306                         g_object_set_data_full (G_OBJECT (job), "tree_iter",
307                                                 gtk_tree_iter_copy (&iter),
308                                                 (GDestroyNotify) gtk_tree_iter_free);
309                         g_signal_connect (job, "finished",
310                                           G_CALLBACK (thumbnail_job_completed_callback),
311                                           sidebar_thumbnails);
312                         gtk_list_store_set (priv->list_store, &iter,
313                                             COLUMN_JOB, job,
314                                             -1);
315                         
316                         /* The queue and the list own a ref to the job now */
317                         g_object_unref (job);
318                 } else if (job) {
319                         g_object_unref (job);
320                 }
321         }
322         gtk_tree_path_free (path);
323 }
324
325 /* This modifies start */
326 static void
327 update_visible_range (EvSidebarThumbnails *sidebar_thumbnails,
328                       gint                 start_page,
329                       gint                 end_page)
330 {
331         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
332         int old_start_page, old_end_page;
333
334         old_start_page = priv->start_page;
335         old_end_page = priv->end_page;
336
337         if (start_page == old_start_page &&
338             end_page == old_end_page)
339                 return;
340
341         /* Clear the areas we no longer display */
342         if (old_start_page >= 0 && old_start_page < start_page)
343                 clear_range (sidebar_thumbnails, old_start_page, MIN (start_page - 1, old_end_page));
344         
345         if (old_end_page > 0 && old_end_page > end_page)
346                 clear_range (sidebar_thumbnails, MAX (end_page + 1, old_start_page), old_end_page);
347
348         add_range (sidebar_thumbnails, start_page, end_page);
349         
350         priv->start_page = start_page;
351         priv->end_page = end_page;
352 }
353
354 static void
355 adjustment_changed_cb (EvSidebarThumbnails *sidebar_thumbnails)
356 {
357         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
358         GtkTreePath *path = NULL;
359         GtkTreePath *path2 = NULL;
360         gint wy1;
361         gint wy2;
362
363         /* Widget is not currently visible */
364         if (!GTK_WIDGET_MAPPED (sidebar_thumbnails))
365                 return;
366
367         if (priv->vadjustment->page_size == 0)
368                 return;
369         
370         if (priv->tree_view) {
371                 if (! GTK_WIDGET_REALIZED (priv->tree_view))
372                         return;
373
374                 gtk_tree_view_convert_tree_to_bin_window_coords (GTK_TREE_VIEW (priv->tree_view),
375                                                                  0, (int) priv->vadjustment->value,
376                                                                  NULL, &wy1);
377                 gtk_tree_view_convert_tree_to_bin_window_coords (GTK_TREE_VIEW (priv->tree_view),
378                                                                  0, (int) (priv->vadjustment->value + priv->vadjustment->page_size),
379                                                                  NULL, &wy2);
380                 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
381                                                1, wy1 + 1, &path,
382                                                NULL, NULL, NULL);
383                 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
384                                                1, wy2 -1, &path2,
385                                                NULL, NULL, NULL);
386         } else if (priv->icon_view) {
387                 if (! GTK_WIDGET_REALIZED (priv->icon_view))
388                         return;
389                 if (! gtk_icon_view_get_visible_range (GTK_ICON_VIEW (priv->icon_view), &path, &path2))
390                         return;
391         } else {
392                 return;
393         }
394
395         if (path && path2) {
396                 update_visible_range (sidebar_thumbnails,
397                                       gtk_tree_path_get_indices (path)[0],
398                                       gtk_tree_path_get_indices (path2)[0]);
399         }
400
401         gtk_tree_path_free (path);
402         gtk_tree_path_free (path2);
403 }
404
405 static void
406 ev_sidebar_thumbnails_fill_model (EvSidebarThumbnails *sidebar_thumbnails)
407 {
408         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
409         GtkTreeIter iter;
410         int i;
411         gint prev_width = -1;
412         gint prev_height = -1;
413
414         for (i = 0; i < sidebar_thumbnails->priv->n_pages; i++) {
415                 gchar     *page_label;
416                 gchar     *page_string;
417                 GdkPixbuf *loading_icon = NULL;
418                 gint       width, height;
419
420                 page_label = ev_page_cache_get_page_label (priv->page_cache, i);
421                 page_string = g_markup_printf_escaped ("<i>%s</i>", page_label);
422                 ev_page_cache_get_thumbnail_size (sidebar_thumbnails->priv->page_cache, i,
423                                                   sidebar_thumbnails->priv->rotation,
424                                                   &width, &height);
425                 if (!loading_icon || (width != prev_width && height != prev_height)) {
426                         loading_icon =
427                                 ev_sidebar_thumbnails_get_loading_icon (sidebar_thumbnails,
428                                                                         width, height);
429                 }
430
431                 prev_width = width;
432                 prev_height = height;
433                 
434                 gtk_list_store_append (priv->list_store, &iter);
435                 gtk_list_store_set (priv->list_store, &iter,
436                                     COLUMN_PAGE_STRING, page_string,
437                                     COLUMN_PIXBUF, loading_icon,
438                                     COLUMN_THUMBNAIL_SET, FALSE,
439                                     -1);
440                 g_free (page_label);
441                 g_free (page_string);
442         }
443 }
444
445 static gboolean
446 refresh (EvSidebarThumbnails *sidebar_thumbnails)
447 {
448         adjustment_changed_cb (sidebar_thumbnails);
449         return FALSE;
450 }
451
452 void
453 ev_sidebar_thumbnails_refresh (EvSidebarThumbnails *sidebar_thumbnails,
454                                int                  rotation)
455 {
456         sidebar_thumbnails->priv->rotation = rotation;
457         if (sidebar_thumbnails->priv->loading_icons)
458                 g_hash_table_remove_all (sidebar_thumbnails->priv->loading_icons);
459
460         if (sidebar_thumbnails->priv->document == NULL ||
461             sidebar_thumbnails->priv->n_pages <= 0)
462                 return;
463
464         ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
465         ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
466
467         /* Trigger a redraw */
468         sidebar_thumbnails->priv->start_page = -1;
469         sidebar_thumbnails->priv->end_page = -1;
470         g_idle_add ((GSourceFunc)refresh, sidebar_thumbnails);
471 }
472
473 static void
474 ev_sidebar_tree_selection_changed (GtkTreeSelection *selection,
475                                    EvSidebarThumbnails *ev_sidebar_thumbnails)
476 {
477         EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
478         GtkTreePath *path;
479         GtkTreeIter iter;
480         int page;
481
482         if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
483                 return;
484
485         path = gtk_tree_model_get_path (GTK_TREE_MODEL (priv->list_store),
486                                         &iter);
487         page = gtk_tree_path_get_indices (path)[0];
488         gtk_tree_path_free (path);
489
490         ev_page_cache_set_current_page_history (priv->page_cache, page);
491 }
492
493 static void
494 ev_sidebar_icon_selection_changed (GtkIconView         *icon_view,
495                                    EvSidebarThumbnails *ev_sidebar_thumbnails)
496 {
497         EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
498         GtkTreePath *path;
499         GList *selected;
500         int page;
501
502         selected = gtk_icon_view_get_selected_items (icon_view);
503         if (selected == NULL)
504                 return;
505
506         /* We don't handle or expect multiple selection. */
507         g_assert (selected->next == NULL);
508
509         path = selected->data;
510         page = gtk_tree_path_get_indices (path)[0];
511
512         gtk_tree_path_free (path);
513         g_list_free (selected);
514
515         ev_page_cache_set_current_page_history (priv->page_cache, page);
516 }
517
518 static void
519 ev_sidebar_init_tree_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
520 {
521         EvSidebarThumbnailsPrivate *priv;
522         GtkTreeSelection *selection;
523         GtkCellRenderer *renderer;
524
525         priv = ev_sidebar_thumbnails->priv;
526         priv->tree_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
527
528         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
529         g_signal_connect (selection, "changed",
530                           G_CALLBACK (ev_sidebar_tree_selection_changed), ev_sidebar_thumbnails);
531         gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->tree_view), FALSE);
532         renderer = g_object_new (GTK_TYPE_CELL_RENDERER_PIXBUF,
533                                  "xpad", 2,
534                                  "ypad", 2,
535                                  NULL);
536         gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
537                                                      NULL, renderer,
538                                                      "pixbuf", 1,
539                                                      NULL);
540         gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
541                                                      NULL, gtk_cell_renderer_text_new (),
542                                                      "markup", 0, NULL);
543         gtk_container_add (GTK_CONTAINER (priv->swindow), priv->tree_view);
544         gtk_widget_show (priv->tree_view);
545 }
546
547 static void
548 ev_sidebar_init_icon_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
549 {
550         EvSidebarThumbnailsPrivate *priv;
551
552         priv = ev_sidebar_thumbnails->priv;
553
554         priv->icon_view = gtk_icon_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
555         gtk_icon_view_set_markup_column (GTK_ICON_VIEW (priv->icon_view), 0);
556         gtk_icon_view_set_pixbuf_column (GTK_ICON_VIEW (priv->icon_view), 1);
557         g_signal_connect (priv->icon_view, "selection-changed",
558                           G_CALLBACK (ev_sidebar_icon_selection_changed), ev_sidebar_thumbnails);
559
560         gtk_container_add (GTK_CONTAINER (priv->swindow), priv->icon_view);
561         gtk_widget_show (priv->icon_view);
562 }
563
564 static gboolean
565 ev_sidebar_thumbnails_use_icon_view (EvSidebarThumbnails *sidebar_thumbnails)
566 {
567         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
568         if (ev_page_cache_get_n_pages (priv->page_cache) > MAX_ICON_VIEW_PAGE_COUNT)
569                 return FALSE;
570         return TRUE;
571 }
572
573 static void
574 ev_sidebar_thumbnails_init (EvSidebarThumbnails *ev_sidebar_thumbnails)
575 {
576         EvSidebarThumbnailsPrivate *priv;
577
578         priv = ev_sidebar_thumbnails->priv = EV_SIDEBAR_THUMBNAILS_GET_PRIVATE (ev_sidebar_thumbnails);
579
580         priv->list_store = gtk_list_store_new (NUM_COLUMNS,
581                                                G_TYPE_STRING,
582                                                GDK_TYPE_PIXBUF,
583                                                G_TYPE_BOOLEAN,
584                                                EV_TYPE_JOB_THUMBNAIL);
585
586         priv->swindow = gtk_scrolled_window_new (NULL, NULL);
587         
588         /* We actually don't want GTK_POLICY_AUTOMATIC for horizontal scrollbar here
589          * it's just a workaround for bug #449462
590          */
591         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->swindow),
592                                         GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
593         gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (priv->swindow),
594                                              GTK_SHADOW_IN);
595         priv->vadjustment = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (priv->swindow));
596         g_signal_connect_data (priv->vadjustment, "value-changed",
597                                G_CALLBACK (adjustment_changed_cb),
598                                ev_sidebar_thumbnails, NULL,
599                                G_CONNECT_SWAPPED | G_CONNECT_AFTER);
600         g_signal_connect_swapped (priv->swindow, "size-allocate",
601                                   G_CALLBACK (adjustment_changed_cb),
602                                   ev_sidebar_thumbnails);
603         gtk_box_pack_start (GTK_BOX (ev_sidebar_thumbnails), priv->swindow, TRUE, TRUE, 0);
604
605         /* Put it all together */
606         gtk_widget_show_all (priv->swindow);
607 }
608
609 static void
610 page_changed_cb (EvPageCache         *page_cache,
611                  int                  page,
612                  EvSidebarThumbnails *sidebar)
613 {
614         GtkTreeView *tree_view;
615         GtkTreePath *path;
616
617         path = gtk_tree_path_new_from_indices (page, -1);
618
619         if (sidebar->priv->tree_view) {
620                 tree_view = GTK_TREE_VIEW (sidebar->priv->tree_view);
621                 gtk_tree_view_set_cursor (tree_view, path, NULL, FALSE);
622                 gtk_tree_view_scroll_to_cell (tree_view, path, NULL, FALSE, 0.0, 0.0);
623         } else if (sidebar->priv->icon_view) {
624
625                 g_signal_handlers_block_by_func
626                         (sidebar->priv->icon_view,
627                          G_CALLBACK (ev_sidebar_icon_selection_changed), sidebar);
628
629                 gtk_icon_view_select_path (GTK_ICON_VIEW (sidebar->priv->icon_view), path);
630
631                 g_signal_handlers_unblock_by_func
632                         (sidebar->priv->icon_view,
633                          G_CALLBACK (ev_sidebar_icon_selection_changed), sidebar);
634
635                 gtk_icon_view_set_cursor (GTK_ICON_VIEW (sidebar->priv->icon_view), path, NULL, FALSE);
636         }
637
638         gtk_tree_path_free (path);
639 }
640
641 static void
642 thumbnail_job_completed_callback (EvJobThumbnail      *job,
643                                   EvSidebarThumbnails *sidebar_thumbnails)
644 {
645         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
646         GtkTreeIter *iter;
647
648         iter = (GtkTreeIter *) g_object_get_data (G_OBJECT (job), "tree_iter");
649         gtk_list_store_set (priv->list_store,
650                             iter,
651                             COLUMN_PIXBUF, job->thumbnail,
652                             COLUMN_THUMBNAIL_SET, TRUE,
653                             COLUMN_JOB, NULL,
654                             -1);
655 }
656
657 static void
658 ev_sidebar_thumbnails_set_document (EvSidebarPage       *sidebar_page,
659                                     EvDocument          *document)
660 {
661         EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (sidebar_page);
662
663         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
664
665         priv->page_cache = ev_page_cache_get (document);
666
667         if (!EV_IS_DOCUMENT_THUMBNAILS (document) ||
668             ev_page_cache_get_n_pages (priv->page_cache) <= 0 ||
669             ev_page_cache_check_dimensions (priv->page_cache)) {
670                 return;
671         }
672
673         priv->document = document;
674         priv->n_pages = ev_page_cache_get_n_pages (priv->page_cache);
675         priv->loading_icons = g_hash_table_new_full (g_str_hash,
676                                                      g_str_equal,
677                                                      (GDestroyNotify)g_free,
678                                                      (GDestroyNotify)g_object_unref);
679
680         ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
681         ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
682
683         /* Create the view widget, and remove the old one, if needed */
684         if (ev_sidebar_thumbnails_use_icon_view (sidebar_thumbnails)) {
685                 if (priv->tree_view) {
686                         gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->tree_view);
687                         priv->tree_view = NULL;
688                 }
689
690                 if (! priv->icon_view) {
691                         ev_sidebar_init_icon_view (sidebar_thumbnails);
692                         g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
693                 } else {
694                         gtk_widget_queue_resize (priv->icon_view);
695                 }
696         } else {
697                 if (priv->icon_view) {
698                         gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->icon_view);
699                         priv->icon_view = NULL;
700                 }
701
702                 if (! priv->tree_view) {
703                         ev_sidebar_init_tree_view (sidebar_thumbnails);
704                         g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
705                 }
706         }
707
708         /* Connect to the signal and trigger a fake callback */
709         g_signal_connect (priv->page_cache, "page-changed", G_CALLBACK (page_changed_cb), sidebar_thumbnails);
710         sidebar_thumbnails->priv->start_page = -1;
711         sidebar_thumbnails->priv->end_page = -1;
712         page_changed_cb (priv->page_cache,
713                          ev_page_cache_get_current_page (priv->page_cache),
714                          sidebar_thumbnails);
715         adjustment_changed_cb (sidebar_thumbnails);
716 }
717
718 static gboolean
719 ev_sidebar_thumbnails_clear_job (GtkTreeModel *model,                                             
720                                  GtkTreePath *path,
721                                  GtkTreeIter *iter,
722                                  gpointer data)
723 {
724         EvJob *job;
725         
726         gtk_tree_model_get (model, iter, COLUMN_JOB, &job, -1);
727         
728         if (job != NULL) {
729                 ev_job_cancel (job);
730                 g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, data);
731                 g_object_unref (job);
732         }
733         
734         return FALSE;    
735 }
736
737 static void 
738 ev_sidebar_thumbnails_clear_model (EvSidebarThumbnails *sidebar_thumbnails)
739 {
740         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
741         
742         gtk_tree_model_foreach (GTK_TREE_MODEL (priv->list_store), ev_sidebar_thumbnails_clear_job, sidebar_thumbnails);
743         gtk_list_store_clear (priv->list_store);
744 }
745
746 static gboolean
747 ev_sidebar_thumbnails_support_document (EvSidebarPage   *sidebar_page,
748                                         EvDocument *document)
749 {
750         return (EV_IS_DOCUMENT_THUMBNAILS (document));
751 }
752
753 static const gchar*
754 ev_sidebar_thumbnails_get_label (EvSidebarPage *sidebar_page)
755 {
756         return _("Thumbnails");
757 }
758
759 static void
760 ev_sidebar_thumbnails_page_iface_init (EvSidebarPageIface *iface)
761 {
762         iface->support_document = ev_sidebar_thumbnails_support_document;
763         iface->set_document = ev_sidebar_thumbnails_set_document;
764         iface->get_label = ev_sidebar_thumbnails_get_label;
765 }
766