blob: 9bbe459cadd085bf6cd3974956dc4f76ea4ee55b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//
// MuPageView.h
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#undef ABS
#undef MIN
#undef MAX
#include "mupdf/fitz.h"
#import "MuHitView.h"
#import "MuPageView.h"
#import "MuDocRef.h"
#import "MuDialogCreator.h"
@interface MuPageViewNormal : UIScrollView <UIScrollViewDelegate,MuPageView>
{
MuDocRef *docRef;
fz_document *doc;
fz_page *page;
fz_display_list *page_list;
fz_display_list *annot_list;
int number;
UIActivityIndicatorView *loadingView;
UIImageView *imageView;
UIImageView *tileView;
MuHitView *hitView;
MuHitView *linkView;
NSArray *widgetRects;
CGSize pageSize;
CGRect tileFrame;
float tileScale;
BOOL cancel;
id<MuDialogCreator> dialogCreator;
}
- (id) initWithFrame: (CGRect)frame dialogCreator:(id<MuDialogCreator>)dia document: (MuDocRef *)aDoc page: (int)aNumber;
- (void) displayImage: (UIImage*)image;
- (void) resizeImage;
- (void) loadPage;
- (void) loadTile;
@end
|