summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageViewReflow.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuPageViewReflow.h')
-rw-r--r--platform/ios/Classes/MuPageViewReflow.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuPageViewReflow.h b/platform/ios/Classes/MuPageViewReflow.h
new file mode 100644
index 00000000..28638bc8
--- /dev/null
+++ b/platform/ios/Classes/MuPageViewReflow.h
@@ -0,0 +1,20 @@
+//
+// MuPageViewReflow.h
+// MuPDF
+//
+// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import "MuDocRef.h"
+#import "MuPageView.h"
+
+@interface MuPageViewReflow : UIWebView <UIWebViewDelegate,UIGestureRecognizerDelegate,MuPageView>
+{
+ int number;
+ float scale;
+}
+
+-(id) initWithFrame:(CGRect)frame document:(MuDocRef *)aDoc page:(int)aNumber;
+
+@end