summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuAnnotation.m
blob: 89cc9d48e0189497596b0077bb7de4bc5b2b39e8 (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
#import "MuAnnotation.h"

@implementation MuAnnotation
{
	int type;
	CGRect rect;
}

@synthesize type, rect;

-(id) initFromAnnot:(fz_annot *)annot forPage:(fz_page *)page;
{
	self = [super init];
	if (self)
	{
		fz_rect frect;
		type = pdf_annot_type(ctx, (pdf_annot *)annot);
		fz_bound_annot(ctx, page, annot, &frect);
		rect.origin.x = frect.x0;
		rect.origin.y = frect.y0;
		rect.size.width = frect.x1 - frect.x0;
		rect.size.height = frect.y1 - frect.y0;
	}
	return self;
}

+(MuAnnotation *) annotFromAnnot:(fz_annot *)annot forPage:(fz_page *)page;
{
	return [[[MuAnnotation alloc] initFromAnnot:annot forPage:page] autorelease];
}
@end