diff options
Diffstat (limited to 'platform/ios/Classes/MuPageViewNormal.h')
-rw-r--r-- | platform/ios/Classes/MuPageViewNormal.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuPageViewNormal.h b/platform/ios/Classes/MuPageViewNormal.h index 542237ec..9bbe459c 100644 --- a/platform/ios/Classes/MuPageViewNormal.h +++ b/platform/ios/Classes/MuPageViewNormal.h @@ -16,6 +16,7 @@ #import "MuHitView.h" #import "MuPageView.h" #import "MuDocRef.h" +#import "MuDialogCreator.h" @interface MuPageViewNormal : UIScrollView <UIScrollViewDelegate,MuPageView> { @@ -30,12 +31,14 @@ UIImageView *tileView; MuHitView *hitView; MuHitView *linkView; + NSArray *widgetRects; CGSize pageSize; CGRect tileFrame; float tileScale; BOOL cancel; + id<MuDialogCreator> dialogCreator; } -- (id) initWithFrame: (CGRect)frame document: (MuDocRef *)aDoc page: (int)aNumber; +- (id) initWithFrame: (CGRect)frame dialogCreator:(id<MuDialogCreator>)dia document: (MuDocRef *)aDoc page: (int)aNumber; - (void) displayImage: (UIImage*)image; - (void) resizeImage; - (void) loadPage; |