]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-links.c
[libdocument] Add find_link_page method to EvDocumentLinks interface
[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 EvMappingList *
58 ev_document_links_get_links (EvDocumentLinks *document_links,
59                              EvPage          *page)
60 {
61         EvDocumentLinksInterface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
62
63         return iface->get_links (document_links, page);
64 }
65
66 EvLinkDest *
67 ev_document_links_find_link_dest (EvDocumentLinks *document_links,
68                                   const gchar     *link_name)
69 {
70         EvDocumentLinksInterface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
71         EvLinkDest *retval;
72
73         ev_document_doc_mutex_lock ();
74         retval = iface->find_link_dest (document_links, link_name);
75         ev_document_doc_mutex_unlock ();
76
77         return retval;
78 }
79
80 gint
81 ev_document_links_find_link_page (EvDocumentLinks *document_links,
82                                   const gchar     *link_name)
83 {
84         EvDocumentLinksInterface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
85         gint retval;
86
87         ev_document_doc_mutex_lock ();
88         retval = iface->find_link_page (document_links, link_name);
89         ev_document_doc_mutex_unlock ();
90
91         return retval;
92 }
93
94 /* Helper functions */
95 gint
96 ev_document_links_get_dest_page (EvDocumentLinks *document_links,
97                                  EvLinkDest      *dest)
98 {
99         gint page = -1;
100
101         switch (ev_link_dest_get_dest_type (dest)) {
102         case EV_LINK_DEST_TYPE_NAMED: {
103                 EvLinkDest *dest2;
104
105                 dest2 = ev_document_links_find_link_dest (document_links,
106                                                           ev_link_dest_get_named_dest (dest));
107                 if (dest2) {
108                         page = ev_link_dest_get_page (dest2);
109                         g_object_unref (dest2);
110                 }
111         }
112                 break;
113         case EV_LINK_DEST_TYPE_PAGE_LABEL:
114                 ev_document_find_page_by_label (EV_DOCUMENT (document_links),
115                                                 ev_link_dest_get_page_label (dest),
116                                                 &page);
117                 break;
118         default:
119                 page = ev_link_dest_get_page (dest);
120         }
121
122         return page;
123 }
124
125 gchar *
126 ev_document_links_get_dest_page_label (EvDocumentLinks *document_links,
127                                        EvLinkDest      *dest)
128 {
129         gchar *label = NULL;
130
131         if (ev_link_dest_get_dest_type (dest) == EV_LINK_DEST_TYPE_PAGE_LABEL) {
132                 label = g_strdup (ev_link_dest_get_page_label (dest));
133         } else {
134                 gint page;
135
136                 page = ev_document_links_get_dest_page (document_links, dest);
137                 if (page != -1)
138                         label = ev_document_get_page_label (EV_DOCUMENT (document_links),
139                                                             page);
140         }
141
142         return label;
143 }
144
145 static EvLinkDest *
146 get_link_dest (EvLink *link)
147 {
148         EvLinkAction *action;
149
150         action = ev_link_get_action (link);
151         if (!action)
152                 return NULL;
153
154         if (ev_link_action_get_action_type (action) !=
155             EV_LINK_ACTION_TYPE_GOTO_DEST)
156                 return NULL;
157
158         return ev_link_action_get_dest (action);
159 }
160
161 gint
162 ev_document_links_get_link_page (EvDocumentLinks *document_links,
163                                  EvLink          *link)
164 {
165         EvLinkDest *dest;
166
167         dest = get_link_dest (link);
168
169         return dest ? ev_document_links_get_dest_page (document_links, dest) : -1;
170 }
171
172 gchar *
173 ev_document_links_get_link_page_label (EvDocumentLinks *document_links,
174                                        EvLink          *link)
175 {
176         EvLinkDest *dest;
177
178         dest = get_link_dest (link);
179
180         return dest ? ev_document_links_get_dest_page_label (document_links, dest) : NULL;
181 }