]> www.fi.muni.cz Git - evince.git/commitdiff
take thumbnails from page "0" instead of "1". Added a copyright header.
authorFernando Herrera <fherrera@onirica.com>
Thu, 3 Mar 2005 11:27:02 +0000 (11:27 +0000)
committerFernando Herrera de las Heras <fherrera@src.gnome.org>
Thu, 3 Mar 2005 11:27:02 +0000 (11:27 +0000)
2005-03-03  Fernando Herrera  <fherrera@onirica.com>

        * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
        take thumbnails from page "0" instead of "1". Added a copyright header.

ChangeLog
thumbnailer/evince-thumbnailer.c

index 47f50d7200b8fb5379615ed4a162172d9cb4660f..dc833ce88f3c31b083ff3bc316df60365c09712f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-03  Fernando Herrera  <fherrera@onirica.com>
+
+       * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get):
+       take thumbnails from page "0" instead of "1". Added a copyright header.
+
 2005-03-03  Jens Granseuer  <jensgr@gmx.net>
 
        * ps/ps-document.c: (set_up_page), (start_interpreter):
index 505f5f353007c0b3c8a504f5c242724bcb3f69fe..06fdec146bd62c0aeef20718aa28f84b20f12874 100644 (file)
@@ -1,3 +1,21 @@
+/*
+   Copyright (C) 2005 Fernando Herrera <fherrera@onirica.com>
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+
 #include <pdf-document.h>
 
 #include <libgnomevfs/gnome-vfs-mime-utils.h>
@@ -10,6 +28,8 @@
 
 #include <string.h>
 
+#define THUMBNAIL_SIZE 100
+
 static gboolean
 evince_thumbnail_pngenc_get (const char *uri, const char *thumbnail)
 {
@@ -37,7 +57,7 @@ evince_thumbnail_pngenc_get (const char *uri, const char *thumbnail)
        }
 
        pixbuf = ev_document_thumbnails_get_thumbnail
-                       (EV_DOCUMENT_THUMBNAILS (document), 1, 100);
+                       (EV_DOCUMENT_THUMBNAILS (document), 0, THUMBNAIL_SIZE);
        
        if (pixbuf != NULL) {
                GdkPixbuf *pdflogo;