]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-images.c
Reorganize source tree.
[evince.git] / libdocument / ev-document-images.c
1 /* ev-document-images.c
2  *  this file is part of evince, a gnome document_links viewer
3  * 
4  * Copyright (C) 2006 Carlos Garcia Campos <carlosgc@gnome.org>
5  *
6  * Evince is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Evince is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include "ev-document-images.h"
22
23 GType
24 ev_document_images_get_type (void)
25 {
26         static GType type = 0;
27
28         if (G_UNLIKELY (type == 0)) {
29                 const GTypeInfo our_info = {
30                         sizeof (EvDocumentImagesIface),
31                         NULL,
32                         NULL,
33                 };
34
35                 type = g_type_register_static (G_TYPE_INTERFACE,
36                                                "EvDocumentImages",
37                                                &our_info, (GTypeFlags)0);
38         }
39
40         return type;
41 }
42
43 GList *
44 ev_document_images_get_images (EvDocumentImages *document_images,
45                                gint              page)
46 {
47         EvDocumentImagesIface *iface = EV_DOCUMENT_IMAGES_GET_IFACE (document_images);
48         GList *retval;
49
50         retval = iface->get_images (document_images, page);
51
52         return retval;
53 }
54
55