]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-document-links.h
Implements another history variant
[evince.git] / libdocument / ev-document-links.h
1 /* ev-document-links.h
2  *  this file is part of evince, a gnome document 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 #ifndef EV_DOCUMENT_LINKS_H
25 #define EV_DOCUMENT_LINKS_H
26
27 #include <glib-object.h>
28 #include <glib.h>
29 #include <gtk/gtk.h>
30
31 #include "ev-document.h"
32 #include "ev-link.h"
33
34 G_BEGIN_DECLS
35
36
37 #define EV_TYPE_DOCUMENT_LINKS            (ev_document_links_get_type ())
38 #define EV_DOCUMENT_LINKS(o)              (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinks))
39 #define EV_DOCUMENT_LINKS_IFACE(k)        (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinksIface))
40 #define EV_IS_DOCUMENT_LINKS(o)           (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_LINKS))
41 #define EV_IS_DOCUMENT_LINKS_IFACE(k)     (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_LINKS))
42 #define EV_DOCUMENT_LINKS_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_LINKS, EvDocumentLinksIface))
43
44 typedef struct _EvDocumentLinks      EvDocumentLinks;
45 typedef struct _EvDocumentLinksIface EvDocumentLinksIface;
46
47 enum {
48         EV_DOCUMENT_LINKS_COLUMN_MARKUP,
49         EV_DOCUMENT_LINKS_COLUMN_LINK,
50         EV_DOCUMENT_LINKS_COLUMN_EXPAND,
51         EV_DOCUMENT_LINKS_COLUMN_PAGE_LABEL,
52         EV_DOCUMENT_LINKS_COLUMN_NUM_COLUMNS
53 };
54
55 struct _EvDocumentLinksIface
56 {
57         GTypeInterface base_iface;
58
59         /* Methods  */
60         gboolean      (* has_document_links) (EvDocumentLinks *document_links);
61         GtkTreeModel *(* get_links_model)    (EvDocumentLinks *document_links);
62         GList        *(* get_links)          (EvDocumentLinks *document_links,
63                                               gint             page);
64         EvLinkDest   *(* find_link_dest)     (EvDocumentLinks *document_links,
65                                               const gchar     *link_name);
66 };
67
68 GType         ev_document_links_get_type           (void);
69 gboolean      ev_document_links_has_document_links (EvDocumentLinks *document_links);
70 GtkTreeModel *ev_document_links_get_links_model    (EvDocumentLinks *document_links);
71
72 GList        *ev_document_links_get_links          (EvDocumentLinks *document_links,
73                                                     gint             page);
74 EvLinkDest   *ev_document_links_find_link_dest     (EvDocumentLinks *document_links,
75                                                     const gchar     *link_name);
76
77 G_END_DECLS
78
79 #endif