]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-links.c
Use EvPage instead of page index to get links
[evince.git] / libdocument / 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 EV_DEFINE_INTERFACE (EvDocumentLinks, ev_document_links, 0)
29
30 static void
31 ev_document_links_class_init (EvDocumentLinksIface *klass)
32 {
33 }
34
35 gboolean
36 ev_document_links_has_document_links (EvDocumentLinks *document_links)
37 {
38         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
39         gboolean retval;
40
41         retval = iface->has_document_links (document_links);
42
43         return retval;
44 }
45
46 GtkTreeModel *
47 ev_document_links_get_links_model (EvDocumentLinks *document_links)
48 {
49         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
50         GtkTreeModel *retval;
51
52         retval = iface->get_links_model (document_links);
53
54         return retval;
55 }
56
57 GList *
58 ev_document_links_get_links (EvDocumentLinks *document_links,
59                              EvPage          *page)
60 {
61         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
62         GList *retval;
63
64         retval = iface->get_links (document_links, page);
65
66         return retval;
67 }
68
69 EvLinkDest *
70 ev_document_links_find_link_dest (EvDocumentLinks *document_links,
71                                   const gchar     *link_name)
72 {
73         EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
74         EvLinkDest *retval;
75
76         ev_document_doc_mutex_lock ();
77         retval = iface->find_link_dest (document_links, link_name);
78         ev_document_doc_mutex_unlock ();
79
80         return retval;
81 }