1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
3 * Copyright (C) 2000-2003 Marco Pesenti Gritti
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <glib-object.h>
30 #include "ev-document-info.h"
34 #define EV_TYPE_DOCUMENT (ev_document_get_type ())
35 #define EV_DOCUMENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT, EvDocument))
36 #define EV_DOCUMENT_IFACE(k) (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT, EvDocumentIface))
37 #define EV_IS_DOCUMENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT))
38 #define EV_IS_DOCUMENT_IFACE(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT))
39 #define EV_DOCUMENT_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT, EvDocumentIface))
41 typedef struct _EvDocument EvDocument;
42 typedef struct _EvDocumentIface EvDocumentIface;
43 typedef struct _EvPageCache EvPageCache;
44 typedef struct _EvPageCacheClass EvPageCacheClass;
46 #include "ev-page-cache.h"
49 #define EV_DOCUMENT_ERROR ev_document_error_quark ()
50 #define EV_DOC_MUTEX_LOCK (ev_document_doc_mutex_lock ())
51 #define EV_DOC_MUTEX_UNLOCK (ev_document_doc_mutex_unlock ())
55 EV_DOCUMENT_ERROR_INVALID,
56 EV_DOCUMENT_ERROR_ENCRYPTED
66 struct _EvDocumentIface
68 GTypeInterface base_iface;
71 gboolean (* load) (EvDocument *document,
74 gboolean (* save) (EvDocument *document,
77 int (* get_n_pages) (EvDocument *document);
78 void (* get_page_size) (EvDocument *document,
82 char * (* get_page_label) (EvDocument *document,
84 gboolean (* can_get_text) (EvDocument *document);
85 char * (* get_text) (EvDocument *document,
88 GList * (* get_links) (EvDocument *document,
90 GdkPixbuf * (* render_pixbuf) (EvDocument *document,
93 EvDocumentInfo *(* get_info) (EvDocument *document);
96 GType ev_document_get_type (void);
97 GQuark ev_document_error_quark (void);
98 EvPageCache *ev_document_get_page_cache (EvDocument *document);
99 GMutex *ev_document_get_doc_mutex (void);
100 void ev_document_doc_mutex_lock (void);
101 void ev_document_doc_mutex_unlock (void);
102 EvDocumentInfo *ev_document_get_info (EvDocument *document);
103 gboolean ev_document_load (EvDocument *document,
106 gboolean ev_document_save (EvDocument *document,
109 int ev_document_get_n_pages (EvDocument *document);
110 void ev_document_get_page_size (EvDocument *document,
114 char *ev_document_get_page_label (EvDocument *document,
116 gboolean ev_document_can_get_text (EvDocument *document);
117 char *ev_document_get_text (EvDocument *document,
120 GList *ev_document_get_links (EvDocument *document,
122 GdkPixbuf *ev_document_render_pixbuf (EvDocument *document,