~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to libdocument/ev-document-links.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-01-10 19:35:11 UTC
  • mto: (1.3.1 experimental) (52.1.1 hardy-proposed)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20070110193511-yjrnndv8e8wv03yy
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
                const GTypeInfo our_info = {
 
35
                        sizeof (EvDocumentLinksIface),
 
36
                        NULL,
 
37
                        NULL,
 
38
                };
 
39
 
 
40
                type = g_type_register_static (G_TYPE_INTERFACE,
 
41
                                               "EvDocumentLinks",
 
42
                                               &our_info, (GTypeFlags)0);
 
43
        }
 
44
 
 
45
        return type;
 
46
}
 
47
 
 
48
gboolean
 
49
ev_document_links_has_document_links (EvDocumentLinks *document_links)
 
50
{
 
51
        EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
 
52
        gboolean retval;
 
53
 
 
54
        retval = iface->has_document_links (document_links);
 
55
 
 
56
        return retval;
 
57
}
 
58
 
 
59
GtkTreeModel *
 
60
ev_document_links_get_links_model (EvDocumentLinks *document_links)
 
61
{
 
62
        EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
 
63
        GtkTreeModel *retval;
 
64
 
 
65
        retval = iface->get_links_model (document_links);
 
66
 
 
67
        return retval;
 
68
}
 
69
 
 
70
GList *
 
71
ev_document_links_get_links (EvDocumentLinks *document_links,
 
72
                             gint             page)
 
73
{
 
74
        EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
 
75
        GList *retval;
 
76
 
 
77
        retval = iface->get_links (document_links, page);
 
78
 
 
79
        return retval;
 
80
}
 
81
 
 
82
EvLinkDest *
 
83
ev_document_links_find_link_dest (EvDocumentLinks *document_links,
 
84
                                  const gchar     *link_name)
 
85
{
 
86
        EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
 
87
        EvLinkDest *retval;
 
88
 
 
89
        ev_document_doc_mutex_lock ();
 
90
        retval = iface->find_link_dest (document_links, link_name);
 
91
        ev_document_doc_mutex_unlock ();
 
92
 
 
93
        return retval;
 
94
}