summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuHitView.h
blob: c976c3213ebd11a4fb505f8a233bda5440b5fb50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import <UIKit/UIKit.h>
#import "MuTapResult.h"

#undef ABS
#undef MIN
#undef MAX

#include "mupdf/fitz.h"

@interface MuHitView : UIView
- (instancetype) initWithSearchResults: (int)n forDocument: (fz_document *)doc;
- (instancetype) initWithLinks: (fz_link*)links forDocument: (fz_document *)doc;
- (void) setPageSize: (CGSize)s;
- (MuTapResult *) handleTap:(CGPoint)pt;
@end