]> www.fi.muni.cz Git - evince.git/blob - backend/ev-document-links.c
242efb61c5e330c791e1723cc918cef0a50b8c5d
[evince.git] / backend / ev-document-links.c
1 /* ev-document-links.h
2  *  this file is part of evince, a gnome document_links viewer
3  * 
4  * Copyright (C) 2004 Red Hat, Inc.
5  *
6  * Author:
7  *   Jonathan Blandford <jrb@alum.mit.edu>
8  *
9  * Evince is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Evince is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25
26 #include "ev-document-links.h"
27
28 GType
29 ev_document_links_get_type (void)
30 {
31         static GType type = 0;
32
33         if (G_UNLIKELY (type == 0))
34         {
35                 static const GTypeInfo our_info =
36                 {
37                         sizeof (EvDocumentLinksIface),
38                         NULL,
39                         NULL,
40                 };
41
42                 type = g_type_register_static (G_TYPE_INTERFACE,
43                                                "EvDocumentLinks",
44                                                &our_info, (GTypeFlags)0);
45         }
46
47         return type;
48 }
49
50 gboolean
51 ev_document_links_has_document_links (EvDocumentLinks *document_links)
52 {
53         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
54         return iface->has_document_links (document_links);
55 }
56
57 EvDocumentLinksIter *
58 ev_document_links_begin_read (EvDocumentLinks *document_links)
59 {
60         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
61
62         return iface->begin_read (document_links);
63 }
64
65 EvLink * 
66 ev_document_links_get_link (EvDocumentLinks      *document_links,
67                             EvDocumentLinksIter  *iter)
68 {
69         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
70
71         return iface->get_link (document_links, iter);
72 }
73
74 EvDocumentLinksIter *
75 ev_document_links_get_child (EvDocumentLinks     *document_links,
76                              EvDocumentLinksIter *iter)
77 {
78         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
79
80         return iface->get_child (document_links, iter);
81 }
82
83
84 gboolean 
85 ev_document_links_next (EvDocumentLinks     *document_links,
86                         EvDocumentLinksIter *iter)
87 {
88         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
89
90         return iface->next (document_links, iter);
91 }
92
93
94 void
95 ev_document_links_free_iter (EvDocumentLinks     *document_links,
96                              EvDocumentLinksIter *iter)
97 {
98         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
99
100         iface->free_iter (document_links, iter);
101 }