]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-links.c
7b31c4d4173458c9d534fd9b2cbc2f90e7b18284
[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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  */
23
24 #include "config.h"
25
26 #include "ev-document-links.h"
27
28 G_DEFINE_INTERFACE (EvDocumentLinks, ev_document_links, 0)
29
30 static void
31 ev_document_links_default_init (EvDocumentLinksInterface *klass)
32 {
33 }
34
35 gboolean
36 ev_document_links_has_document_links (EvDocumentLinks *document_links)
37 {
38         EvDocumentLinksInterface *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         EvDocumentLinksInterface *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         EvDocumentLinksInterface *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         EvDocumentLinksInterface *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 }
82
83 /* Helper functions */
84 gint
85 ev_document_links_get_dest_page (EvDocumentLinks *document_links,
86                                  EvLinkDest      *dest)
87 {
88         gint page = -1;
89
90         switch (ev_link_dest_get_dest_type (dest)) {
91         case EV_LINK_DEST_TYPE_NAMED: {
92                 EvLinkDest *dest2;
93
94                 dest2 = ev_document_links_find_link_dest (document_links,
95                                                           ev_link_dest_get_named_dest (dest));
96                 if (dest2) {
97                         page = ev_link_dest_get_page (dest2);
98                         g_object_unref (dest2);
99                 }
100         }
101                 break;
102         case EV_LINK_DEST_TYPE_PAGE_LABEL:
103                 ev_document_find_page_by_label (EV_DOCUMENT (document_links),
104                                                 ev_link_dest_get_page_label (dest),
105                                                 &page);
106                 break;
107         default:
108                 page = ev_link_dest_get_page (dest);
109         }
110
111         return page;
112 }
113
114 gchar *
115 ev_document_links_get_dest_page_label (EvDocumentLinks *document_links,
116                                        EvLinkDest      *dest)
117 {
118         gchar *label = NULL;
119
120         if (ev_link_dest_get_dest_type (dest) == EV_LINK_DEST_TYPE_PAGE_LABEL) {
121                 label = g_strdup (ev_link_dest_get_page_label (dest));
122         } else {
123                 gint page;
124
125                 page = ev_document_links_get_dest_page (document_links, dest);
126                 if (page != -1)
127                         label = ev_document_get_page_label (EV_DOCUMENT (document_links),
128                                                             page);
129         }
130
131         return label;
132 }