summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageView.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuPageView.h')
-rw-r--r--platform/ios/Classes/MuPageView.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuPageView.h b/platform/ios/Classes/MuPageView.h
index ab141ea8..58d1c8a7 100644
--- a/platform/ios/Classes/MuPageView.h
+++ b/platform/ios/Classes/MuPageView.h
@@ -13,10 +13,12 @@
#include "mupdf/fitz.h"
+#import "MuDocRef.h"
#include "MuHitView.h"
@interface MuPageView : UIScrollView <UIScrollViewDelegate>
{
+ MuDocRef *docRef;
fz_document *doc;
fz_page *page;
int number;
@@ -30,7 +32,7 @@
float tileScale;
BOOL cancel;
}
-- (id) initWithFrame: (CGRect)frame document: (fz_document*)aDoc page: (int)aNumber;
+- (id) initWithFrame: (CGRect)frame document: (MuDocRef*)aDoc page: (int)aNumber;
- (void) displayImage: (UIImage*)image;
- (void) resizeImage;
- (void) loadPage;