blob: 433fc6d6d9aa0eda4c01513aeea252acbfd7130c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|