diff options
author | rootavish <[email protected]> | 2014-07-19 10:47:43 +0530 |
---|---|---|
committer | rootavish <[email protected]> | 2014-07-19 10:47:43 +0530 |
commit | 46fce038996fa84784df775d0b2e941228388b66 (patch) | |
tree | cf8360de1cc5a97cf5fbb5b56e0451b44cb4898c /libdocument/ev-document-thumbnails.c | |
parent | 812a3c3d777a74b6e72fc402c17a5b861a712040 (diff) | |
download | atril-46fce038996fa84784df775d0b2e941228388b66.tar.bz2 atril-46fce038996fa84784df775d0b2e941228388b66.tar.xz |
Thumbnails for all documents
Now other problems with webkit. After much fidgeting I was able to resolve the previous problems of threads. However, now there is a different webkit error.
Diffstat (limited to 'libdocument/ev-document-thumbnails.c')
-rw-r--r-- | libdocument/ev-document-thumbnails.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libdocument/ev-document-thumbnails.c b/libdocument/ev-document-thumbnails.c index 9482e09e..61eb2fe8 100644 --- a/libdocument/ev-document-thumbnails.c +++ b/libdocument/ev-document-thumbnails.c @@ -61,3 +61,13 @@ ev_document_thumbnails_get_dimensions (EvDocumentThumbnails *document, iface->get_dimensions (document, rc, width, height); } +GtkWidget* +ev_document_thumbnails_get_webview_with_rendered_document(EvDocumentThumbnails *document, + gchar *webpageuri) +{ + EvDocumentThumbnailsInterface *iface; + g_return_val_if_fail (EV_IS_DOCUMENT_THUMBNAILS (document),NULL); + + iface = EV_DOCUMENT_THUMBNAILS_GET_IFACE(document); + return iface->render_in_webview(webpageuri); +}
\ No newline at end of file |