blob: 95710bd37f71804c5425ab0e9e0268d31dabb204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// MuTextSelectView.h
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#include "common.h"
@interface MuTextSelectView : UIView
{
NSArray *words;
CGSize pageSize;
UIColor *color;
CGPoint start;
CGPoint end;
}
- (id) initWithWords:(NSArray *)_words pageSize:(CGSize)_pageSize;
- (NSArray *) selectionRects;
- (NSString *) selectedText;
@end
|