Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-document.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-04-19 16:03:53 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-04-19 16:03:53 (GMT)
commit6202bf1580c2792a061729aa469b590626551c0d (patch)
treee779e8228a0e2a995e383a5458f9e973bf66bc32 /backend/ev-document.h
parent804d2382429a16dc10f2c0ec28443edf0b9bfac8 (diff)
Initial support for document info. Based on jrb patch.
2005-04-19 Marco Pesenti Gritti <mpg@redhat.com> * backend/Makefile.am: * backend/ev-document.c: (ev_document_render_get_info): * backend/ev-document.h: * pdf/ev-poppler.cc: Initial support for document info. Based on jrb patch.
Diffstat (limited to 'backend/ev-document.h')
-rw-r--r--backend/ev-document.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/backend/ev-document.h b/backend/ev-document.h
index 6cdf8d2..d8f8eba 100644
--- a/backend/ev-document.h
+++ b/backend/ev-document.h
@@ -27,6 +27,7 @@
#include <gdk/gdk.h>
#include "ev-link.h"
+#include "ev-document-info.h"
G_BEGIN_DECLS
@@ -88,6 +89,7 @@ struct _EvDocumentIface
GdkPixbuf * (* render_pixbuf) (EvDocument *document,
int page,
double scale);
+ EvDocumentInfo *(* get_info) (EvDocument *document);
};
GType ev_document_get_type (void);
@@ -96,6 +98,7 @@ EvPageCache *ev_document_get_page_cache (EvDocument *document);
GMutex *ev_document_get_doc_mutex (void);
+EvDocumentInfo *ev_document_get_info (EvDocument *document);
gboolean ev_document_load (EvDocument *document,
const char *uri,
GError **error);
@@ -119,6 +122,7 @@ GList *ev_document_get_links (EvDocument *document,
GdkPixbuf *ev_document_render_pixbuf (EvDocument *document,
int page,
double scale);
+EvDocumentInfo *ev_document_render_get_info (EvDocument *document);
G_END_DECLS