summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuTextSelectView.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuTextSelectView.h')
-rw-r--r--platform/ios/Classes/MuTextSelectView.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuTextSelectView.h b/platform/ios/Classes/MuTextSelectView.h
new file mode 100644
index 00000000..95710bd3
--- /dev/null
+++ b/platform/ios/Classes/MuTextSelectView.h
@@ -0,0 +1,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