SkyEpub SDK for iOS 7
 All Classes Functions Variables Properties
Highlight.h
1 //
2 // Highlight.h
3 // eBook
4 //
5 // Created by 하늘나무 on 10. 10. 25..
6 // Copyright 2010 Techdigm Corporation. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface Highlight : NSObject {
14  int code;
16  int bookCode;
20  float pagePercent;
26  int endIndex;
28  int endOffset;
30  unsigned int highlightColor;
32  BOOL isNote;
34  NSString *text;
36  NSString *note;
38  unsigned int backgroundColor;
40  int top;
42  int left;
44  int pageIndex;
46  NSString* datetime;
48  BOOL forSearch;
51 }
52 
53 -(void)print;
54 -(BOOL)isEqual:(Highlight*)highlight;
55 
56 @property (nonatomic,retain) NSString* note,*text,*datetime;
57 @property int code,bookCode,chapterIndex,startIndex,startOffset,endIndex,endOffset,top,left,pageIndex;
58 @property unsigned int highlightColor,backgroundColor;
59 @property float pagePercent;
60 @property BOOL isNote,forSearch,isTemporary;
61 
62 @end