]> www.fi.muni.cz Git - evince.git/blob - libview/ev-page-cache.h
Unref document after unreffing pixbuf_cache.
[evince.git] / libview / ev-page-cache.h
1 /* this file is part of evince, a gnome document viewer
2  *
3  *  Copyright (C) 2009 Carlos Garcia Campos
4  *
5  * Evince is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * Evince is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * 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 #if !defined (__EV_EVINCE_VIEW_H_INSIDE__) && !defined (EVINCE_COMPILATION)
21 #error "Only <evince-view.h> can be included directly."
22 #endif
23
24 #ifndef EV_PAGE_CACHE_H
25 #define EV_PAGE_CACHE_H
26
27 #include <glib-object.h>
28 #include <gdk/gdk.h>
29 #include <evince-document.h>
30
31 G_BEGIN_DECLS
32
33 #define EV_TYPE_PAGE_CACHE    (ev_page_cache_get_type ())
34 #define EV_PAGE_CACHE(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), EV_TYPE_PAGE_CACHE, EvPageCache))
35 #define EV_IS_PAGE_CACHE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EV_TYPE_PAGE_CACHE))
36
37 typedef struct _EvPageCache        EvPageCache;
38 typedef struct _EvPageCacheClass   EvPageCacheClass;
39
40 GType        ev_page_cache_get_type               (void) G_GNUC_CONST;
41 EvPageCache *ev_page_cache_new                    (EvDocument *document);
42
43 void         ev_page_cache_set_page_range         (EvPageCache *cache,
44                                                    gint         start,
45                                                    gint         end);
46 GList       *ev_page_cache_get_link_mapping       (EvPageCache *cache,
47                                                    gint         page);
48 GList       *ev_page_cache_get_image_mapping      (EvPageCache *cache,
49                                                    gint         page);
50 GList       *ev_page_cache_get_form_field_mapping (EvPageCache *cache,
51                                                    gint         page);
52 GList       *ev_page_cache_get_annot_mapping      (EvPageCache *cache,
53                                                    gint         page);
54 GdkRegion   *ev_page_cache_get_text_mapping       (EvPageCache *cache,
55                                                    gint         page);
56
57 G_END_DECLS
58
59 #endif /* EV_PAGE_CACHE_H */