1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /* this file is part of evince, a gnome document viewer
4 * Copyright (C) 2009, Juanjo MarĂn <juanj.marin@juntadeandalucia.es>
5 * Copyright (C) 2004, Red Hat, Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <poppler-document.h>
29 #include <poppler-page.h>
31 #include <cairo-pdf.h>
36 #include <glib/gi18n-lib.h>
38 #include "ev-poppler.h"
39 #include "ev-file-exporter.h"
40 #include "ev-mapping.h"
41 #include "ev-document-find.h"
42 #include "ev-document-misc.h"
43 #include "ev-document-links.h"
44 #include "ev-document-images.h"
45 #include "ev-document-fonts.h"
46 #include "ev-document-security.h"
47 #include "ev-document-thumbnails.h"
48 #include "ev-document-transition.h"
49 #include "ev-document-forms.h"
50 #include "ev-document-layers.h"
51 #include "ev-document-print.h"
52 #include "ev-document-annotations.h"
53 #include "ev-document-attachments.h"
54 #include "ev-selection.h"
55 #include "ev-transition-effect.h"
56 #include "ev-attachment.h"
59 #include <libxml/tree.h>
60 #include <libxml/parser.h>
61 #include <libxml/xpath.h>
62 #include <libxml/xpathInternals.h>
64 #if (defined (HAVE_POPPLER_PAGE_RENDER)) && (defined (HAVE_CAIRO_PDF) || defined (HAVE_CAIRO_PS))
65 #define HAVE_CAIRO_PRINT
68 /* fields from the XMP Rights Management Schema, XMP Specification Sept 2005, pag. 45 */
69 #define LICENSE_MARKED "/x:xmpmeta/rdf:RDF/rdf:Description/xmpRights:Marked"
70 #define LICENSE_TEXT "/x:xmpmeta/rdf:RDF/rdf:Description/dc:rights/rdf:Alt/rdf:li[lang('%s')]"
71 #define LICENSE_WEB_STATEMENT "/x:xmpmeta/rdf:RDF/rdf:Description/xmpRights:WebStatement"
72 /* license field from Creative Commons schema, http://creativecommons.org/ns */
73 #define LICENSE_URI "/x:xmpmeta/rdf:RDF/rdf:Description/cc:license/@rdf:resource"
76 PdfDocument *document;
85 EvFileExporterFormat format;
95 #ifdef HAVE_CAIRO_PRINT
98 PopplerPSFile *ps_file;
102 struct _PdfDocumentClass
104 EvDocumentClass parent_class;
109 EvDocument parent_instance;
111 PopplerDocument *document;
115 PopplerFontInfo *font_info;
116 PopplerFontsIter *fonts_iter;
117 int fonts_scanned_pages;
119 PdfDocumentSearch *search;
120 PdfPrintContext *print_ctx;
125 static void pdf_document_security_iface_init (EvDocumentSecurityIface *iface);
126 static void pdf_document_document_thumbnails_iface_init (EvDocumentThumbnailsIface *iface);
127 static void pdf_document_document_links_iface_init (EvDocumentLinksIface *iface);
128 static void pdf_document_document_images_iface_init (EvDocumentImagesIface *iface);
129 static void pdf_document_document_forms_iface_init (EvDocumentFormsIface *iface);
130 static void pdf_document_document_fonts_iface_init (EvDocumentFontsIface *iface);
131 static void pdf_document_document_layers_iface_init (EvDocumentLayersIface *iface);
132 #ifdef HAVE_POPPLER_PAGE_RENDER
133 static void pdf_document_document_print_iface_init (EvDocumentPrintIface *iface);
135 static void pdf_document_document_annotations_iface_init (EvDocumentAnnotationsIface *iface);
136 static void pdf_document_document_attachments_iface_init (EvDocumentAttachmentsIface *iface);
137 static void pdf_document_find_iface_init (EvDocumentFindIface *iface);
138 static void pdf_document_file_exporter_iface_init (EvFileExporterIface *iface);
139 static void pdf_selection_iface_init (EvSelectionIface *iface);
140 static void pdf_document_page_transition_iface_init (EvDocumentTransitionIface *iface);
141 static void pdf_document_thumbnails_get_dimensions (EvDocumentThumbnails *document_thumbnails,
145 static int pdf_document_get_n_pages (EvDocument *document);
147 static EvLinkDest *ev_link_dest_from_dest (PdfDocument *pdf_document,
149 static EvLink *ev_link_from_action (PdfDocument *pdf_document,
150 PopplerAction *action);
151 static void pdf_document_search_free (PdfDocumentSearch *search);
152 static void pdf_print_context_free (PdfPrintContext *ctx);
153 static gboolean attachment_save_to_buffer (PopplerAttachment *attachment,
158 EV_BACKEND_REGISTER_WITH_CODE (PdfDocument, pdf_document,
160 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_SECURITY,
161 pdf_document_security_iface_init);
162 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_THUMBNAILS,
163 pdf_document_document_thumbnails_iface_init);
164 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_LINKS,
165 pdf_document_document_links_iface_init);
166 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_IMAGES,
167 pdf_document_document_images_iface_init);
168 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_FORMS,
169 pdf_document_document_forms_iface_init);
170 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_FONTS,
171 pdf_document_document_fonts_iface_init);
172 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_LAYERS,
173 pdf_document_document_layers_iface_init);
174 #ifdef HAVE_POPPLER_PAGE_RENDER
175 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_PRINT,
176 pdf_document_document_print_iface_init);
178 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_ANNOTATIONS,
179 pdf_document_document_annotations_iface_init);
180 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_ATTACHMENTS,
181 pdf_document_document_attachments_iface_init);
182 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_FIND,
183 pdf_document_find_iface_init);
184 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_FILE_EXPORTER,
185 pdf_document_file_exporter_iface_init);
186 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_SELECTION,
187 pdf_selection_iface_init);
188 EV_BACKEND_IMPLEMENT_INTERFACE (EV_TYPE_DOCUMENT_TRANSITION,
189 pdf_document_page_transition_iface_init);
193 pdf_document_search_free (PdfDocumentSearch *search)
195 PdfDocument *pdf_document = search->document;
199 if (search->idle != 0)
200 g_source_remove (search->idle);
202 n_pages = pdf_document_get_n_pages (EV_DOCUMENT (pdf_document));
203 for (i = 0; i < n_pages; i++) {
204 g_list_foreach (search->pages[i], (GFunc) g_free, NULL);
205 g_list_free (search->pages[i]);
207 g_free (search->pages);
209 g_free (search->text);
214 pdf_document_dispose (GObject *object)
216 PdfDocument *pdf_document = PDF_DOCUMENT(object);
218 if (pdf_document->print_ctx) {
219 pdf_print_context_free (pdf_document->print_ctx);
220 pdf_document->print_ctx = NULL;
223 if (pdf_document->search) {
224 pdf_document_search_free (pdf_document->search);
225 pdf_document->search = NULL;
228 if (pdf_document->document) {
229 g_object_unref (pdf_document->document);
232 if (pdf_document->font_info) {
233 poppler_font_info_free (pdf_document->font_info);
236 if (pdf_document->fonts_iter) {
237 poppler_fonts_iter_free (pdf_document->fonts_iter);
240 if (pdf_document->layers) {
241 g_list_foreach (pdf_document->layers, (GFunc)g_object_unref, NULL);
242 g_list_free (pdf_document->layers);
245 G_OBJECT_CLASS (pdf_document_parent_class)->dispose (object);
249 pdf_document_init (PdfDocument *pdf_document)
251 pdf_document->password = NULL;
255 convert_error (GError *poppler_error,
258 if (poppler_error == NULL)
261 if (poppler_error->domain == POPPLER_ERROR) {
262 /* convert poppler errors into EvDocument errors */
263 gint code = EV_DOCUMENT_ERROR_INVALID;
264 if (poppler_error->code == POPPLER_ERROR_INVALID)
265 code = EV_DOCUMENT_ERROR_INVALID;
266 else if (poppler_error->code == POPPLER_ERROR_ENCRYPTED)
267 code = EV_DOCUMENT_ERROR_ENCRYPTED;
269 g_set_error_literal (error,
272 poppler_error->message);
274 g_error_free (poppler_error);
276 g_propagate_error (error, poppler_error);
283 pdf_document_save (EvDocument *document,
287 PdfDocument *pdf_document = PDF_DOCUMENT (document);
289 GError *poppler_error = NULL;
291 if (pdf_document->modified) {
292 retval = poppler_document_save (pdf_document->document,
293 uri, &poppler_error);
295 retval = poppler_document_save_a_copy (pdf_document->document,
296 uri, &poppler_error);
300 convert_error (poppler_error, error);
306 pdf_document_load (EvDocument *document,
310 GError *poppler_error = NULL;
311 PdfDocument *pdf_document = PDF_DOCUMENT (document);
313 pdf_document->document =
314 poppler_document_new_from_file (uri, pdf_document->password, &poppler_error);
316 if (pdf_document->document == NULL) {
317 convert_error (poppler_error, error);
325 pdf_document_get_n_pages (EvDocument *document)
327 return poppler_document_get_n_pages (PDF_DOCUMENT (document)->document);
331 pdf_document_get_page (EvDocument *document,
334 PdfDocument *pdf_document = PDF_DOCUMENT (document);
335 PopplerPage *poppler_page;
338 poppler_page = poppler_document_get_page (pdf_document->document, index);
339 page = ev_page_new (index);
340 page->backend_page = (EvBackendPage)g_object_ref (poppler_page);
341 page->backend_destroy_func = (EvBackendPageDestroyFunc)g_object_unref;
342 g_object_unref (poppler_page);
348 pdf_document_get_page_size (EvDocument *document,
353 g_return_if_fail (POPPLER_IS_PAGE (page->backend_page));
355 poppler_page_get_size (POPPLER_PAGE (page->backend_page), width, height);
359 pdf_document_get_page_label (EvDocument *document,
364 g_return_val_if_fail (POPPLER_IS_PAGE (page->backend_page), NULL);
366 g_object_get (G_OBJECT (page->backend_page),
372 static cairo_surface_t *
373 pdf_page_render (PopplerPage *page,
378 cairo_surface_t *surface;
380 #ifdef HAVE_POPPLER_PAGE_RENDER
383 surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
385 cr = cairo_create (surface);
387 switch (rc->rotation) {
389 cairo_translate (cr, width, 0);
392 cairo_translate (cr, width, height);
395 cairo_translate (cr, 0, height);
398 cairo_translate (cr, 0, 0);
400 cairo_scale (cr, rc->scale, rc->scale);
401 cairo_rotate (cr, rc->rotation * G_PI / 180.0);
402 poppler_page_render (page, cr);
404 cairo_set_operator (cr, CAIRO_OPERATOR_DEST_OVER);
405 cairo_set_source_rgb (cr, 1., 1., 1.);
409 #else /* HAVE_POPPLER_PAGE_RENDER */
412 pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
416 poppler_page_render_to_pixbuf (page,
422 surface = ev_document_misc_surface_from_pixbuf (pixbuf);
423 g_object_unref (pixbuf);
424 #endif /* HAVE_POPPLER_PAGE_RENDER */
429 static cairo_surface_t *
430 pdf_document_render (EvDocument *document,
433 PdfDocument *pdf_document;
434 PopplerPage *poppler_page;
435 double width_points, height_points;
438 poppler_page = POPPLER_PAGE (rc->page->backend_page);
440 poppler_page_get_size (poppler_page,
441 &width_points, &height_points);
443 if (rc->rotation == 90 || rc->rotation == 270) {
444 width = (int) ((height_points * rc->scale) + 0.5);
445 height = (int) ((width_points * rc->scale) + 0.5);
447 width = (int) ((width_points * rc->scale) + 0.5);
448 height = (int) ((height_points * rc->scale) + 0.5);
451 return pdf_page_render (poppler_page,
456 http://www.pdfa.org/lib/exe/fetch.php?id=pdfa%3Aen%3Atechdoc&cache=cache&media=pdfa:techdoc:tn0001_pdfa-1_and_namespaces_2008-03-18.pdf */
458 pdf_document_get_format_from_metadata (xmlDocPtr doc,
459 xmlXPathContextPtr xpathCtx)
461 xmlXPathObjectPtr xpathObj;
462 xmlChar *part = NULL;
463 xmlChar *conf = NULL;
467 /* add pdf/a namespaces */
468 xmlXPathRegisterNs (xpathCtx, BAD_CAST "x", BAD_CAST "adobe:ns:meta/");
469 xmlXPathRegisterNs (xpathCtx, BAD_CAST "rdf", BAD_CAST "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
470 xmlXPathRegisterNs (xpathCtx, BAD_CAST "pdfaid", BAD_CAST "http://www.aiim.org/pdfa/ns/id/");
472 /* reads pdf/a part */
473 /* first syntax: child node */
474 xpathObj = xmlXPathEvalExpression (BAD_CAST "/x:xmpmeta/rdf:RDF/rdf:Description/pdfaid:part", xpathCtx);
475 if (xpathObj != NULL) {
476 if (xpathObj->nodesetval != NULL && xpathObj->nodesetval->nodeNr != 0)
477 part = xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
479 xmlXPathFreeObject (xpathObj);
482 /* second syntax: attribute */
483 xpathObj = xmlXPathEvalExpression (BAD_CAST "/x:xmpmeta/rdf:RDF/rdf:Description/@pdfaid:part", xpathCtx);
484 if (xpathObj != NULL) {
485 if (xpathObj->nodesetval != NULL && xpathObj->nodesetval->nodeNr != 0)
486 part = xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
488 xmlXPathFreeObject (xpathObj);
492 /* reads pdf/a conformance */
493 /* first syntax: child node */
494 xpathObj = xmlXPathEvalExpression (BAD_CAST "/x:xmpmeta/rdf:RDF/rdf:Description/pdfaid:conformance", xpathCtx);
495 if (xpathObj != NULL) {
496 if (xpathObj->nodesetval != NULL && xpathObj->nodesetval->nodeNr != 0)
497 conf = xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
499 xmlXPathFreeObject (xpathObj);
502 /* second syntax: attribute */
503 xpathObj = xmlXPathEvalExpression (BAD_CAST "/x:xmpmeta/rdf:RDF/rdf:Description/@pdfaid:conformance", xpathCtx);
504 if (xpathObj != NULL) {
505 if (xpathObj->nodesetval != NULL && xpathObj->nodesetval->nodeNr != 0)
506 conf = xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
508 xmlXPathFreeObject (xpathObj);
512 if (part != NULL && conf != NULL) {
513 /* makes conf lowercase */
514 for (i = 0; conf[i]; i++)
515 conf[i] = g_ascii_tolower (conf[i]);
518 result = g_strdup_printf ("PDF/A - %s%s", part, conf);
528 static EvDocumentLicense *
529 pdf_document_get_license_from_metadata (xmlDocPtr doc,
530 xmlXPathContextPtr xpathCtx)
532 xmlXPathObjectPtr xpathObj;
533 xmlChar *marked = NULL;
534 const char *language_string;
537 gchar *tag, *tag_aux;
539 EvDocumentLicense *license;
541 /* register namespaces */
542 xmlXPathRegisterNs (xpathCtx, BAD_CAST "x", BAD_CAST "adobe:ns:meta/");
543 xmlXPathRegisterNs (xpathCtx, BAD_CAST "rdf", BAD_CAST "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
544 xmlXPathRegisterNs (xpathCtx, BAD_CAST "dc", BAD_CAST "http://purl.org/dc/elements/1.1/");
545 /* XMP Rights Management Schema */
546 xmlXPathRegisterNs (xpathCtx, BAD_CAST "xmpRights", BAD_CAST "http://ns.adobe.com/xap/1.0/rights/");
547 /* Creative Commons Schema */
548 xmlXPathRegisterNs (xpathCtx, BAD_CAST "cc", BAD_CAST "http://creativecommons.org/ns#");
550 /* checking if the document has been marked as defined on the XMP Rights
551 * Management Schema */
552 xpathObj = xmlXPathEvalExpression (BAD_CAST LICENSE_MARKED, xpathCtx);
553 if (xpathObj != NULL) {
554 if (xpathObj->nodesetval != NULL &&
555 xpathObj->nodesetval->nodeNr != 0)
556 marked = xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
557 xmlXPathFreeObject (xpathObj);
560 /* a) Not marked => No XMP Rights information */
566 license = ev_document_license_new ();
568 /* b) Marked False => Public Domain, no copyrighted material and no
570 if (g_strrstr ((char *) marked, "False") != NULL) {
571 license->text = g_strdup (_("This work is in the Public Domain"));
572 /* c) Marked True => Copyrighted material */
574 /* Checking usage terms as defined by the XMP Rights Management
575 * Schema. This field is recomended to be checked by Creative
577 /* 1) checking for a suitable localized string */
578 language_string = pango_language_to_string (gtk_get_default_language ());
579 tags = g_strsplit (language_string, "-", -1);
580 i = g_strv_length (tags);
581 while (i-- && !license->text) {
582 tag = g_strdup (tags[0]);
583 for (j = 1; j <= i; j++) {
584 tag_aux = g_strdup_printf ("%s-%s", tag, tags[j]);
588 aux = g_strdup_printf (LICENSE_TEXT, tag);
589 xpathObj = xmlXPathEvalExpression (BAD_CAST aux, xpathCtx);
590 if (xpathObj != NULL) {
591 if (xpathObj->nodesetval != NULL &&
592 xpathObj->nodesetval->nodeNr != 0)
593 license->text = (gchar *)xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
594 xmlXPathFreeObject (xpathObj);
601 /* 2) if not, use the default string */
602 if (!license->text) {
603 aux = g_strdup_printf (LICENSE_TEXT, "x-default");
604 xpathObj = xmlXPathEvalExpression (BAD_CAST aux, xpathCtx);
605 if (xpathObj != NULL) {
606 if (xpathObj->nodesetval != NULL &&
607 xpathObj->nodesetval->nodeNr != 0)
608 license->text = (gchar *)xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
609 xmlXPathFreeObject (xpathObj);
614 /* Checking the license URI as defined by the Creative Commons
615 * Schema. This field is recomended to be checked by Creative
617 xpathObj = xmlXPathEvalExpression (BAD_CAST LICENSE_URI, xpathCtx);
618 if (xpathObj != NULL) {
619 if (xpathObj->nodesetval != NULL &&
620 xpathObj->nodesetval->nodeNr != 0)
621 license->uri = (gchar *)xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
622 xmlXPathFreeObject (xpathObj);
625 /* Checking the web statement as defined by the XMP Rights
626 * Management Schema. Checking it out is a sort of above-and-beyond
627 * the basic recommendations by Creative Commons. It can be
628 * considered as a "reinforcement" approach to add certainty. */
629 xpathObj = xmlXPathEvalExpression (BAD_CAST LICENSE_WEB_STATEMENT, xpathCtx);
630 if (xpathObj != NULL) {
631 if (xpathObj->nodesetval != NULL &&
632 xpathObj->nodesetval->nodeNr != 0)
633 license->web_statement = (gchar *)xmlNodeGetContent (xpathObj->nodesetval->nodeTab[0]);
634 xmlXPathFreeObject (xpathObj);
639 if (!license->text && !license->uri && !license->web_statement) {
640 ev_document_license_free (license);
648 pdf_document_parse_metadata (const gchar *metadata,
649 EvDocumentInfo *info)
652 xmlXPathContextPtr xpathCtx;
655 doc = xmlParseMemory (metadata, strlen (metadata));
657 return; /* invalid xml metadata */
659 xpathCtx = xmlXPathNewContext (doc);
660 if (xpathCtx == NULL) {
662 return; /* invalid xpath context */
665 fmt = pdf_document_get_format_from_metadata (doc, xpathCtx);
667 g_free (info->format);
671 info->license = pdf_document_get_license_from_metadata (doc, xpathCtx);
673 xmlXPathFreeContext (xpathCtx);
678 static EvDocumentInfo *
679 pdf_document_get_info (EvDocument *document)
681 EvDocumentInfo *info;
682 PopplerPageLayout layout;
683 PopplerPageMode mode;
684 PopplerViewerPreferences view_prefs;
685 PopplerPermissions permissions;
689 info = g_new0 (EvDocumentInfo, 1);
691 info->fields_mask = EV_DOCUMENT_INFO_TITLE |
692 EV_DOCUMENT_INFO_FORMAT |
693 EV_DOCUMENT_INFO_AUTHOR |
694 EV_DOCUMENT_INFO_SUBJECT |
695 EV_DOCUMENT_INFO_KEYWORDS |
696 EV_DOCUMENT_INFO_LAYOUT |
697 EV_DOCUMENT_INFO_START_MODE |
698 EV_DOCUMENT_INFO_PERMISSIONS |
699 EV_DOCUMENT_INFO_UI_HINTS |
700 EV_DOCUMENT_INFO_CREATOR |
701 EV_DOCUMENT_INFO_PRODUCER |
702 EV_DOCUMENT_INFO_CREATION_DATE |
703 EV_DOCUMENT_INFO_MOD_DATE |
704 EV_DOCUMENT_INFO_LINEARIZED |
705 EV_DOCUMENT_INFO_N_PAGES |
706 EV_DOCUMENT_INFO_SECURITY |
707 EV_DOCUMENT_INFO_PAPER_SIZE |
708 EV_DOCUMENT_INFO_LICENSE;
710 g_object_get (PDF_DOCUMENT (document)->document,
711 "title", &(info->title),
712 "format", &(info->format),
713 "author", &(info->author),
714 "subject", &(info->subject),
715 "keywords", &(info->keywords),
717 "page-layout", &layout,
718 "viewer-preferences", &view_prefs,
719 "permissions", &permissions,
720 "creator", &(info->creator),
721 "producer", &(info->producer),
722 "creation-date", &(info->creation_date),
723 "mod-date", &(info->modified_date),
724 "linearized", &(info->linearized),
725 "metadata", &metadata,
728 if (metadata != NULL) {
729 pdf_document_parse_metadata (metadata, info);
733 info->n_pages = ev_document_get_n_pages (document);
735 if (info->n_pages > 0) {
736 ev_document_get_page_size (document, 0,
737 &(info->paper_width),
738 &(info->paper_height));
740 info->paper_width = info->paper_width / 72.0f * 25.4f;
741 info->paper_height = info->paper_height / 72.0f * 25.4f;
745 case POPPLER_PAGE_LAYOUT_SINGLE_PAGE:
746 info->layout = EV_DOCUMENT_LAYOUT_SINGLE_PAGE;
748 case POPPLER_PAGE_LAYOUT_ONE_COLUMN:
749 info->layout = EV_DOCUMENT_LAYOUT_ONE_COLUMN;
751 case POPPLER_PAGE_LAYOUT_TWO_COLUMN_LEFT:
752 info->layout = EV_DOCUMENT_LAYOUT_TWO_COLUMN_LEFT;
754 case POPPLER_PAGE_LAYOUT_TWO_COLUMN_RIGHT:
755 info->layout = EV_DOCUMENT_LAYOUT_TWO_COLUMN_RIGHT;
756 case POPPLER_PAGE_LAYOUT_TWO_PAGE_LEFT:
757 info->layout = EV_DOCUMENT_LAYOUT_TWO_PAGE_LEFT;
759 case POPPLER_PAGE_LAYOUT_TWO_PAGE_RIGHT:
760 info->layout = EV_DOCUMENT_LAYOUT_TWO_PAGE_RIGHT;
767 case POPPLER_PAGE_MODE_NONE:
768 info->mode = EV_DOCUMENT_MODE_NONE;
770 case POPPLER_PAGE_MODE_USE_THUMBS:
771 info->mode = EV_DOCUMENT_MODE_USE_THUMBS;
773 case POPPLER_PAGE_MODE_USE_OC:
774 info->mode = EV_DOCUMENT_MODE_USE_OC;
776 case POPPLER_PAGE_MODE_FULL_SCREEN:
777 info->mode = EV_DOCUMENT_MODE_FULL_SCREEN;
779 case POPPLER_PAGE_MODE_USE_ATTACHMENTS:
780 info->mode = EV_DOCUMENT_MODE_USE_ATTACHMENTS;
786 if (view_prefs & POPPLER_VIEWER_PREFERENCES_HIDE_TOOLBAR) {
787 info->ui_hints |= EV_DOCUMENT_UI_HINT_HIDE_TOOLBAR;
789 if (view_prefs & POPPLER_VIEWER_PREFERENCES_HIDE_MENUBAR) {
790 info->ui_hints |= EV_DOCUMENT_UI_HINT_HIDE_MENUBAR;
792 if (view_prefs & POPPLER_VIEWER_PREFERENCES_HIDE_WINDOWUI) {
793 info->ui_hints |= EV_DOCUMENT_UI_HINT_HIDE_WINDOWUI;
795 if (view_prefs & POPPLER_VIEWER_PREFERENCES_FIT_WINDOW) {
796 info->ui_hints |= EV_DOCUMENT_UI_HINT_FIT_WINDOW;
798 if (view_prefs & POPPLER_VIEWER_PREFERENCES_CENTER_WINDOW) {
799 info->ui_hints |= EV_DOCUMENT_UI_HINT_CENTER_WINDOW;
801 if (view_prefs & POPPLER_VIEWER_PREFERENCES_DISPLAY_DOC_TITLE) {
802 info->ui_hints |= EV_DOCUMENT_UI_HINT_DISPLAY_DOC_TITLE;
804 if (view_prefs & POPPLER_VIEWER_PREFERENCES_DIRECTION_RTL) {
805 info->ui_hints |= EV_DOCUMENT_UI_HINT_DIRECTION_RTL;
808 info->permissions = 0;
809 if (permissions & POPPLER_PERMISSIONS_OK_TO_PRINT) {
810 info->permissions |= EV_DOCUMENT_PERMISSIONS_OK_TO_PRINT;
812 if (permissions & POPPLER_PERMISSIONS_OK_TO_MODIFY) {
813 info->permissions |= EV_DOCUMENT_PERMISSIONS_OK_TO_MODIFY;
815 if (permissions & POPPLER_PERMISSIONS_OK_TO_COPY) {
816 info->permissions |= EV_DOCUMENT_PERMISSIONS_OK_TO_COPY;
818 if (permissions & POPPLER_PERMISSIONS_OK_TO_ADD_NOTES) {
819 info->permissions |= EV_DOCUMENT_PERMISSIONS_OK_TO_ADD_NOTES;
822 if (ev_document_security_has_document_security (EV_DOCUMENT_SECURITY (document))) {
823 /* translators: this is the document security state */
824 info->security = g_strdup (_("Yes"));
826 /* translators: this is the document security state */
827 info->security = g_strdup (_("No"));
834 pdf_document_class_init (PdfDocumentClass *klass)
836 GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
837 EvDocumentClass *ev_document_class = EV_DOCUMENT_CLASS (klass);
839 g_object_class->dispose = pdf_document_dispose;
841 ev_document_class->save = pdf_document_save;
842 ev_document_class->load = pdf_document_load;
843 ev_document_class->get_n_pages = pdf_document_get_n_pages;
844 ev_document_class->get_page = pdf_document_get_page;
845 ev_document_class->get_page_size = pdf_document_get_page_size;
846 ev_document_class->get_page_label = pdf_document_get_page_label;
847 ev_document_class->render = pdf_document_render;
848 ev_document_class->get_info = pdf_document_get_info;
851 /* EvDocumentSecurity */
853 pdf_document_has_document_security (EvDocumentSecurity *document_security)
855 /* FIXME: do we really need to have this? */
860 pdf_document_set_password (EvDocumentSecurity *document_security,
861 const char *password)
863 PdfDocument *document = PDF_DOCUMENT (document_security);
865 if (document->password)
866 g_free (document->password);
868 document->password = g_strdup (password);
872 pdf_document_security_iface_init (EvDocumentSecurityIface *iface)
874 iface->has_document_security = pdf_document_has_document_security;
875 iface->set_password = pdf_document_set_password;
879 pdf_document_fonts_get_progress (EvDocumentFonts *document_fonts)
881 PdfDocument *pdf_document = PDF_DOCUMENT (document_fonts);
884 n_pages = pdf_document_get_n_pages (EV_DOCUMENT (pdf_document));
886 return (double)pdf_document->fonts_scanned_pages / (double)n_pages;
890 pdf_document_fonts_scan (EvDocumentFonts *document_fonts,
893 PdfDocument *pdf_document = PDF_DOCUMENT (document_fonts);
896 g_return_val_if_fail (PDF_IS_DOCUMENT (document_fonts), FALSE);
898 if (pdf_document->font_info == NULL) {
899 pdf_document->font_info = poppler_font_info_new (pdf_document->document);
902 if (pdf_document->fonts_iter) {
903 poppler_fonts_iter_free (pdf_document->fonts_iter);
906 pdf_document->fonts_scanned_pages += n_pages;
908 result = poppler_font_info_scan (pdf_document->font_info, n_pages,
909 &pdf_document->fonts_iter);
911 pdf_document->fonts_scanned_pages = 0;
912 poppler_font_info_free (pdf_document->font_info);
913 pdf_document->font_info = NULL;
920 font_type_to_string (PopplerFontType type)
923 case POPPLER_FONT_TYPE_TYPE1:
925 case POPPLER_FONT_TYPE_TYPE1C:
927 case POPPLER_FONT_TYPE_TYPE3:
929 case POPPLER_FONT_TYPE_TRUETYPE:
930 return _("TrueType");
931 case POPPLER_FONT_TYPE_CID_TYPE0:
932 return _("Type 1 (CID)");
933 case POPPLER_FONT_TYPE_CID_TYPE0C:
934 return _("Type 1C (CID)");
935 case POPPLER_FONT_TYPE_CID_TYPE2:
936 return _("TrueType (CID)");
938 return _("Unknown font type");
943 pdf_document_fonts_fill_model (EvDocumentFonts *document_fonts,
946 PdfDocument *pdf_document = PDF_DOCUMENT (document_fonts);
947 PopplerFontsIter *iter = pdf_document->fonts_iter;
949 g_return_if_fail (PDF_IS_DOCUMENT (document_fonts));
955 GtkTreeIter list_iter;
958 const char *embedded;
961 name = poppler_fonts_iter_get_name (iter);
967 type = font_type_to_string (
968 poppler_fonts_iter_get_font_type (iter));
970 if (poppler_fonts_iter_is_embedded (iter)) {
971 if (poppler_fonts_iter_is_subset (iter))
972 embedded = _("Embedded subset");
974 embedded = _("Embedded");
976 embedded = _("Not embedded");
979 details = g_markup_printf_escaped ("%s\n%s", type, embedded);
981 gtk_list_store_append (GTK_LIST_STORE (model), &list_iter);
982 gtk_list_store_set (GTK_LIST_STORE (model), &list_iter,
983 EV_DOCUMENT_FONTS_COLUMN_NAME, name,
984 EV_DOCUMENT_FONTS_COLUMN_DETAILS, details,
988 } while (poppler_fonts_iter_next (iter));
992 pdf_document_document_fonts_iface_init (EvDocumentFontsIface *iface)
994 iface->fill_model = pdf_document_fonts_fill_model;
995 iface->scan = pdf_document_fonts_scan;
996 iface->get_progress = pdf_document_fonts_get_progress;
1000 pdf_document_links_has_document_links (EvDocumentLinks *document_links)
1002 PdfDocument *pdf_document = PDF_DOCUMENT (document_links);
1003 PopplerIndexIter *iter;
1005 g_return_val_if_fail (PDF_IS_DOCUMENT (document_links), FALSE);
1007 iter = poppler_index_iter_new (pdf_document->document);
1010 poppler_index_iter_free (iter);
1016 ev_link_dest_from_dest (PdfDocument *pdf_document,
1019 EvLinkDest *ev_dest = NULL;
1020 const char *unimplemented_dest = NULL;
1022 g_assert (dest != NULL);
1024 switch (dest->type) {
1025 case POPPLER_DEST_XYZ: {
1026 PopplerPage *poppler_page;
1029 poppler_page = poppler_document_get_page (pdf_document->document,
1030 MAX (0, dest->page_num - 1));
1031 poppler_page_get_size (poppler_page, NULL, &height);
1032 ev_dest = ev_link_dest_new_xyz (dest->page_num - 1,
1034 height - MIN (height, dest->top),
1039 g_object_unref (poppler_page);
1042 case POPPLER_DEST_FITB:
1043 case POPPLER_DEST_FIT:
1044 ev_dest = ev_link_dest_new_fit (dest->page_num - 1);
1046 case POPPLER_DEST_FITBH:
1047 case POPPLER_DEST_FITH: {
1048 PopplerPage *poppler_page;
1051 poppler_page = poppler_document_get_page (pdf_document->document,
1052 MAX (0, dest->page_num - 1));
1053 poppler_page_get_size (poppler_page, NULL, &height);
1054 ev_dest = ev_link_dest_new_fith (dest->page_num - 1,
1055 height - MIN (height, dest->top),
1057 g_object_unref (poppler_page);
1060 case POPPLER_DEST_FITBV:
1061 case POPPLER_DEST_FITV:
1062 ev_dest = ev_link_dest_new_fitv (dest->page_num - 1,
1066 case POPPLER_DEST_FITR: {
1067 PopplerPage *poppler_page;
1070 poppler_page = poppler_document_get_page (pdf_document->document,
1071 MAX (0, dest->page_num - 1));
1072 poppler_page_get_size (poppler_page, NULL, &height);
1073 ev_dest = ev_link_dest_new_fitr (dest->page_num - 1,
1075 height - MIN (height, dest->bottom),
1077 height - MIN (height, dest->top));
1078 g_object_unref (poppler_page);
1081 case POPPLER_DEST_NAMED:
1082 ev_dest = ev_link_dest_new_named (dest->named_dest);
1084 case POPPLER_DEST_UNKNOWN:
1085 unimplemented_dest = "POPPLER_DEST_UNKNOWN";
1089 if (unimplemented_dest) {
1090 g_warning ("Unimplemented destination: %s, please post a "
1091 "bug report in Evince bugzilla "
1092 "(http://bugzilla.gnome.org) with a testcase.",
1093 unimplemented_dest);
1097 ev_dest = ev_link_dest_new_page (dest->page_num - 1);
1103 ev_link_from_action (PdfDocument *pdf_document,
1104 PopplerAction *action)
1106 EvLink *link = NULL;
1107 EvLinkAction *ev_action = NULL;
1108 const char *unimplemented_action = NULL;
1110 switch (action->type) {
1111 case POPPLER_ACTION_NONE:
1113 case POPPLER_ACTION_GOTO_DEST: {
1116 dest = ev_link_dest_from_dest (pdf_document, action->goto_dest.dest);
1117 ev_action = ev_link_action_new_dest (dest);
1120 case POPPLER_ACTION_GOTO_REMOTE: {
1123 dest = ev_link_dest_from_dest (pdf_document, action->goto_remote.dest);
1124 ev_action = ev_link_action_new_remote (dest,
1125 action->goto_remote.file_name);
1129 case POPPLER_ACTION_LAUNCH:
1130 ev_action = ev_link_action_new_launch (action->launch.file_name,
1131 action->launch.params);
1133 case POPPLER_ACTION_URI:
1134 ev_action = ev_link_action_new_external_uri (action->uri.uri);
1136 case POPPLER_ACTION_NAMED:
1137 ev_action = ev_link_action_new_named (action->named.named_dest);
1139 case POPPLER_ACTION_MOVIE:
1140 unimplemented_action = "POPPLER_ACTION_MOVIE";
1142 case POPPLER_ACTION_UNKNOWN:
1143 unimplemented_action = "POPPLER_ACTION_UNKNOWN";
1146 if (unimplemented_action) {
1147 g_warning ("Unimplemented action: %s, please post a bug report "
1148 "in Evince bugzilla (http://bugzilla.gnome.org) "
1149 "with a testcase.", unimplemented_action);
1152 link = ev_link_new (action->any.title, ev_action);
1158 build_tree (PdfDocument *pdf_document,
1159 GtkTreeModel *model,
1160 GtkTreeIter *parent,
1161 PopplerIndexIter *iter)
1165 GtkTreeIter tree_iter;
1166 PopplerIndexIter *child;
1167 PopplerAction *action;
1168 EvLink *link = NULL;
1172 action = poppler_index_iter_get_action (iter);
1173 expand = poppler_index_iter_is_open (iter);
1178 switch (action->type) {
1179 case POPPLER_ACTION_GOTO_DEST: {
1180 /* For bookmarks, solve named destinations */
1181 if (action->goto_dest.dest->type == POPPLER_DEST_NAMED) {
1183 EvLinkDest *ev_dest = NULL;
1184 EvLinkAction *ev_action;
1186 dest = poppler_document_find_dest (pdf_document->document,
1187 action->goto_dest.dest->named_dest);
1189 link = ev_link_from_action (pdf_document, action);
1193 ev_dest = ev_link_dest_from_dest (pdf_document, dest);
1194 poppler_dest_free (dest);
1196 ev_action = ev_link_action_new_dest (ev_dest);
1197 link = ev_link_new (action->any.title, ev_action);
1199 link = ev_link_from_action (pdf_document, action);
1204 link = ev_link_from_action (pdf_document, action);
1208 if (!link || strlen (ev_link_get_title (link)) <= 0) {
1209 poppler_action_free (action);
1211 g_object_unref (link);
1216 gtk_tree_store_append (GTK_TREE_STORE (model), &tree_iter, parent);
1217 title_markup = g_markup_escape_text (ev_link_get_title (link), -1);
1219 gtk_tree_store_set (GTK_TREE_STORE (model), &tree_iter,
1220 EV_DOCUMENT_LINKS_COLUMN_MARKUP, title_markup,
1221 EV_DOCUMENT_LINKS_COLUMN_LINK, link,
1222 EV_DOCUMENT_LINKS_COLUMN_EXPAND, expand,
1225 g_free (title_markup);
1226 g_object_unref (link);
1228 child = poppler_index_iter_get_child (iter);
1230 build_tree (pdf_document, model, &tree_iter, child);
1231 poppler_index_iter_free (child);
1232 poppler_action_free (action);
1234 } while (poppler_index_iter_next (iter));
1237 static GtkTreeModel *
1238 pdf_document_links_get_links_model (EvDocumentLinks *document_links)
1240 PdfDocument *pdf_document = PDF_DOCUMENT (document_links);
1241 GtkTreeModel *model = NULL;
1242 PopplerIndexIter *iter;
1244 g_return_val_if_fail (PDF_IS_DOCUMENT (document_links), NULL);
1246 iter = poppler_index_iter_new (pdf_document->document);
1247 /* Create the model if we have items*/
1249 model = (GtkTreeModel *) gtk_tree_store_new (EV_DOCUMENT_LINKS_COLUMN_NUM_COLUMNS,
1254 build_tree (pdf_document, model, NULL, iter);
1255 poppler_index_iter_free (iter);
1262 pdf_document_links_get_links (EvDocumentLinks *document_links,
1265 PdfDocument *pdf_document;
1266 PopplerPage *poppler_page;
1267 GList *retval = NULL;
1268 GList *mapping_list;
1272 pdf_document = PDF_DOCUMENT (document_links);
1273 poppler_page = poppler_document_get_page (pdf_document->document,
1275 mapping_list = poppler_page_get_link_mapping (poppler_page);
1276 poppler_page_get_size (poppler_page, NULL, &height);
1278 for (list = mapping_list; list; list = list->next) {
1279 PopplerLinkMapping *link_mapping;
1280 EvMapping *ev_link_mapping;
1282 link_mapping = (PopplerLinkMapping *)list->data;
1283 ev_link_mapping = g_new (EvMapping, 1);
1284 ev_link_mapping->data = ev_link_from_action (pdf_document,
1285 link_mapping->action);
1286 ev_link_mapping->area.x1 = link_mapping->area.x1;
1287 ev_link_mapping->area.x2 = link_mapping->area.x2;
1288 /* Invert this for X-style coordinates */
1289 ev_link_mapping->area.y1 = height - link_mapping->area.y2;
1290 ev_link_mapping->area.y2 = height - link_mapping->area.y1;
1292 retval = g_list_prepend (retval, ev_link_mapping);
1295 poppler_page_free_link_mapping (mapping_list);
1296 g_object_unref (poppler_page);
1298 return g_list_reverse (retval);
1302 pdf_document_links_find_link_dest (EvDocumentLinks *document_links,
1303 const gchar *link_name)
1305 PdfDocument *pdf_document;
1307 EvLinkDest *ev_dest = NULL;
1309 pdf_document = PDF_DOCUMENT (document_links);
1310 dest = poppler_document_find_dest (pdf_document->document,
1313 ev_dest = ev_link_dest_from_dest (pdf_document, dest);
1314 poppler_dest_free (dest);
1321 pdf_document_document_links_iface_init (EvDocumentLinksIface *iface)
1323 iface->has_document_links = pdf_document_links_has_document_links;
1324 iface->get_links_model = pdf_document_links_get_links_model;
1325 iface->get_links = pdf_document_links_get_links;
1326 iface->find_link_dest = pdf_document_links_find_link_dest;
1330 pdf_document_images_get_image_mapping (EvDocumentImages *document_images,
1333 GList *retval = NULL;
1334 PdfDocument *pdf_document;
1335 PopplerPage *poppler_page;
1336 GList *mapping_list;
1339 pdf_document = PDF_DOCUMENT (document_images);
1340 poppler_page = poppler_document_get_page (pdf_document->document, page);
1341 mapping_list = poppler_page_get_image_mapping (poppler_page);
1343 for (list = mapping_list; list; list = list->next) {
1344 PopplerImageMapping *image_mapping;
1345 EvMapping *ev_image_mapping;
1347 image_mapping = (PopplerImageMapping *)list->data;
1349 ev_image_mapping = g_new (EvMapping, 1);
1351 ev_image_mapping->data = ev_image_new (page, image_mapping->image_id);
1352 ev_image_mapping->area.x1 = image_mapping->area.x1;
1353 ev_image_mapping->area.y1 = image_mapping->area.y1;
1354 ev_image_mapping->area.x2 = image_mapping->area.x2;
1355 ev_image_mapping->area.y2 = image_mapping->area.y2;
1357 retval = g_list_prepend (retval, ev_image_mapping);
1360 poppler_page_free_image_mapping (mapping_list);
1361 g_object_unref (poppler_page);
1363 return g_list_reverse (retval);
1367 pdf_document_images_get_image (EvDocumentImages *document_images,
1370 GdkPixbuf *retval = NULL;
1371 #ifdef HAVE_POPPLER_PAGE_GET_IMAGE
1372 PdfDocument *pdf_document;
1373 PopplerPage *poppler_page;
1374 cairo_surface_t *surface;
1376 pdf_document = PDF_DOCUMENT (document_images);
1377 poppler_page = poppler_document_get_page (pdf_document->document,
1378 ev_image_get_page (image));
1380 surface = poppler_page_get_image (poppler_page, ev_image_get_id (image));
1382 retval = ev_document_misc_pixbuf_from_surface (surface);
1383 cairo_surface_destroy (surface);
1386 g_object_unref (poppler_page);
1392 pdf_document_document_images_iface_init (EvDocumentImagesIface *iface)
1394 iface->get_image_mapping = pdf_document_images_get_image_mapping;
1395 iface->get_image = pdf_document_images_get_image;
1399 make_thumbnail_for_page (PopplerPage *poppler_page,
1400 EvRenderContext *rc,
1406 #ifdef POPPLER_WITH_GDK
1407 pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8,
1409 gdk_pixbuf_fill (pixbuf, 0xffffffff);
1411 ev_document_fc_mutex_lock ();
1412 poppler_page_render_to_pixbuf (poppler_page, 0, 0,
1414 rc->scale, rc->rotation, pixbuf);
1415 ev_document_fc_mutex_unlock ();
1417 cairo_surface_t *surface;
1419 ev_document_fc_mutex_lock ();
1420 surface = pdf_page_render (poppler_page, width, height, rc);
1421 ev_document_fc_mutex_unlock ();
1423 pixbuf = ev_document_misc_pixbuf_from_surface (surface);
1424 cairo_surface_destroy (surface);
1425 #endif /* POPPLER_WITH_GDK */
1431 pdf_document_thumbnails_get_thumbnail (EvDocumentThumbnails *document_thumbnails,
1432 EvRenderContext *rc,
1435 PdfDocument *pdf_document = PDF_DOCUMENT (document_thumbnails);
1436 PopplerPage *poppler_page;
1437 GdkPixbuf *pixbuf = NULL;
1438 GdkPixbuf *border_pixbuf;
1441 poppler_page = POPPLER_PAGE (rc->page->backend_page);
1443 pdf_document_thumbnails_get_dimensions (EV_DOCUMENT_THUMBNAILS (pdf_document),
1444 rc, &width, &height);
1446 #ifdef POPPLER_WITH_GDK
1447 pixbuf = poppler_page_get_thumbnail_pixbuf (poppler_page);
1449 cairo_surface_t *surface;
1451 surface = poppler_page_get_thumbnail (poppler_page);
1453 pixbuf = ev_document_misc_pixbuf_from_surface (surface);
1454 cairo_surface_destroy (surface);
1456 #endif /* POPPLER_WITH_GDK */
1458 if (pixbuf != NULL) {
1459 int thumb_width = (rc->rotation == 90 || rc->rotation == 270) ?
1460 gdk_pixbuf_get_height (pixbuf) :
1461 gdk_pixbuf_get_width (pixbuf);
1463 if (thumb_width == width) {
1464 GdkPixbuf *rotated_pixbuf;
1466 rotated_pixbuf = gdk_pixbuf_rotate_simple (pixbuf,
1467 (GdkPixbufRotation) (360 - rc->rotation));
1468 g_object_unref (pixbuf);
1469 pixbuf = rotated_pixbuf;
1471 /* The provided thumbnail has a different size */
1472 g_object_unref (pixbuf);
1473 pixbuf = make_thumbnail_for_page (poppler_page, rc, width, height);
1476 /* There is no provided thumbnail. We need to make one. */
1477 pixbuf = make_thumbnail_for_page (poppler_page, rc, width, height);
1480 if (border && pixbuf) {
1481 border_pixbuf = ev_document_misc_get_thumbnail_frame (-1, -1, pixbuf);
1482 g_object_unref (pixbuf);
1483 pixbuf = border_pixbuf;
1490 pdf_document_thumbnails_get_dimensions (EvDocumentThumbnails *document_thumbnails,
1491 EvRenderContext *rc,
1495 double page_width, page_height;
1497 poppler_page_get_size (POPPLER_PAGE (rc->page->backend_page),
1498 &page_width, &page_height);
1500 *width = MAX ((gint)(page_width * rc->scale + 0.5), 1);
1501 *height = MAX ((gint)(page_height * rc->scale + 0.5), 1);
1503 if (rc->rotation == 90 || rc->rotation == 270) {
1513 pdf_document_document_thumbnails_iface_init (EvDocumentThumbnailsIface *iface)
1515 iface->get_thumbnail = pdf_document_thumbnails_get_thumbnail;
1516 iface->get_dimensions = pdf_document_thumbnails_get_dimensions;
1521 pdf_document_find_find_text (EvDocumentFind *document_find,
1524 gboolean case_sensitive)
1527 PopplerPage *poppler_page;
1530 g_return_val_if_fail (POPPLER_IS_PAGE (page->backend_page), NULL);
1531 g_return_val_if_fail (text != NULL, NULL);
1533 poppler_page = POPPLER_PAGE (page->backend_page);
1535 matches = poppler_page_find_text (poppler_page, text);
1539 poppler_page_get_size (poppler_page, NULL, &height);
1540 for (l = matches; l && l->data; l = g_list_next (l)) {
1541 PopplerRectangle *rect = (PopplerRectangle *)l->data;
1545 rect->y1 = height - rect->y2;
1546 rect->y2 = height - tmp;
1553 pdf_document_find_iface_init (EvDocumentFindIface *iface)
1555 iface->find_text = pdf_document_find_find_text;
1559 pdf_print_context_free (PdfPrintContext *ctx)
1564 #ifdef HAVE_CAIRO_PRINT
1566 cairo_destroy (ctx->cr);
1571 poppler_ps_file_free (ctx->ps_file);
1572 ctx->ps_file = NULL;
1579 pdf_document_file_exporter_begin (EvFileExporter *exporter,
1580 EvFileExporterContext *fc)
1582 PdfDocument *pdf_document = PDF_DOCUMENT (exporter);
1583 PdfPrintContext *ctx;
1584 #ifdef HAVE_CAIRO_PRINT
1585 gdouble width, height;
1586 cairo_surface_t *surface = NULL;
1589 if (pdf_document->print_ctx)
1590 pdf_print_context_free (pdf_document->print_ctx);
1591 pdf_document->print_ctx = g_new0 (PdfPrintContext, 1);
1592 ctx = pdf_document->print_ctx;
1593 ctx->format = fc->format;
1595 #ifdef HAVE_CAIRO_PRINT
1596 ctx->pages_per_sheet = CLAMP (fc->pages_per_sheet, 1, 16);
1598 ctx->paper_width = fc->paper_width;
1599 ctx->paper_height = fc->paper_height;
1601 switch (fc->pages_per_sheet) {
1629 ctx->pages_printed = 0;
1631 switch (fc->format) {
1632 case EV_FILE_FORMAT_PS:
1633 #ifdef HAVE_CAIRO_PS
1634 surface = cairo_ps_surface_create (fc->filename, fc->paper_width, fc->paper_height);
1637 case EV_FILE_FORMAT_PDF:
1638 #ifdef HAVE_CAIRO_PDF
1639 surface = cairo_pdf_surface_create (fc->filename, fc->paper_width, fc->paper_height);
1643 g_assert_not_reached ();
1646 ctx->cr = cairo_create (surface);
1647 cairo_surface_destroy (surface);
1649 #else /* HAVE_CAIRO_PRINT */
1650 if (ctx->format == EV_FILE_FORMAT_PS) {
1651 ctx->ps_file = poppler_ps_file_new (pdf_document->document,
1652 fc->filename, fc->first_page,
1653 fc->last_page - fc->first_page + 1);
1654 poppler_ps_file_set_paper_size (ctx->ps_file, fc->paper_width, fc->paper_height);
1655 poppler_ps_file_set_duplex (ctx->ps_file, fc->duplex);
1657 #endif /* HAVE_CAIRO_PRINT */
1661 pdf_document_file_exporter_begin_page (EvFileExporter *exporter)
1663 PdfDocument *pdf_document = PDF_DOCUMENT (exporter);
1664 PdfPrintContext *ctx = pdf_document->print_ctx;
1666 g_return_if_fail (pdf_document->print_ctx != NULL);
1668 ctx->pages_printed = 0;
1670 #ifdef HAVE_CAIRO_PRINT
1671 if (ctx->paper_width > ctx->paper_height) {
1672 if (ctx->format == EV_FILE_FORMAT_PS) {
1673 cairo_ps_surface_set_size (cairo_get_target (ctx->cr),
1676 } else if (ctx->format == EV_FILE_FORMAT_PDF) {
1677 cairo_pdf_surface_set_size (cairo_get_target (ctx->cr),
1682 #endif /* HAVE_CAIRO_PRINT */
1686 pdf_document_file_exporter_do_page (EvFileExporter *exporter,
1687 EvRenderContext *rc)
1689 PdfDocument *pdf_document = PDF_DOCUMENT (exporter);
1690 PdfPrintContext *ctx = pdf_document->print_ctx;
1691 PopplerPage *poppler_page;
1692 #ifdef HAVE_CAIRO_PRINT
1693 gdouble page_width, page_height;
1696 gdouble width, height;
1697 gdouble pwidth, pheight;
1698 gdouble xscale, yscale;
1701 g_return_if_fail (pdf_document->print_ctx != NULL);
1703 poppler_page = POPPLER_PAGE (rc->page->backend_page);
1705 #ifdef HAVE_CAIRO_PRINT
1706 x = (ctx->pages_printed % ctx->pages_per_sheet) % ctx->pages_x;
1707 y = (ctx->pages_printed % ctx->pages_per_sheet) / ctx->pages_x;
1708 poppler_page_get_size (poppler_page, &page_width, &page_height);
1710 if (page_width > page_height && page_width > ctx->paper_width) {
1716 /* Use always portrait mode and rotate when necessary */
1717 if (ctx->paper_width > ctx->paper_height) {
1718 width = ctx->paper_height;
1719 height = ctx->paper_width;
1722 width = ctx->paper_width;
1723 height = ctx->paper_height;
1726 if (ctx->pages_per_sheet == 2 || ctx->pages_per_sheet == 6) {
1739 page_width = page_height;
1743 pwidth = width / ctx->pages_x;
1744 pheight = height / ctx->pages_y;
1746 if ((page_width > pwidth || page_height > pheight) ||
1747 (page_width < pwidth && page_height < pheight)) {
1748 xscale = pwidth / page_width;
1749 yscale = pheight / page_height;
1751 if (yscale < xscale) {
1758 xscale = yscale = 1;
1763 cairo_save (ctx->cr);
1765 cairo_matrix_t matrix;
1767 cairo_translate (ctx->cr, (2 * y + 1) * pwidth, 0);
1768 cairo_matrix_init (&matrix,
1772 cairo_transform (ctx->cr, &matrix);
1775 cairo_translate (ctx->cr,
1776 x * (rotate ? pheight : pwidth),
1777 y * (rotate ? pwidth : pheight));
1778 cairo_scale (ctx->cr, xscale, yscale);
1780 poppler_page_render_for_printing (poppler_page, ctx->cr);
1782 ctx->pages_printed++;
1784 cairo_restore (ctx->cr);
1785 #else /* HAVE_CAIRO_PRINT */
1786 if (ctx->format == EV_FILE_FORMAT_PS)
1787 poppler_page_render_to_ps (poppler_page, ctx->ps_file);
1788 #endif /* HAVE_CAIRO_PRINT */
1792 pdf_document_file_exporter_end_page (EvFileExporter *exporter)
1794 PdfDocument *pdf_document = PDF_DOCUMENT (exporter);
1795 PdfPrintContext *ctx = pdf_document->print_ctx;
1797 g_return_if_fail (pdf_document->print_ctx != NULL);
1799 #ifdef HAVE_CAIRO_PRINT
1800 cairo_show_page (ctx->cr);
1805 pdf_document_file_exporter_end (EvFileExporter *exporter)
1807 PdfDocument *pdf_document = PDF_DOCUMENT (exporter);
1809 pdf_print_context_free (pdf_document->print_ctx);
1810 pdf_document->print_ctx = NULL;
1813 static EvFileExporterCapabilities
1814 pdf_document_file_exporter_get_capabilities (EvFileExporter *exporter)
1816 return (EvFileExporterCapabilities) (
1817 EV_FILE_EXPORTER_CAN_PAGE_SET |
1818 EV_FILE_EXPORTER_CAN_COPIES |
1819 EV_FILE_EXPORTER_CAN_COLLATE |
1820 EV_FILE_EXPORTER_CAN_REVERSE |
1821 EV_FILE_EXPORTER_CAN_SCALE |
1822 #ifdef HAVE_CAIRO_PRINT
1823 #ifdef HAVE_POPPLER_PAGE_RENDER
1824 EV_FILE_EXPORTER_CAN_NUMBER_UP |
1828 #ifdef HAVE_CAIRO_PDF
1829 #ifdef HAVE_POPPLER_PAGE_RENDER
1830 EV_FILE_EXPORTER_CAN_GENERATE_PDF |
1833 EV_FILE_EXPORTER_CAN_GENERATE_PS);
1837 pdf_document_file_exporter_iface_init (EvFileExporterIface *iface)
1839 iface->begin = pdf_document_file_exporter_begin;
1840 iface->begin_page = pdf_document_file_exporter_begin_page;
1841 iface->do_page = pdf_document_file_exporter_do_page;
1842 iface->end_page = pdf_document_file_exporter_end_page;
1843 iface->end = pdf_document_file_exporter_end;
1844 iface->get_capabilities = pdf_document_file_exporter_get_capabilities;
1847 #ifdef HAVE_POPPLER_PAGE_RENDER
1848 /* EvDocumentPrint */
1850 pdf_document_print_print_page (EvDocumentPrint *document,
1854 PdfDocument *pdf_document = PDF_DOCUMENT (document);
1856 poppler_page_render_for_printing (POPPLER_PAGE (page->backend_page), cr);
1860 pdf_document_document_print_iface_init (EvDocumentPrintIface *iface)
1862 iface->print_page = pdf_document_print_print_page;
1864 #endif /* HAVE_POPPLER_PAGE_RENDER */
1867 pdf_selection_render_selection (EvSelection *selection,
1868 EvRenderContext *rc,
1869 cairo_surface_t **surface,
1870 EvRectangle *points,
1871 EvRectangle *old_points,
1872 EvSelectionStyle style,
1876 PopplerPage *poppler_page;
1877 double width_points, height_points;
1880 poppler_page = POPPLER_PAGE (rc->page->backend_page);
1882 poppler_page_get_size (poppler_page,
1883 &width_points, &height_points);
1884 width = (int) ((width_points * rc->scale) + 0.5);
1885 height = (int) ((height_points * rc->scale) + 0.5);
1887 #ifdef HAVE_POPPLER_PAGE_RENDER
1889 PopplerColor text_color, base_color;
1891 text_color.red = text->red;
1892 text_color.green = text->green;
1893 text_color.blue = text->blue;
1895 base_color.red = base->red;
1896 base_color.green = base->green;
1897 base_color.blue = base->blue;
1899 if (*surface == NULL) {
1900 *surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
1905 cr = cairo_create (*surface);
1906 cairo_scale (cr, rc->scale, rc->scale);
1907 cairo_surface_set_device_offset (*surface, 0, 0);
1908 memset (cairo_image_surface_get_data (*surface), 0x00,
1909 cairo_image_surface_get_height (*surface) *
1910 cairo_image_surface_get_stride (*surface));
1911 poppler_page_render_selection (poppler_page,
1913 (PopplerRectangle *)points,
1914 (PopplerRectangle *)old_points,
1915 (PopplerSelectionStyle)style,
1919 #else /* HAVE_POPPLER_PAGE_RENDER */
1922 pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
1926 poppler_page_render_selection_to_pixbuf (poppler_page,
1927 rc->scale, rc->rotation, pixbuf,
1928 (PopplerRectangle *)points,
1929 (PopplerRectangle *)old_points,
1930 (PopplerSelectionStyle)style,
1934 cairo_surface_destroy (*surface);
1935 *surface = ev_document_misc_surface_from_pixbuf (pixbuf);
1936 g_object_unref (pixbuf);
1937 #endif /* HAVE_POPPLER_PAGE_RENDER */
1941 pdf_selection_get_selected_text (EvSelection *selection,
1942 EvRenderContext *rc,
1943 EvSelectionStyle style,
1944 EvRectangle *points)
1946 PopplerPage *poppler_page;
1951 poppler_page = POPPLER_PAGE (rc->page->backend_page);
1953 poppler_page_get_size (poppler_page, NULL, &height);
1955 r.y1 = height - points->y2;
1957 r.y2 = height - points->y1;
1959 retval = poppler_page_get_text (poppler_page,
1960 (PopplerSelectionStyle)style,
1967 create_gdk_region_from_poppler_region (GList *region)
1972 retval = gdk_region_new ();
1974 for (l = region; l; l = g_list_next (l)) {
1975 PopplerRectangle *rectangle;
1978 rectangle = (PopplerRectangle *)l->data;
1980 rect.x = (gint) rectangle->x1;
1981 rect.y = (gint) rectangle->y1;
1982 rect.width = (gint) (rectangle->x2 - rectangle->x1);
1983 rect.height = (gint) (rectangle->y2 - rectangle->y1);
1984 gdk_region_union_with_rect (retval, &rect);
1986 poppler_rectangle_free (rectangle);
1993 pdf_selection_get_selection_region (EvSelection *selection,
1994 EvRenderContext *rc,
1995 EvSelectionStyle style,
1996 EvRectangle *points)
1998 PopplerPage *poppler_page;
2002 poppler_page = POPPLER_PAGE (rc->page->backend_page);
2004 region = poppler_page_get_selection_region (poppler_page,
2006 (PopplerSelectionStyle)style,
2007 (PopplerRectangle *) points);
2008 retval = create_gdk_region_from_poppler_region (region);
2009 g_list_free (region);
2015 pdf_selection_get_selection_map (EvSelection *selection,
2016 EvRenderContext *rc)
2018 PopplerPage *poppler_page;
2019 PopplerRectangle points;
2023 poppler_page = POPPLER_PAGE (rc->page->backend_page);
2027 poppler_page_get_size (poppler_page, &(points.x2), &(points.y2));
2029 region = poppler_page_get_selection_region (poppler_page, 1.0,
2030 POPPLER_SELECTION_GLYPH,
2032 retval = create_gdk_region_from_poppler_region (region);
2033 g_list_free (region);
2039 pdf_selection_iface_init (EvSelectionIface *iface)
2041 iface->render_selection = pdf_selection_render_selection;
2042 iface->get_selected_text = pdf_selection_get_selected_text;
2043 iface->get_selection_region = pdf_selection_get_selection_region;
2044 iface->get_selection_map = pdf_selection_get_selection_map;
2047 /* Page Transitions */
2049 pdf_document_get_page_duration (EvDocumentTransition *trans,
2052 PdfDocument *pdf_document;
2053 PopplerPage *poppler_page;
2054 gdouble duration = -1;
2056 pdf_document = PDF_DOCUMENT (trans);
2057 poppler_page = poppler_document_get_page (pdf_document->document, page);
2061 duration = poppler_page_get_duration (poppler_page);
2062 g_object_unref (poppler_page);
2067 static EvTransitionEffect *
2068 pdf_document_get_effect (EvDocumentTransition *trans,
2071 PdfDocument *pdf_document;
2072 PopplerPage *poppler_page;
2073 PopplerPageTransition *page_transition;
2074 EvTransitionEffect *effect;
2076 pdf_document = PDF_DOCUMENT (trans);
2077 poppler_page = poppler_document_get_page (pdf_document->document, page);
2082 page_transition = poppler_page_get_transition (poppler_page);
2084 if (!page_transition) {
2085 g_object_unref (poppler_page);
2089 /* enums in PopplerPageTransition match the EvTransitionEffect ones */
2090 effect = ev_transition_effect_new ((EvTransitionEffectType) page_transition->type,
2091 "alignment", page_transition->alignment,
2092 "direction", page_transition->direction,
2093 "duration", page_transition->duration,
2094 "angle", page_transition->angle,
2095 "scale", page_transition->scale,
2096 "rectangular", page_transition->rectangular,
2099 poppler_page_transition_free (page_transition);
2100 g_object_unref (poppler_page);
2106 pdf_document_page_transition_iface_init (EvDocumentTransitionIface *iface)
2108 iface->get_page_duration = pdf_document_get_page_duration;
2109 iface->get_effect = pdf_document_get_effect;
2114 pdf_document_get_crop_box (EvDocument *document,
2118 PdfDocument *pdf_document;
2119 PopplerPage *poppler_page;
2120 PopplerRectangle poppler_rect;
2122 pdf_document = PDF_DOCUMENT (document);
2123 poppler_page = poppler_document_get_page (pdf_document->document, page);
2124 poppler_page_get_crop_box (poppler_page, &poppler_rect);
2125 rect->x1 = poppler_rect.x1;
2126 rect->x2 = poppler_rect.x2;
2127 rect->y1 = poppler_rect.y1;
2128 rect->y2 = poppler_rect.y2;
2131 static EvFormField *
2132 ev_form_field_from_poppler_field (PopplerFormField *poppler_field)
2134 EvFormField *ev_field = NULL;
2137 gboolean is_read_only;
2139 id = poppler_form_field_get_id (poppler_field);
2140 font_size = poppler_form_field_get_font_size (poppler_field);
2141 is_read_only = poppler_form_field_is_read_only (poppler_field);
2143 switch (poppler_form_field_get_field_type (poppler_field)) {
2144 case POPPLER_FORM_FIELD_TEXT: {
2145 EvFormFieldText *field_text;
2146 EvFormFieldTextType ev_text_type = EV_FORM_FIELD_TEXT_NORMAL;
2148 switch (poppler_form_field_text_get_text_type (poppler_field)) {
2149 case POPPLER_FORM_TEXT_NORMAL:
2150 ev_text_type = EV_FORM_FIELD_TEXT_NORMAL;
2152 case POPPLER_FORM_TEXT_MULTILINE:
2153 ev_text_type = EV_FORM_FIELD_TEXT_MULTILINE;
2155 case POPPLER_FORM_TEXT_FILE_SELECT:
2156 ev_text_type = EV_FORM_FIELD_TEXT_FILE_SELECT;
2160 ev_field = ev_form_field_text_new (id, ev_text_type);
2161 field_text = EV_FORM_FIELD_TEXT (ev_field);
2163 field_text->do_spell_check = poppler_form_field_text_do_spell_check (poppler_field);
2164 field_text->do_scroll = poppler_form_field_text_do_scroll (poppler_field);
2165 field_text->is_rich_text = poppler_form_field_text_is_rich_text (poppler_field);
2166 field_text->is_password = poppler_form_field_text_is_password (poppler_field);
2167 field_text->max_len = poppler_form_field_text_get_max_len (poppler_field);
2168 field_text->text = poppler_form_field_text_get_text (poppler_field);
2172 case POPPLER_FORM_FIELD_BUTTON: {
2173 EvFormFieldButton *field_button;
2174 EvFormFieldButtonType ev_button_type = EV_FORM_FIELD_BUTTON_PUSH;
2176 switch (poppler_form_field_button_get_button_type (poppler_field)) {
2177 case POPPLER_FORM_BUTTON_PUSH:
2178 ev_button_type = EV_FORM_FIELD_BUTTON_PUSH;
2180 case POPPLER_FORM_BUTTON_CHECK:
2181 ev_button_type = EV_FORM_FIELD_BUTTON_CHECK;
2183 case POPPLER_FORM_BUTTON_RADIO:
2184 ev_button_type = EV_FORM_FIELD_BUTTON_RADIO;
2188 ev_field = ev_form_field_button_new (id, ev_button_type);
2189 field_button = EV_FORM_FIELD_BUTTON (ev_field);
2191 field_button->state = poppler_form_field_button_get_state (poppler_field);
2194 case POPPLER_FORM_FIELD_CHOICE: {
2195 EvFormFieldChoice *field_choice;
2196 EvFormFieldChoiceType ev_choice_type = EV_FORM_FIELD_CHOICE_COMBO;
2198 switch (poppler_form_field_choice_get_choice_type (poppler_field)) {
2199 case POPPLER_FORM_CHOICE_COMBO:
2200 ev_choice_type = EV_FORM_FIELD_CHOICE_COMBO;
2202 case EV_FORM_FIELD_CHOICE_LIST:
2203 ev_choice_type = EV_FORM_FIELD_CHOICE_LIST;
2207 ev_field = ev_form_field_choice_new (id, ev_choice_type);
2208 field_choice = EV_FORM_FIELD_CHOICE (ev_field);
2210 field_choice->is_editable = poppler_form_field_choice_is_editable (poppler_field);
2211 field_choice->multi_select = poppler_form_field_choice_can_select_multiple (poppler_field);
2212 field_choice->do_spell_check = poppler_form_field_choice_do_spell_check (poppler_field);
2213 field_choice->commit_on_sel_change = poppler_form_field_choice_commit_on_change (poppler_field);
2215 /* TODO: we need poppler_form_field_choice_get_selected_items in poppler
2216 field_choice->selected_items = poppler_form_field_choice_get_selected_items (poppler_field);*/
2217 if (field_choice->is_editable)
2218 field_choice->text = poppler_form_field_choice_get_text (poppler_field);
2221 case POPPLER_FORM_FIELD_SIGNATURE:
2223 ev_field = ev_form_field_signature_new (id);
2225 case POPPLER_FORM_FIELD_UNKNOWN:
2229 ev_field->font_size = font_size;
2230 ev_field->is_read_only = is_read_only;
2236 pdf_document_forms_get_form_fields (EvDocumentForms *document,
2239 PopplerPage *poppler_page;
2240 GList *retval = NULL;
2245 g_return_val_if_fail (POPPLER_IS_PAGE (page->backend_page), NULL);
2247 poppler_page = POPPLER_PAGE (page->backend_page);
2248 fields = poppler_page_get_form_field_mapping (poppler_page);
2249 poppler_page_get_size (poppler_page, NULL, &height);
2251 for (list = fields; list; list = list->next) {
2252 PopplerFormFieldMapping *mapping;
2253 EvMapping *field_mapping;
2254 EvFormField *ev_field;
2256 mapping = (PopplerFormFieldMapping *)list->data;
2258 ev_field = ev_form_field_from_poppler_field (mapping->field);
2262 field_mapping = g_new0 (EvMapping, 1);
2263 field_mapping->area.x1 = mapping->area.x1;
2264 field_mapping->area.x2 = mapping->area.x2;
2265 field_mapping->area.y1 = height - mapping->area.y2;
2266 field_mapping->area.y2 = height - mapping->area.y1;
2267 field_mapping->data = ev_field;
2268 ev_field->page = EV_PAGE (g_object_ref (page));
2270 g_object_set_data_full (G_OBJECT (ev_field),
2272 g_object_ref (mapping->field),
2273 (GDestroyNotify) g_object_unref);
2275 retval = g_list_prepend (retval, field_mapping);
2278 poppler_page_free_form_field_mapping (fields);
2280 return g_list_reverse (retval);
2284 pdf_document_forms_form_field_text_get_text (EvDocumentForms *document,
2288 PopplerFormField *poppler_field;
2291 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2295 text = poppler_form_field_text_get_text (poppler_field);
2301 pdf_document_forms_form_field_text_set_text (EvDocumentForms *document,
2305 PopplerFormField *poppler_field;
2307 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2311 poppler_form_field_text_set_text (poppler_field, text);
2312 PDF_DOCUMENT (document)->modified = TRUE;
2316 pdf_document_forms_form_field_button_set_state (EvDocumentForms *document,
2320 PopplerFormField *poppler_field;
2322 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2326 poppler_form_field_button_set_state (poppler_field, state);
2327 PDF_DOCUMENT (document)->modified = TRUE;
2331 pdf_document_forms_form_field_button_get_state (EvDocumentForms *document,
2334 PopplerFormField *poppler_field;
2337 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2341 state = poppler_form_field_button_get_state (poppler_field);
2347 pdf_document_forms_form_field_choice_get_item (EvDocumentForms *document,
2351 PopplerFormField *poppler_field;
2354 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2358 text = poppler_form_field_choice_get_item (poppler_field, index);
2364 pdf_document_forms_form_field_choice_get_n_items (EvDocumentForms *document,
2367 PopplerFormField *poppler_field;
2370 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2374 n_items = poppler_form_field_choice_get_n_items (poppler_field);
2380 pdf_document_forms_form_field_choice_is_item_selected (EvDocumentForms *document,
2384 PopplerFormField *poppler_field;
2387 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2391 selected = poppler_form_field_choice_is_item_selected (poppler_field, index);
2397 pdf_document_forms_form_field_choice_select_item (EvDocumentForms *document,
2401 PopplerFormField *poppler_field;
2403 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2407 poppler_form_field_choice_select_item (poppler_field, index);
2408 PDF_DOCUMENT (document)->modified = TRUE;
2412 pdf_document_forms_form_field_choice_toggle_item (EvDocumentForms *document,
2416 PopplerFormField *poppler_field;
2418 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2422 poppler_form_field_choice_toggle_item (poppler_field, index);
2423 PDF_DOCUMENT (document)->modified = TRUE;
2427 pdf_document_forms_form_field_choice_unselect_all (EvDocumentForms *document,
2430 PopplerFormField *poppler_field;
2432 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2436 poppler_form_field_choice_unselect_all (poppler_field);
2437 PDF_DOCUMENT (document)->modified = TRUE;
2441 pdf_document_forms_form_field_choice_set_text (EvDocumentForms *document,
2445 PopplerFormField *poppler_field;
2447 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2451 poppler_form_field_choice_set_text (poppler_field, text);
2452 PDF_DOCUMENT (document)->modified = TRUE;
2456 pdf_document_forms_form_field_choice_get_text (EvDocumentForms *document,
2459 PopplerFormField *poppler_field;
2462 poppler_field = POPPLER_FORM_FIELD (g_object_get_data (G_OBJECT (field), "poppler-field"));
2466 text = poppler_form_field_choice_get_text (poppler_field);
2472 pdf_document_document_forms_iface_init (EvDocumentFormsIface *iface)
2474 iface->get_form_fields = pdf_document_forms_get_form_fields;
2475 iface->form_field_text_get_text = pdf_document_forms_form_field_text_get_text;
2476 iface->form_field_text_set_text = pdf_document_forms_form_field_text_set_text;
2477 iface->form_field_button_set_state = pdf_document_forms_form_field_button_set_state;
2478 iface->form_field_button_get_state = pdf_document_forms_form_field_button_get_state;
2479 iface->form_field_choice_get_item = pdf_document_forms_form_field_choice_get_item;
2480 iface->form_field_choice_get_n_items = pdf_document_forms_form_field_choice_get_n_items;
2481 iface->form_field_choice_is_item_selected = pdf_document_forms_form_field_choice_is_item_selected;
2482 iface->form_field_choice_select_item = pdf_document_forms_form_field_choice_select_item;
2483 iface->form_field_choice_toggle_item = pdf_document_forms_form_field_choice_toggle_item;
2484 iface->form_field_choice_unselect_all = pdf_document_forms_form_field_choice_unselect_all;
2485 iface->form_field_choice_set_text = pdf_document_forms_form_field_choice_set_text;
2486 iface->form_field_choice_get_text = pdf_document_forms_form_field_choice_get_text;
2491 poppler_annot_color_to_gdk_color (PopplerAnnot *poppler_annot,
2494 PopplerColor *poppler_color;
2496 poppler_color = poppler_annot_get_color (poppler_annot);
2497 if (poppler_color) {
2498 color->red = poppler_color->red;
2499 color->green = poppler_color->green;
2500 color->blue = poppler_color->blue;
2502 g_free (poppler_color);
2503 } /* TODO: else use a default color */
2506 static EvAnnotation *
2507 ev_annot_from_poppler_annot (PopplerAnnot *poppler_annot,
2510 EvAnnotation *ev_annot = NULL;
2511 const gchar *unimplemented_annot = NULL;
2513 switch (poppler_annot_get_annot_type (poppler_annot)) {
2514 case POPPLER_ANNOT_TEXT: {
2515 PopplerAnnotText *poppler_text;
2516 EvAnnotationText *ev_annot_text;
2518 poppler_text = POPPLER_ANNOT_TEXT (poppler_annot);
2520 ev_annot = ev_annotation_text_new (page);
2522 ev_annot_text = EV_ANNOTATION_TEXT (ev_annot);
2523 ev_annot_text->is_open = poppler_annot_text_get_is_open (poppler_text);
2526 #ifdef HAVE_POPPLER_ANNOT_FILE_ATTACHMENT_GET_ATTACHMENT
2527 case POPPLER_ANNOT_FILE_ATTACHMENT: {
2528 PopplerAnnotFileAttachment *poppler_annot_attachment;
2529 EvAnnotationAttachment *ev_annot_attachment;
2530 PopplerAttachment *poppler_attachment;
2533 GError *error = NULL;
2535 poppler_annot_attachment = POPPLER_ANNOT_FILE_ATTACHMENT (poppler_annot);
2536 poppler_attachment = poppler_annot_file_attachment_get_attachment (poppler_annot_attachment);
2538 if (poppler_attachment &&
2539 attachment_save_to_buffer (poppler_attachment, &data, &size, &error)) {
2540 EvAttachment *ev_attachment;
2543 name = poppler_annot_file_attachment_get_name (poppler_annot_attachment);
2544 ev_attachment = ev_attachment_new (name,
2545 poppler_attachment->description,
2546 poppler_attachment->mtime,
2547 poppler_attachment->ctime,
2550 ev_annot = ev_annotation_attachment_new (page, ev_attachment);
2551 g_object_unref (ev_attachment);
2553 g_warning ("%s", error->message);
2554 g_error_free (error);
2557 if (poppler_attachment)
2558 g_object_unref (poppler_attachment);
2561 #endif /* HAVE_POPPLER_ANNOT_FILE_ATTACHMENT_GET_ATTACHMENT */
2562 case POPPLER_ANNOT_LINK:
2563 case POPPLER_ANNOT_WIDGET:
2564 /* Ignore link and widgets annots since they are already handled */
2567 GEnumValue *enum_value;
2569 enum_value = g_enum_get_value ((GEnumClass *) g_type_class_ref (POPPLER_TYPE_ANNOT_TYPE),
2570 poppler_annot_get_annot_type (poppler_annot));
2571 unimplemented_annot = enum_value ? enum_value->value_name : "Unknown annotation";
2575 if (unimplemented_annot) {
2576 g_warning ("Unimplemented annotation: %s, please post a "
2577 "bug report in Evince bugzilla "
2578 "(http://bugzilla.gnome.org) with a testcase.",
2579 unimplemented_annot);
2583 ev_annot->contents = poppler_annot_get_contents (poppler_annot);
2584 ev_annot->name = poppler_annot_get_name (poppler_annot);
2585 ev_annot->modified = poppler_annot_get_modified (poppler_annot);
2586 poppler_annot_color_to_gdk_color (poppler_annot, &ev_annot->color);
2588 if (POPPLER_IS_ANNOT_MARKUP (poppler_annot)) {
2589 PopplerAnnotMarkup *markup;
2592 PopplerRectangle poppler_rect;
2594 markup = POPPLER_ANNOT_MARKUP (poppler_annot);
2596 if (poppler_annot_markup_get_popup_rectangle (markup, &poppler_rect)) {
2597 EvRectangle ev_rect;
2601 poppler_page_get_size (POPPLER_PAGE (page->backend_page),
2603 ev_rect.x1 = poppler_rect.x1;
2604 ev_rect.x2 = poppler_rect.x2;
2605 ev_rect.y1 = height - poppler_rect.y2;
2606 ev_rect.y2 = height - poppler_rect.y1;
2608 is_open = poppler_annot_markup_get_popup_is_open (markup);
2610 g_object_set (ev_annot,
2611 "rectangle", &ev_rect,
2616 /* FIXME: Use poppler_annot_markup_has_popup() when
2617 * new poppler is released.
2619 g_object_set (ev_annot,
2624 label = poppler_annot_markup_get_label (markup);
2625 opacity = poppler_annot_markup_get_opacity (markup);
2627 g_object_set (ev_annot,
2640 pdf_document_annotations_get_annotations (EvDocumentAnnotations *document_annotations,
2643 GList *retval = NULL;
2644 PdfDocument *pdf_document;
2645 PopplerPage *poppler_page;
2651 pdf_document = PDF_DOCUMENT (document_annotations);
2652 poppler_page = POPPLER_PAGE (page->backend_page);
2653 annots = poppler_page_get_annot_mapping (poppler_page);
2654 poppler_page_get_size (poppler_page, NULL, &height);
2656 for (list = annots; list; list = list->next) {
2657 PopplerAnnotMapping *mapping;
2658 EvMapping *annot_mapping;
2659 EvAnnotation *ev_annot;
2661 mapping = (PopplerAnnotMapping *)list->data;
2663 ev_annot = ev_annot_from_poppler_annot (mapping->annot, page);
2669 /* Make sure annot has a unique name */
2670 if (!ev_annot->name)
2671 ev_annot->name = g_strdup_printf ("annot-%d-%d", page->index, i);
2673 annot_mapping = g_new (EvMapping, 1);
2674 annot_mapping->area.x1 = mapping->area.x1;
2675 annot_mapping->area.x2 = mapping->area.x2;
2676 annot_mapping->area.y1 = height - mapping->area.y2;
2677 annot_mapping->area.y2 = height - mapping->area.y1;
2678 annot_mapping->data = ev_annot;
2680 g_object_set_data_full (G_OBJECT (ev_annot),
2682 g_object_ref (mapping->annot),
2683 (GDestroyNotify) g_object_unref);
2685 retval = g_list_prepend (retval, annot_mapping);
2688 poppler_page_free_annot_mapping (annots);
2690 return g_list_reverse (retval);
2694 pdf_document_annotations_annotation_set_contents (EvDocumentAnnotations *document,
2695 EvAnnotation *annot,
2696 const gchar *contents)
2698 PopplerAnnot *poppler_annot;
2700 poppler_annot = POPPLER_ANNOT (g_object_get_data (G_OBJECT (annot), "poppler-annot"));
2704 poppler_annot_set_contents (poppler_annot, contents);
2705 PDF_DOCUMENT (document)->modified = TRUE;
2709 pdf_document_document_annotations_iface_init (EvDocumentAnnotationsIface *iface)
2711 iface->get_annotations = pdf_document_annotations_get_annotations;
2712 iface->annotation_set_contents = pdf_document_annotations_annotation_set_contents;
2716 struct SaveToBufferData {
2722 attachment_save_to_buffer_callback (const gchar *buf,
2727 struct SaveToBufferData *sdata = (SaveToBufferData *)user_data;
2731 if (sdata->len + count > sdata->max) {
2732 new_max = MAX (sdata->max * 2, sdata->len + count);
2733 new_buffer = (gchar *)g_realloc (sdata->buffer, new_max);
2735 sdata->buffer = new_buffer;
2736 sdata->max = new_max;
2739 memcpy (sdata->buffer + sdata->len, buf, count);
2740 sdata->len += count;
2746 attachment_save_to_buffer (PopplerAttachment *attachment,
2751 static const gint initial_max = 1024;
2752 struct SaveToBufferData sdata;
2757 sdata.buffer = (gchar *) g_malloc (initial_max);
2758 sdata.max = initial_max;
2761 if (! poppler_attachment_save_to_callback (attachment,
2762 attachment_save_to_buffer_callback,
2765 g_free (sdata.buffer);
2769 *buffer = sdata.buffer;
2770 *buffer_size = sdata.len;
2776 pdf_document_attachments_get_attachments (EvDocumentAttachments *document)
2778 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2781 GList *retval = NULL;
2783 attachments = poppler_document_get_attachments (pdf_document->document);
2785 for (list = attachments; list; list = list->next) {
2786 PopplerAttachment *attachment;
2787 EvAttachment *ev_attachment;
2790 GError *error = NULL;
2792 attachment = (PopplerAttachment *) list->data;
2794 if (attachment_save_to_buffer (attachment, &data, &size, &error)) {
2795 ev_attachment = ev_attachment_new (attachment->name,
2796 attachment->description,
2801 retval = g_list_prepend (retval, ev_attachment);
2804 g_warning ("%s", error->message);
2805 g_error_free (error);
2811 g_object_unref (attachment);
2814 return g_list_reverse (retval);
2818 pdf_document_attachments_has_attachments (EvDocumentAttachments *document)
2820 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2822 return poppler_document_has_attachments (pdf_document->document);
2826 pdf_document_document_attachments_iface_init (EvDocumentAttachmentsIface *iface)
2828 iface->has_attachments = pdf_document_attachments_has_attachments;
2829 iface->get_attachments = pdf_document_attachments_get_attachments;
2834 pdf_document_layers_has_layers (EvDocumentLayers *document)
2836 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2837 PopplerLayersIter *iter;
2839 iter = poppler_layers_iter_new (pdf_document->document);
2842 poppler_layers_iter_free (iter);
2848 build_layers_tree (PdfDocument *pdf_document,
2849 GtkTreeModel *model,
2850 GtkTreeIter *parent,
2851 PopplerLayersIter *iter)
2854 GtkTreeIter tree_iter;
2855 PopplerLayersIter *child;
2856 PopplerLayer *layer;
2857 EvLayer *ev_layer = NULL;
2862 layer = poppler_layers_iter_get_layer (iter);
2864 markup = g_markup_escape_text (poppler_layer_get_title (layer), -1);
2865 visible = poppler_layer_is_visible (layer);
2866 rb_group = poppler_layer_get_radio_button_group_id (layer);
2867 pdf_document->layers = g_list_append (pdf_document->layers,
2868 g_object_ref (layer));
2869 ev_layer = ev_layer_new (g_list_length (pdf_document->layers) - 1,
2870 poppler_layer_is_parent (layer),
2875 title = poppler_layers_iter_get_title (iter);
2876 markup = g_markup_escape_text (title, -1);
2883 gtk_tree_store_append (GTK_TREE_STORE (model), &tree_iter, parent);
2884 gtk_tree_store_set (GTK_TREE_STORE (model), &tree_iter,
2885 EV_DOCUMENT_LAYERS_COLUMN_TITLE, markup,
2886 EV_DOCUMENT_LAYERS_COLUMN_VISIBLE, visible,
2887 EV_DOCUMENT_LAYERS_COLUMN_ENABLED, TRUE, /* FIXME */
2888 EV_DOCUMENT_LAYERS_COLUMN_SHOWTOGGLE, (layer != NULL),
2889 EV_DOCUMENT_LAYERS_COLUMN_RBGROUP, rb_group,
2890 EV_DOCUMENT_LAYERS_COLUMN_LAYER, ev_layer,
2893 g_object_unref (ev_layer);
2896 child = poppler_layers_iter_get_child (iter);
2898 build_layers_tree (pdf_document, model, &tree_iter, child);
2899 poppler_layers_iter_free (child);
2900 } while (poppler_layers_iter_next (iter));
2903 static GtkTreeModel *
2904 pdf_document_layers_get_layers (EvDocumentLayers *document)
2906 GtkTreeModel *model = NULL;
2907 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2908 PopplerLayersIter *iter;
2910 iter = poppler_layers_iter_new (pdf_document->document);
2912 model = (GtkTreeModel *) gtk_tree_store_new (EV_DOCUMENT_LAYERS_N_COLUMNS,
2913 G_TYPE_STRING, /* TITLE */
2914 G_TYPE_OBJECT, /* LAYER */
2915 G_TYPE_BOOLEAN, /* VISIBLE */
2916 G_TYPE_BOOLEAN, /* ENABLED */
2917 G_TYPE_BOOLEAN, /* SHOWTOGGLE */
2918 G_TYPE_INT); /* RBGROUP */
2919 build_layers_tree (pdf_document, model, NULL, iter);
2920 poppler_layers_iter_free (iter);
2926 pdf_document_layers_show_layer (EvDocumentLayers *document,
2929 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2930 guint layer_id = ev_layer_get_id (layer);
2932 poppler_layer_show (POPPLER_LAYER (g_list_nth_data (pdf_document->layers, layer_id)));
2936 pdf_document_layers_hide_layer (EvDocumentLayers *document,
2939 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2940 guint layer_id = ev_layer_get_id (layer);
2942 poppler_layer_hide (POPPLER_LAYER (g_list_nth_data (pdf_document->layers, layer_id)));
2946 pdf_document_layers_layer_is_visible (EvDocumentLayers *document,
2949 PdfDocument *pdf_document = PDF_DOCUMENT (document);
2950 guint layer_id = ev_layer_get_id (layer);
2952 return poppler_layer_is_visible (POPPLER_LAYER (g_list_nth_data (pdf_document->layers, layer_id)));
2956 pdf_document_document_layers_iface_init (EvDocumentLayersIface *iface)
2958 iface->has_layers = pdf_document_layers_has_layers;
2959 iface->get_layers = pdf_document_layers_get_layers;
2960 iface->show_layer = pdf_document_layers_show_layer;
2961 iface->hide_layer = pdf_document_layers_hide_layer;
2962 iface->layer_is_visible = pdf_document_layers_layer_is_visible;