summaryrefslogtreecommitdiff
path: root/ios/document.h
diff options
context:
space:
mode:
Diffstat (limited to 'ios/document.h')
-rw-r--r--ios/document.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/ios/document.h b/ios/document.h
new file mode 100644
index 00000000..a16de309
--- /dev/null
+++ b/ios/document.h
@@ -0,0 +1,31 @@
+#ifndef _DOCUMENT_H_
+#define _DOCUMENT_H_
+
+#ifndef _FITZ_H_
+#error "fitz.h must be included before document.h"
+#endif
+
+#ifndef _MUPDF_H_
+#error "mupdf.h must be included before document.h"
+#endif
+
+#ifndef _MUXPS_H_
+#error "muxps.h must be included before document.h"
+#endif
+
+struct document
+{
+ pdf_xref *pdf;
+ xps_context *xps;
+ int number;
+ pdf_page *pdf_page;
+ xps_page *xps_page;
+};
+
+struct document *open_document(char *filename);
+int count_pages(struct document *doc);
+void measure_page(struct document *doc, int number, float *w, float *h);
+void draw_page(struct document *doc, int number, fz_device *dev, fz_matrix ctm);
+void close_document(struct document *doc);
+
+#endif