summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuTapResult.h
blob: 780631173da99e96ddc0a0c7a6ceccd4d3f0c469 (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
#import <Foundation/Foundation.h>
#import "MuAnnotation.h"

@class MuTapResultInternalLink;
@class MuTapResultExternalLink;
@class MuTapResultRemoteLink;
@class MuTapResultWidget;
@class MuTapResultAnnotation;

@interface MuTapResult : NSObject
-(void) switchCaseInternal:(void (^)(MuTapResultInternalLink *))internalLinkBlock
		caseExternal:(void (^)(MuTapResultExternalLink *))externalLinkBlock
		caseRemote:(void (^)(MuTapResultRemoteLink *))remoteLinkBlock
		caseWidget:(void (^)(MuTapResultWidget *))widgetBlock
		caseAnnotation:(void (^)(MuTapResultAnnotation *))annotationBlock;
@end

@interface MuTapResultInternalLink : MuTapResult
@property(readonly) int pageNumber;
-(instancetype)initWithPageNumber:(int)aNumber;
@end

@interface MuTapResultExternalLink : MuTapResult
@property(readonly) NSString *url;
-(instancetype)initWithUrl:(NSString *)aString;
@end

@interface MuTapResultRemoteLink : MuTapResult
@property(readonly) NSString *fileSpec;
@property(readonly) int pageNumber;
@property(readonly) BOOL newWindow;
-(instancetype)initWithFileSpec:(NSString *)aString pageNumber:(int)aNumber newWindow:(BOOL)aBool;
@end

@interface MuTapResultWidget : MuTapResult
@end

@interface MuTapResultAnnotation : MuTapResult
@property(readonly) MuAnnotation *annot;
-(instancetype)initWithAnnotation:(MuAnnotation *)aAnnot;
@end