]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-thumbnails.h
Do not include ev-poppler.h when pdf is disabled.
[evince.git] / libdocument / ev-document-thumbnails.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /*
3  *  Copyright (C) 2004 Anders Carlsson
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  */
20
21 #ifndef EV_DOCUMENT_THUMBNAILS_H
22 #define EV_DOCUMENT_THUMBNAILS_H
23
24 #include <gdk-pixbuf/gdk-pixbuf.h>
25
26 #include "ev-render-context.h"
27
28 G_BEGIN_DECLS
29
30 #define EV_TYPE_DOCUMENT_THUMBNAILS         (ev_document_thumbnails_get_type ())
31 #define EV_DOCUMENT_THUMBNAILS(o)                   (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_THUMBNAILS, EvDocumentThumbnails))
32 #define EV_DOCUMENT_THUMBNAILS_IFACE(k)     (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_THUMBNAILS, EvDocumentThumbnailsIface))
33 #define EV_IS_DOCUMENT_THUMBNAILS(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_THUMBNAILS))
34 #define EV_IS_DOCUMENT_THUMBNAILS_IFACE(k)          (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_THUMBNAILS))
35 #define EV_DOCUMENT_THUMBNAILS_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_THUMBNAILS, EvDocumentThumbnailsIface))
36
37 typedef struct _EvDocumentThumbnails    EvDocumentThumbnails;
38 typedef struct _EvDocumentThumbnailsIface       EvDocumentThumbnailsIface;
39
40 struct _EvDocumentThumbnailsIface
41 {
42         GTypeInterface base_iface;
43
44         /* Methods  */
45         GdkPixbuf *  (* get_thumbnail)  (EvDocumentThumbnails *document,
46                                          gint                  page,
47                                          gint                  rotation,
48                                          gint                  size,
49                                          gboolean              border);
50         void         (* get_dimensions) (EvDocumentThumbnails *document,
51                                          gint                  page,
52                                          gint                  suggested_width,
53                                          gint                 *width,
54                                          gint                 *height);
55 };
56
57 GType      ev_document_thumbnails_get_type       (void);
58
59 /* FIXME: This is a little bit busted.  We call get_thumbnail w/ a suggested
60  * width, but we should call it with a scale so that different sized pages get
61  * sized proportionally.
62  */
63
64 GdkPixbuf *ev_document_thumbnails_get_thumbnail  (EvDocumentThumbnails *document,
65                                                   gint                  page,
66                                                   gint                  rotation,
67                                                   gint                  size,
68                                                   gboolean              border);
69 void       ev_document_thumbnails_get_dimensions (EvDocumentThumbnails *document,
70                                                   gint                  page,
71                                                   gint                  size,
72                                                   gint                 *width,
73                                                   gint                 *height);
74
75 G_END_DECLS
76
77 #endif