From c92707fece670689c9dd7470e35bdc802946dc45 Mon Sep 17 00:00:00 2001 From: Michael Vrhel Date: Wed, 22 Jun 2016 13:20:45 -0700 Subject: Add support for getting additional annotation information GSView will make use of the details about the annotations including the author, the date and which annotation the annotation is in reply to. This commit provides the interface to do this easily. --- include/mupdf/pdf/annot.h | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'include/mupdf/pdf') diff --git a/include/mupdf/pdf/annot.h b/include/mupdf/pdf/annot.h index c648370c..beb100df 100644 --- a/include/mupdf/pdf/annot.h +++ b/include/mupdf/pdf/annot.h @@ -121,7 +121,22 @@ void pdf_set_annot_contents(fz_context *ctx, pdf_document *doc, pdf_annot *annot /* pdf_annot_contents: return the contents of an annotation. */ -char *pdf_annot_contents(fz_context *ctx, pdf_document *doc, pdf_annot *annot); +char *pdf_annot_contents(fz_context *ctx, pdf_annot *annot); + +/* + pdf_annot_author: return the author of an annotation. +*/ +char *pdf_annot_author(fz_context *ctx, pdf_annot *annot); + +/* + pdf_annot_author: return the date of an annotation. +*/ +char *pdf_annot_date(fz_context *ctx, pdf_annot *annot); + +/* + pdf_annot_irt: return the indirect reference that this annotation is in reply to. +*/ +pdf_obj *pdf_annot_irt(fz_context *ctx, pdf_annot *annot); /* pdf_set_free_text_details: set the position, text, font and color for a free text annotation. -- cgit v1.2.3