]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-links.c
[dualscreen] fix crash on ctrl+w and fix control window closing
[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                 page = ev_document_links_find_link_page (document_links,
104                                                          ev_link_dest_get_named_dest (dest));
105         }
106                 break;
107         case EV_LINK_DEST_TYPE_PAGE_LABEL:
108                 ev_document_find_page_by_label (EV_DOCUMENT (document_links),
109                                                 ev_link_dest_get_page_label (dest),
110                                                 &page);
111                 break;
112         default:
113                 page = ev_link_dest_get_page (dest);
114         }
115
116         return page;
117 }
118
119 gchar *
120 ev_document_links_get_dest_page_label (EvDocumentLinks *document_links,
121                                        EvLinkDest      *dest)
122 {
123         gchar *label = NULL;
124
125         if (ev_link_dest_get_dest_type (dest) == EV_LINK_DEST_TYPE_PAGE_LABEL) {
126                 label = g_strdup (ev_link_dest_get_page_label (dest));
127         } else {
128                 gint page;
129
130                 page = ev_document_links_get_dest_page (document_links, dest);
131                 if (page != -1)
132                         label = ev_document_get_page_label (EV_DOCUMENT (document_links),
133                                                             page);
134         }
135
136         return label;
137 }
138
139 static EvLinkDest *
140 get_link_dest (EvLink *link)
141 {
142         EvLinkAction *action;
143
144         action = ev_link_get_action (link);
145         if (!action)
146                 return NULL;
147
148         if (ev_link_action_get_action_type (action) !=
149             EV_LINK_ACTION_TYPE_GOTO_DEST)
150                 return NULL;
151
152         return ev_link_action_get_dest (action);
153 }
154
155 gint
156 ev_document_links_get_link_page (EvDocumentLinks *document_links,
157                                  EvLink          *link)
158 {
159         EvLinkDest *dest;
160
161         dest = get_link_dest (link);
162
163         return dest ? ev_document_links_get_dest_page (document_links, dest) : -1;
164 }
165
166 gchar *
167 ev_document_links_get_link_page_label (EvDocumentLinks *document_links,
168                                        EvLink          *link)
169 {
170         EvLinkDest *dest;
171
172         dest = get_link_dest (link);
173
174         return dest ? ev_document_links_get_dest_page_label (document_links, dest) : NULL;
175 }