Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7643 views
1
#import <UIKit/UIKit.h>
2
#import "MuTapResult.h"
3
4
#undef ABS
5
#undef MIN
6
#undef MAX
7
8
#include "mupdf/fitz.h"
9
10
@interface MuHitView : UIView
11
- (id) initWithSearchResults: (int)n forDocument: (fz_document *)doc;
12
- (id) initWithLinks: (fz_link*)links forDocument: (fz_document *)doc;
13
- (void) setPageSize: (CGSize)s;
14
- (MuTapResult *) handleTap:(CGPoint)pt;
15
@end
16
17