summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageViewReflow.h
diff options
context:
space:
mode:
authorPaul Gardiner <paul.gardiner@artifex.com>2013-09-24 16:58:27 +0100
committerPaul Gardiner <paul.gardiner@artifex.com>2013-09-24 16:58:27 +0100
commitd4a69b3f24c3697cb0e77b7685468423c0949a71 (patch)
tree6677063014ee56fcdb45e8307805c87405d4b3b0 /platform/ios/Classes/MuPageViewReflow.h
parentaa8bf97eb104986fae3245bc675bd50dded01804 (diff)
downloadmupdf-d4a69b3f24c3697cb0e77b7685468423c0949a71.tar.xz
iOS: add reflow 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