]> www.fi.muni.cz Git - evince.git/blob - shell/ev-sidebar-thumbnails.c
Really make use of the orientation bit of the render context. Use the
[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 #include <gtk/gtk.h>
31 #include <glib/gi18n.h>
32
33 #include "ev-sidebar-page.h"
34 #include "ev-sidebar-thumbnails.h"
35 #include "ev-document-thumbnails.h"
36 #include "ev-document-misc.h"
37 #include "ev-job-queue.h"
38 #include "ev-window.h"
39 #include "ev-utils.h"
40
41 #define THUMBNAIL_WIDTH 100
42
43 /* The IconView doesn't scale nearly as well as the TreeView, so we arbitrarily
44  * limit its use */
45 #define MAX_ICON_VIEW_PAGE_COUNT 1500
46
47
48 struct _EvSidebarThumbnailsPrivate {
49         GtkWidget *swindow;
50         GtkWidget *icon_view;
51         GtkWidget *tree_view;
52         GtkAdjustment *vadjustment;
53         GtkListStore *list_store;
54         GdkPixbuf *loading_icon;
55         EvDocument *document;
56         EvPageCache *page_cache;
57
58         gint n_pages, pages_done;
59
60         /* Visible pages */
61         gint start_page, end_page;
62 };
63
64 enum {
65         COLUMN_PAGE_STRING,
66         COLUMN_PIXBUF,
67         COLUMN_THUMBNAIL_SET,
68         COLUMN_JOB,
69         NUM_COLUMNS
70 };
71
72 enum {
73         PROP_0,
74         PROP_WIDGET,
75 };
76
77 static void         ev_sidebar_thumbnails_clear_model      (EvSidebarThumbnails *sidebar);
78 static gboolean     ev_sidebar_thumbnails_support_document (EvSidebarPage       *sidebar_page,
79                                                             EvDocument          *document);
80 static void         ev_sidebar_thumbnails_page_iface_init  (EvSidebarPageIface  *iface);
81 static void         ev_sidebar_thumbnails_set_document     (EvSidebarPage       *sidebar_page,
82                                                             EvDocument          *document);
83 static const gchar* ev_sidebar_thumbnails_get_label        (EvSidebarPage       *sidebar_page);
84 static void         thumbnail_job_completed_callback       (EvJobThumbnail      *job,
85                                                             EvSidebarThumbnails *sidebar_thumbnails);
86
87 G_DEFINE_TYPE_EXTENDED (EvSidebarThumbnails, 
88                         ev_sidebar_thumbnails, 
89                         GTK_TYPE_VBOX,
90                         0, 
91                         G_IMPLEMENT_INTERFACE (EV_TYPE_SIDEBAR_PAGE, 
92                                                ev_sidebar_thumbnails_page_iface_init))
93
94 #define EV_SIDEBAR_THUMBNAILS_GET_PRIVATE(object) \
95         (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_SIDEBAR_THUMBNAILS, EvSidebarThumbnailsPrivate));
96
97
98 static void
99 ev_sidebar_thumbnails_dispose (GObject *object)
100 {
101         EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (object);
102         
103         ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
104         if (sidebar_thumbnails->priv->loading_icon) {
105                 g_object_unref (sidebar_thumbnails->priv->loading_icon);
106                 sidebar_thumbnails->priv->loading_icon = NULL;
107         }
108         
109         if (sidebar_thumbnails->priv->list_store) {
110                 g_object_unref (sidebar_thumbnails->priv->list_store);
111                 sidebar_thumbnails->priv->list_store = NULL;
112         }
113         
114         G_OBJECT_CLASS (ev_sidebar_thumbnails_parent_class)->dispose (object);
115 }
116
117 static void
118 ev_sidebar_thumbnails_get_property (GObject    *object,
119                                          guint       prop_id,
120                                          GValue     *value,
121                                          GParamSpec *pspec)
122 {
123         EvSidebarThumbnails *sidebar = EV_SIDEBAR_THUMBNAILS (object);
124
125         switch (prop_id)
126         {
127         case PROP_WIDGET:
128                 if (sidebar->priv->tree_view)
129                         g_value_set_object (value, sidebar->priv->tree_view);
130                 else
131                         g_value_set_object (value, sidebar->priv->icon_view);
132                 break;
133         default:
134                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
135                 break;
136         }
137 }
138
139 static void
140 ev_sidebar_thumbnails_class_init (EvSidebarThumbnailsClass *ev_sidebar_thumbnails_class)
141 {
142         GObjectClass *g_object_class;
143         GtkObjectClass *gtk_object_class;
144
145         g_object_class = G_OBJECT_CLASS (ev_sidebar_thumbnails_class);
146         gtk_object_class = GTK_OBJECT_CLASS (ev_sidebar_thumbnails_class);
147
148         g_object_class->dispose = ev_sidebar_thumbnails_dispose;
149         g_object_class->get_property = ev_sidebar_thumbnails_get_property;
150
151         g_object_class_override_property (g_object_class,
152                                           PROP_WIDGET,
153                                           "main-widget");
154
155         g_type_class_add_private (g_object_class, sizeof (EvSidebarThumbnailsPrivate));
156 }
157
158 GtkWidget *
159 ev_sidebar_thumbnails_new (void)
160 {
161         GtkWidget *ev_sidebar_thumbnails;
162
163         ev_sidebar_thumbnails = g_object_new (EV_TYPE_SIDEBAR_THUMBNAILS, NULL);
164
165         return ev_sidebar_thumbnails;
166 }
167
168 static void
169 clear_range (EvSidebarThumbnails *sidebar_thumbnails,
170              gint                 start_page,
171              gint                 end_page)
172 {
173         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
174         GtkTreePath *path;
175         GtkTreeIter iter;
176         gboolean result;
177
178         g_assert (start_page <= end_page);
179
180         path = gtk_tree_path_new_from_indices (start_page, -1);
181         for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
182              result && start_page <= end_page;
183              result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), start_page ++) {
184                 EvJobThumbnail *job;
185
186                 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store),
187                                     &iter,
188                                     COLUMN_JOB, &job,
189                                     -1);
190
191                 if (job) {
192                         g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, sidebar_thumbnails);
193                         ev_job_queue_remove_job (EV_JOB (job));
194                         g_object_unref (job);
195                 }
196
197                 gtk_list_store_set (priv->list_store, &iter,
198                                     COLUMN_JOB, NULL,
199                                     COLUMN_THUMBNAIL_SET, FALSE,
200                                     COLUMN_PIXBUF, priv->loading_icon,
201                                     -1);
202         }
203         gtk_tree_path_free (path);
204 }
205
206 static void
207 add_range (EvSidebarThumbnails *sidebar_thumbnails,
208            gint                 start_page,
209            gint                 end_page)
210 {
211         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
212         GtkTreePath *path;
213         GtkTreeIter iter;
214         gboolean result;
215         gint page = start_page;
216
217         g_assert (start_page <= end_page);
218
219         path = gtk_tree_path_new_from_indices (start_page, -1);
220         for (result = gtk_tree_model_get_iter (GTK_TREE_MODEL (priv->list_store), &iter, path);
221              result && page <= end_page;
222              result = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store), &iter), page ++) {
223                 EvJobThumbnail *job;
224                 gboolean thumbnail_set;
225
226                 gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store), &iter,
227                                     COLUMN_JOB, &job,
228                                     COLUMN_THUMBNAIL_SET, &thumbnail_set,
229                                     -1);
230
231                 if (job == NULL && !thumbnail_set) {
232                         job = (EvJobThumbnail *)ev_job_thumbnail_new (priv->document, page, THUMBNAIL_WIDTH,
233                                                                       EV_ORIENTATION_PORTRAIT);
234                         ev_job_queue_add_job (EV_JOB (job), EV_JOB_PRIORITY_HIGH);
235                         g_object_set_data_full (G_OBJECT (job), "tree_iter",
236                                                 gtk_tree_iter_copy (&iter),
237                                                 (GDestroyNotify) gtk_tree_iter_free);
238                         g_signal_connect (job, "finished",
239                                           G_CALLBACK (thumbnail_job_completed_callback),
240                                           sidebar_thumbnails);
241                         gtk_list_store_set (priv->list_store, &iter,
242                                             COLUMN_JOB, job,
243                                             -1);
244                         /* The queue and the list own a ref to the job now */
245                         g_object_unref (job);
246                 } else if (job) {
247                         g_object_unref (job);
248                 }
249         }
250         gtk_tree_path_free (path);
251 }
252
253 /* This modifies start */
254 static void
255 update_visible_range (EvSidebarThumbnails *sidebar_thumbnails,
256                       gint                 start_page,
257                       gint                 end_page)
258 {
259         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
260         int old_start_page, old_end_page;
261
262         old_start_page = priv->start_page;
263         old_end_page = priv->end_page;
264
265         if (start_page == old_start_page &&
266             end_page == old_end_page)
267                 return;
268
269         /* Clear the areas we no longer display */
270         if (old_start_page < start_page)
271                 clear_range (sidebar_thumbnails, old_start_page, MIN (start_page - 1, old_end_page));
272
273         if (old_end_page > end_page)
274                 clear_range (sidebar_thumbnails, MAX (end_page + 1, old_start_page), old_end_page);
275
276         add_range (sidebar_thumbnails, start_page, end_page);
277         
278         priv->start_page = start_page;
279         priv->end_page = end_page;
280 }
281
282 static void
283 adjustment_changed_cb (EvSidebarThumbnails *sidebar_thumbnails)
284 {
285         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
286         GtkTreePath *path = NULL;
287         GtkTreePath *path2 = NULL;
288         gint wy1;
289         gint wy2;
290
291         if (priv->tree_view) {
292                 if (! GTK_WIDGET_REALIZED (priv->tree_view))
293                         return;
294
295                 gtk_tree_view_tree_to_widget_coords (GTK_TREE_VIEW (priv->tree_view),
296                                                      0, (int) priv->vadjustment->value,
297                                                      NULL, &wy1);
298                 gtk_tree_view_tree_to_widget_coords (GTK_TREE_VIEW (priv->tree_view),
299                                                      0, (int) (priv->vadjustment->value + priv->vadjustment->page_size),
300                                                      NULL, &wy2);
301                 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
302                                                1, wy1 + 1, &path,
303                                                NULL, NULL, NULL);
304                 gtk_tree_view_get_path_at_pos (GTK_TREE_VIEW (priv->tree_view),
305                                                1, wy2 -1, &path2,
306                                                NULL, NULL, NULL);
307         } else if (priv->icon_view) {
308 #ifdef HAVE_GTK_ICON_VIEW_GET_VISIBLE_RANGE
309                 if (! GTK_WIDGET_REALIZED (priv->icon_view))
310                         return;
311                 gtk_icon_view_get_visible_range (GTK_ICON_VIEW (priv->icon_view), &path, &path2);
312 #else
313                 g_assert_not_reached ();
314 #endif
315         } else {
316                 return;
317         }
318
319         if (path == NULL)
320                 path = gtk_tree_path_new_first ();
321         if (path2 == NULL)
322                 path2 = gtk_tree_path_new_from_indices (priv->n_pages,
323                                                         -1);
324         update_visible_range (sidebar_thumbnails,
325                               gtk_tree_path_get_indices (path)[0],
326                               gtk_tree_path_get_indices (path2)[0]);
327
328         gtk_tree_path_free (path);
329         gtk_tree_path_free (path2);
330 }
331
332 static void
333 ev_sidebar_thumbnails_fill_model (EvSidebarThumbnails *sidebar_thumbnails)
334 {
335         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
336         GtkTreeIter iter;
337         int i;
338
339         for (i = 0; i < sidebar_thumbnails->priv->n_pages; i++) {
340                 gchar *page_label;
341                 gchar *page_string;
342
343                 page_label = ev_page_cache_get_page_label (priv->page_cache, i);
344                 page_string = g_markup_printf_escaped ("<i>%s</i>", page_label);
345
346                 gtk_list_store_append (priv->list_store, &iter);
347                 gtk_list_store_set (priv->list_store, &iter,
348                                     COLUMN_PAGE_STRING, page_string,
349                                     COLUMN_PIXBUF, priv->loading_icon,
350                                     COLUMN_THUMBNAIL_SET, FALSE,
351                                     -1);
352                 g_free (page_label);
353                 g_free (page_string);
354         }
355 }
356
357 void
358 ev_sidebar_thumbnails_refresh (EvSidebarThumbnails *sidebar_thumbnails)
359 {
360         ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
361         ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
362         adjustment_changed_cb (sidebar_thumbnails);
363 }
364
365 static void
366 ev_sidebar_tree_selection_changed (GtkTreeSelection *selection,
367                                    EvSidebarThumbnails *ev_sidebar_thumbnails)
368 {
369         EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
370         GtkTreePath *path;
371         GtkTreeIter iter;
372         int page;
373
374         if (!gtk_tree_selection_get_selected (selection, NULL, &iter))
375                 return;
376
377         path = gtk_tree_model_get_path (GTK_TREE_MODEL (priv->list_store),
378                                         &iter);
379         page = gtk_tree_path_get_indices (path)[0];
380         gtk_tree_path_free (path);
381
382         ev_page_cache_set_current_page (priv->page_cache, page);
383 }
384
385 static void
386 ev_sidebar_icon_selection_changed (GtkIconView         *icon_view,
387                                    EvSidebarThumbnails *ev_sidebar_thumbnails)
388 {
389         EvSidebarThumbnailsPrivate *priv = ev_sidebar_thumbnails->priv;
390         GtkTreePath *path;
391         GList *selected;
392         int page;
393
394         selected = gtk_icon_view_get_selected_items (icon_view);
395         if (selected == NULL)
396                 return;
397
398         /* We don't handle or expect multiple selection. */
399         g_assert (selected->next == NULL);
400
401         path = selected->data;
402         page = gtk_tree_path_get_indices (path)[0];
403
404         gtk_tree_path_free (path);
405         g_list_free (selected);
406
407         ev_page_cache_set_current_page (priv->page_cache, page);
408 }
409
410 static void
411 ev_sidebar_init_tree_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
412 {
413         EvSidebarThumbnailsPrivate *priv;
414         GtkTreeSelection *selection;
415         GtkCellRenderer *renderer;
416
417         priv = ev_sidebar_thumbnails->priv;
418         priv->tree_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
419
420         selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
421         g_signal_connect (selection, "changed",
422                           G_CALLBACK (ev_sidebar_tree_selection_changed), ev_sidebar_thumbnails);
423         gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->tree_view), FALSE);
424         renderer = g_object_new (GTK_TYPE_CELL_RENDERER_PIXBUF,
425                                  "xpad", 2,
426                                  "ypad", 2,
427                                  NULL);
428         gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
429                                                      NULL, renderer,
430                                                      "pixbuf", 1,
431                                                      NULL);
432         gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->tree_view), -1,
433                                                      NULL, gtk_cell_renderer_text_new (),
434                                                      "markup", 0, NULL);
435         gtk_container_add (GTK_CONTAINER (priv->swindow), priv->tree_view);
436         gtk_widget_show (priv->tree_view);
437 }
438
439 static void
440 ev_sidebar_init_icon_view (EvSidebarThumbnails *ev_sidebar_thumbnails)
441 {
442         EvSidebarThumbnailsPrivate *priv;
443
444         priv = ev_sidebar_thumbnails->priv;
445
446         priv->icon_view = gtk_icon_view_new_with_model (GTK_TREE_MODEL (priv->list_store));
447         gtk_icon_view_set_markup_column (GTK_ICON_VIEW (priv->icon_view), 0);
448         gtk_icon_view_set_pixbuf_column (GTK_ICON_VIEW (priv->icon_view), 1);
449         g_signal_connect (priv->icon_view, "selection-changed",
450                           G_CALLBACK (ev_sidebar_icon_selection_changed), ev_sidebar_thumbnails);
451
452         gtk_container_add (GTK_CONTAINER (priv->swindow), priv->icon_view);
453         gtk_widget_show (priv->icon_view);
454 }
455
456 static gboolean
457 ev_sidebar_thumbnails_use_icon_view (EvSidebarThumbnails *sidebar_thumbnails)
458 {
459 #ifdef HAVE_GTK_ICON_VIEW_GET_VISIBLE_RANGE
460         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
461         if (ev_page_cache_get_n_pages (priv->page_cache) > MAX_ICON_VIEW_PAGE_COUNT)
462                 return FALSE;
463         return TRUE;
464 #else
465         return FALSE;
466 #endif
467 }
468
469 static void
470 ev_sidebar_thumbnails_init (EvSidebarThumbnails *ev_sidebar_thumbnails)
471 {
472         EvSidebarThumbnailsPrivate *priv;
473
474         priv = ev_sidebar_thumbnails->priv = EV_SIDEBAR_THUMBNAILS_GET_PRIVATE (ev_sidebar_thumbnails);
475
476         priv->list_store = gtk_list_store_new (NUM_COLUMNS,
477                                                G_TYPE_STRING,
478                                                GDK_TYPE_PIXBUF,
479                                                G_TYPE_BOOLEAN,
480                                                EV_TYPE_JOB_THUMBNAIL);
481
482         priv->swindow = gtk_scrolled_window_new (NULL, NULL);
483         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->swindow),
484                                         GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
485         gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (priv->swindow),
486                                              GTK_SHADOW_IN);
487         priv->vadjustment = gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (priv->swindow));
488         g_signal_connect_data (G_OBJECT (priv->vadjustment), "value-changed",
489                                G_CALLBACK (adjustment_changed_cb),
490                                ev_sidebar_thumbnails, NULL,
491                                G_CONNECT_SWAPPED | G_CONNECT_AFTER);
492         g_signal_connect_swapped (G_OBJECT (priv->swindow), "size-allocate",
493                                   G_CALLBACK (adjustment_changed_cb),
494                                   ev_sidebar_thumbnails);
495         gtk_box_pack_start (GTK_BOX (ev_sidebar_thumbnails), priv->swindow, TRUE, TRUE, 0);
496
497         /* Put it all together */
498         gtk_widget_show_all (priv->swindow);
499 }
500
501 static void
502 page_changed_cb (EvPageCache         *page_cache,
503                  int                  page,
504                  EvSidebarThumbnails *sidebar)
505 {
506         GtkTreeView *tree_view;
507         GtkTreePath *path;
508
509         path = gtk_tree_path_new_from_indices (page, -1);
510
511         if (sidebar->priv->tree_view) {
512                 tree_view = GTK_TREE_VIEW (sidebar->priv->tree_view);
513                 gtk_tree_view_set_cursor (tree_view, path, NULL, FALSE);
514                 gtk_tree_view_scroll_to_cell (tree_view, path, NULL, FALSE, 0.0, 0.0);
515         } else if (sidebar->priv->icon_view) {
516                 /* Guard against gtk-2.6 */
517 #ifdef HAVE_GTK_ICON_VIEW_GET_VISIBLE_RANGE 
518                 gtk_icon_view_select_path (GTK_ICON_VIEW (sidebar->priv->icon_view), path);
519                 gtk_icon_view_set_cursor (GTK_ICON_VIEW (sidebar->priv->icon_view), path, NULL, FALSE);
520 #endif
521         }
522
523         gtk_tree_path_free (path);
524 }
525
526 static void
527 thumbnail_job_completed_callback (EvJobThumbnail      *job,
528                                   EvSidebarThumbnails *sidebar_thumbnails)
529 {
530         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
531         GtkTreeIter *iter;
532
533         iter = (GtkTreeIter *) g_object_get_data (G_OBJECT (job), "tree_iter");
534         gtk_list_store_set (priv->list_store,
535                             iter,
536                             COLUMN_PIXBUF, job->thumbnail,
537                             COLUMN_THUMBNAIL_SET, TRUE,
538                             COLUMN_JOB, NULL,
539                             -1);
540 }
541
542 static void
543 ev_sidebar_thumbnails_set_document (EvSidebarPage       *sidebar_page,
544                                     EvDocument          *document)
545 {
546         EvSidebarThumbnails *sidebar_thumbnails = EV_SIDEBAR_THUMBNAILS (sidebar_page);
547         gint width = THUMBNAIL_WIDTH;
548         gint height = THUMBNAIL_WIDTH;
549
550         EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
551
552         g_return_if_fail (EV_IS_DOCUMENT_THUMBNAILS (document));
553
554         priv->page_cache = ev_page_cache_get (document);
555         priv->document = document;
556         priv->n_pages = ev_page_cache_get_n_pages (priv->page_cache);
557
558         /* We get the dimensions of the first doc so that we can make a blank
559          * icon.  */
560         ev_document_doc_mutex_lock ();
561         ev_document_thumbnails_get_dimensions (EV_DOCUMENT_THUMBNAILS (priv->document),
562                                                0, THUMBNAIL_WIDTH, &width, &height);
563         ev_document_doc_mutex_unlock ();
564
565         if (priv->loading_icon)
566                 g_object_unref (priv->loading_icon);
567         priv->loading_icon = ev_document_misc_get_thumbnail_frame (width, height, NULL);
568
569         ev_sidebar_thumbnails_clear_model (sidebar_thumbnails);
570         ev_sidebar_thumbnails_fill_model (sidebar_thumbnails);
571
572         /* Create the view widget, and remove the old one, if needed */
573         if (ev_sidebar_thumbnails_use_icon_view (sidebar_thumbnails)) {
574                 if (priv->tree_view) {
575                         gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->tree_view);
576                         priv->tree_view = NULL;
577                 }
578
579                 if (! priv->icon_view) {
580                         ev_sidebar_init_icon_view (sidebar_thumbnails);
581                         g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
582                 }
583         } else {
584                 if (priv->icon_view) {
585                         gtk_container_remove (GTK_CONTAINER (priv->swindow), priv->icon_view);
586                         priv->icon_view = NULL;
587                 }
588
589                 if (! priv->tree_view) {
590                         ev_sidebar_init_tree_view (sidebar_thumbnails);
591                         g_object_notify (G_OBJECT (sidebar_thumbnails), "main_widget");
592                 }
593         }
594
595         /* Connect to the signal and trigger a fake callback */
596         g_signal_connect (priv->page_cache, "page-changed", G_CALLBACK (page_changed_cb), sidebar_thumbnails);
597         adjustment_changed_cb (sidebar_thumbnails);
598 }
599
600 static gboolean
601 ev_sidebar_thumbnails_clear_job (GtkTreeModel *model,                                             
602                                  GtkTreePath *path,                                                                                      
603                                  GtkTreeIter *iter,                                                                                                                                   
604                                  gpointer data)
605 {
606     EvJob *job;
607     
608     gtk_tree_model_get (model, iter, COLUMN_JOB, &job, -1);
609     
610     if (job != NULL) {
611         ev_job_queue_remove_job (job);
612         g_signal_handlers_disconnect_by_func (job, thumbnail_job_completed_callback, data);
613         g_object_unref (job);
614     }
615
616     return FALSE;    
617 }
618
619 static void 
620 ev_sidebar_thumbnails_clear_model (EvSidebarThumbnails *sidebar_thumbnails)
621 {
622     EvSidebarThumbnailsPrivate *priv = sidebar_thumbnails->priv;
623     
624     gtk_tree_model_foreach (GTK_TREE_MODEL (priv->list_store), ev_sidebar_thumbnails_clear_job, sidebar_thumbnails);
625     gtk_list_store_clear (priv->list_store);
626 }
627
628 static gboolean
629 ev_sidebar_thumbnails_support_document (EvSidebarPage   *sidebar_page,
630                                         EvDocument *document)
631 {
632         return (EV_IS_DOCUMENT_THUMBNAILS (document) &&
633                     (ev_document_get_n_pages (document) > 1));
634 }
635
636 static const gchar*
637 ev_sidebar_thumbnails_get_label (EvSidebarPage *sidebar_page)
638 {
639     return _("Thumbnails");
640 }
641
642 static void
643 ev_sidebar_thumbnails_page_iface_init (EvSidebarPageIface *iface)
644 {
645         iface->support_document = ev_sidebar_thumbnails_support_document;
646         iface->set_document = ev_sidebar_thumbnails_set_document;
647         iface->get_label = ev_sidebar_thumbnails_get_label;
648 }
649