CPDFListView.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. //
  2. // CPDFListView.h
  3. // ComPDFKit
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. // This notice may not be removed from this file.
  11. //
  12. #import <ComPDFKit/ComPDFKit.h>
  13. #import <Foundation/Foundation.h>
  14. #import <QuartzCore/QuartzCore.h>
  15. #import <KMDrawViewSDK_Mac/KMDrawViewSDK_Mac.h>
  16. #define SKAnnotationKey @"SKAnnotation"
  17. extern NSString *SKPasteboardTypeLineStyle;
  18. extern NSNotificationName const CPDFListViewSelectionChangedNotification;
  19. extern NSNotificationName const CPDFListViewToolModeChangeNotification;
  20. extern NSNotificationName const CPDFListViewAnnotationTypeChangeNotification;
  21. extern NSNotificationName const CPDFListViewMagnificationChangedNotification;
  22. extern NSNotificationName const CPDFListViewDidAddAnnotationNotification;
  23. extern NSNotificationName const CPDFListViewDidRemoveAnnotationNotification;
  24. extern NSNotificationName const CPDFListViewActiveAnnotationsChangeNotification;
  25. extern NSNotificationName const CPDFListViewAnnotationsAttributeHasChangeNotification;
  26. extern NSNotificationName const KMPDFViewTableAnnotationDidChangeNotification;
  27. extern NSNotificationName const CPDFListViewDisplayModeChangeNotification;
  28. typedef NS_ENUM(NSInteger, CPDFViewSidebarSpeedMode) {
  29. CPDFViewSidebarSpeedModeLeft = 0,
  30. CPDFViewSidebarSpeedModeRight
  31. };
  32. typedef NS_ENUM(NSInteger, CAnnotationType) {
  33. CAnnotationTypeUnkown = 0,
  34. CAnnotationTypeAnchored, //Note
  35. CAnnotationTypeLink,
  36. CAnnotationTypeFreeText,
  37. CAnnotationTypeLine,
  38. CAnnotationTypeArrow,
  39. CAnnotationTypeSquare,
  40. CAnnotationTypeCircle,
  41. CAnnotationTypeHighlight,
  42. CAnnotationTypeUnderline,
  43. CAnnotationTypeSquiggly,
  44. CAnnotationTypeStrikeOut,
  45. CAnnotationTypeStamp,
  46. CAnnotationTypeSignSignature,
  47. /*CAnnotationTypeCaret,*/
  48. CAnnotationTypeInk,
  49. /*CAnnotationTypePopUp,*/
  50. /*CAnnotationTypeFileattachment,*/
  51. /*CAnnotationTypeSound,*/
  52. /*CAnnotationTypeMovie,*/
  53. CAnnotationTypeRedact,
  54. CAnnotationTypeEraser,
  55. CAnnotationTypeMeasureSquare,
  56. CAnnotationTypeMeasureLine,
  57. CAnnotationTypeMeasurePolyGon,
  58. CAnnotationTypeMeasurePolyLine,
  59. CAnnotationTypeRadioButton = 100,
  60. CAnnotationTypeCheckBox,
  61. CAnnotationTypeTextField,
  62. CAnnotationTypeComboBox,
  63. CAnnotationTypeListMenu,
  64. CAnnotationTypeActionButton,
  65. CAnnotationTypeSignature,
  66. CAnnotationTypeSignText = 200,
  67. CAnnotationTypeSignFalse,
  68. CAnnotationTypeSignTure,
  69. CAnnotationTypeSignCircle,
  70. CAnnotationTypeSignLine,
  71. CAnnotationTypeSignDot,
  72. CAnnotationTypeSignConfig,
  73. CAnnotationTypeSignDate,
  74. CAnnotationTypeTable,
  75. };
  76. typedef NS_ENUM(NSInteger, CToolMode) {
  77. CTextToolMode = 0, //常规模式
  78. CMoveToolMode, //滚动模式
  79. CMagnifyToolMode, //放大镜模式
  80. CSelectToolMode, //内容选择模式
  81. CNoteToolMode, //注释创建模式
  82. CSelectZoomToolMode, //区域放大模式
  83. CFormToolMode, //Form模式
  84. CEditPDFToolMode, //内容编辑模式
  85. CEditPDFToolLink, //添加Link注释模式
  86. CRedactToolMode, //密文模式
  87. CRedactErasureToolMode, //密文擦除
  88. CDigitalSignToolMode, //数字签名
  89. COCRToolMode, //OCR模式
  90. CCropToolMode, //裁剪模式
  91. }; //移除填写模式+测量模式(CNoteToolMode),isMeasureAnnotationType&isSelfSignAnnotationType来区分
  92. typedef NS_ENUM(NSUInteger, KMPDFActiveFormsAlignType) {
  93. KMPDFActiveFormsAlignType_Left = 0,
  94. KMPDFActiveFormsAlignType_Vertical,
  95. KMPDFActiveFormsAlignType_Right,
  96. KMPDFActiveFormsAlignType_Top,
  97. KMPDFActiveFormsAlignType_Horizontally,
  98. KMPDFActiveFormsAlignType_Bottom,
  99. KMPDFActiveFormsAlignType_DisHorizontally,
  100. KMPDFActiveFormsAlignType_DisVertical
  101. };
  102. typedef NS_ENUM(NSUInteger, KMPDFViewMode) {
  103. KMPDFViewModeNormal = 0,
  104. KMPDFViewModeSoft,
  105. KMPDFViewModeNight,
  106. KMPDFViewModeGreen,
  107. KMPDFViewModeThemes1,
  108. KMPDFViewModeThemes2,
  109. KMPDFViewModeThemes3,
  110. KMPDFViewModeThemes4,
  111. KMPDFViewModeOther
  112. };
  113. typedef NS_ENUM(NSInteger, KMPDFViewSplitMode) {
  114. KMPDFViewSplitModeDisable = 0,
  115. KMPDFViewSplitModeHorizontal,
  116. KMPDFViewSplitModeVertical
  117. };
  118. enum {
  119. SKDragArea = 1 << 16,
  120. SKResizeUpDownArea = 1 << 17,
  121. SKResizeLeftRightArea = 1 << 18,
  122. SKResizeDiagonal45Area = 1 << 19,
  123. SKResizeDiagonal135Area = 1 << 20,
  124. SKReadingBarArea = 1 << 21,
  125. SKSpecialToolArea = 1 << 22
  126. };
  127. @protocol CPDFListViewDelegate;
  128. @class CStampSignatureObject,CPDFListStampAnnotation,CPDFListSignatureAnnotation, KMFormListMenuPopWindowController, KMTableCellData;
  129. @interface CPDFListView : CPDFView
  130. @property (nonatomic, weak) id<CPDFListViewDelegate>pdfListViewDelegate;
  131. // Methods for The currently selected Annotation.
  132. @property (nonatomic, readonly) NSMutableArray <CPDFAnnotation *>*activeAnnotations;
  133. // Methods for The currently selected Annotation.
  134. @property (nonatomic, readonly) CPDFAnnotation * activeAnnotation;
  135. // Methods for The annotation type currently selected.
  136. @property (nonatomic, assign) CAnnotationType annotationType;
  137. // Method of the currently selected annotation mode.
  138. @property (nonatomic, assign) CToolMode toolMode;
  139. // The magnification times when the current magnifying glass is in mode
  140. @property (nonatomic, readonly) CGFloat magnification;
  141. @property (nonatomic, assign) BOOL isSetLinkDestinationArea;
  142. // Show Annotation or not
  143. @property (nonatomic, assign) BOOL hideNotes;
  144. // Whether to display a Form comment hop number
  145. @property (nonatomic, assign) BOOL showHopnumber;
  146. // Whether to display the Form name
  147. @property (nonatomic, assign) BOOL showFormFieldName;
  148. // Auxiliary reference line
  149. @property (nonatomic, strong) CAShapeLayer *shapeLayerLeftV;
  150. @property (nonatomic, strong) CAShapeLayer *shapeLayerRightV;
  151. @property (nonatomic, strong) CAShapeLayer *shapeLayerTopH;
  152. @property (nonatomic, strong) CAShapeLayer *shapeLayerBottomH;
  153. @property (nonatomic, assign) NSPoint lastAddAnnotationPoint;
  154. @property (nonatomic, assign) BOOL isCreatAnnotation;
  155. @property (nonatomic, assign) NSInteger toolBarCreateAnnotationMenuItem;
  156. @property (nonatomic, assign) BOOL isTakeSnapeSelectConetent;
  157. @property (nonatomic, assign) KMPDFViewMode viewMode;
  158. @property (nonatomic, assign) KMPDFViewSplitMode viewSplitMode;
  159. @property (nonatomic, strong) KMFormListMenuPopWindowController *listWindowController;
  160. @property (nonatomic, strong) NSTrackingArea *trackingArea;
  161. @property (nonatomic, strong) NSImage *originImage;
  162. @property (nonatomic,retain) KMTableCellData *cellCopyData;
  163. @property (nonatomic,retain) NSTextField *tableTextField;
  164. @property (nonatomic, assign) NSPoint dragTablePoint;
  165. @property (nonatomic, assign) BOOL editAreaBoundUpdating;
  166. // Measurement attribute setting
  167. @property (nonatomic, retain) CPDFDistanceMeasureInfo *distanceMeasureInfo;
  168. @property (nonatomic, retain) CPDFPerimeterMeasureInfo *perimeterMeasureInfo;
  169. @property (nonatomic, retain) CPDFAreaMeasureInfo *polygonAreaMeasureInfo;
  170. @property (nonatomic, retain) CPDFAreaMeasureInfo *squareAreaMeasureInfo;
  171. @property (nonatomic, assign) BOOL isPresentationMode;
  172. @property (nonatomic, strong) KMDrawView *presentationDrawView;
  173. - (CPDFAnnotation *)addAnnotationWithType:(CAnnotationType)annotationType selection:(CPDFSelection *)selection page:(CPDFPage *)page bounds:(NSRect)bounds;
  174. - (void)addAnnotationWithAnnotation:(CPDFAnnotation *)annotation toPage:(CPDFPage *)page;
  175. // Add stamp Annotation, add directly after mouse click
  176. // a new parameter.
  177. // stampObject - stamp Object.
  178. // isToolModel - Whether it is a pattern
  179. - (void)setAddStampObject:(CStampSignatureObject *)stampObject keepToolModel:(BOOL)isToolModel;
  180. // Add an image Stamp note
  181. - (void)addAnnotationWithImage:(NSImage *)image page:(CPDFPage *)page point:(NSPoint)point;
  182. // Refresh the currently selected Annotation
  183. - (void)updateActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotation;
  184. // Edit Annotation
  185. - (void)editAnnotation:(CPDFAnnotation *)annotation;
  186. // Rotate Stamp notes, angle 0-360 degrees,Rotation is supported only by the current addition
  187. - (void)rotateStampAnnotation:(CPDFListStampAnnotation *)annotation rotateAngle:(NSInteger)angle;
  188. // Rotate Signature notes, angle 0-360 degrees,Rotation is supported only by the current addition
  189. - (void)rotateSignatureAnnotation:(CPDFListSignatureAnnotation *)annotation rotateAngle:(NSInteger)angle;
  190. // When selecting a region mode, the selected region is obtained
  191. - (NSRect)currentSelectionRect;
  192. - (CPDFPage *)currentSelectionPage;
  193. // Scale the page to the specified range
  194. - (void)zoomToRect:(NSRect)rect onPage:(CPDFPage *)page;
  195. // Remove Auxiliary reference line
  196. - (void)removeShapeLayer;
  197. // Determines whether the current annotation is consistent with the selected annotation mode
  198. - (BOOL)consistentTypeWithAnnotation:(CPDFAnnotation *)annotation;
  199. //修改对齐方式
  200. - (void)changeAnnotations:(NSArray<CPDFAnnotation *> *)annotations alignmentType:(KMPDFActiveFormsAlignType)type;
  201. - (void)addImageAnnotation:(NSImage *)image center:(NSPoint)center isRemoveBGColor:(BOOL)isRemoveBGColor;
  202. - (void)setPageBackgroundColorWithColor:(NSColor *)color viewMode:(KMPDFViewMode)viewMode;
  203. - (BOOL)writeSelectionToPasteboard:(NSPasteboard *)pboard types:(NSArray *)types;
  204. - (void)enterPresentationDrawMode;
  205. - (BOOL)isEnterPresentationDrawMode;
  206. - (void)changePresentationDrawModelColor:(NSColor *)color;
  207. - (void)resetPresentationDrawMode;
  208. - (void)exitPresentationDrawMode;
  209. - (KMDrawView *)CreatePresentationDrawView;
  210. - (CGRect)selectionMultipleBoundsWithAnnotations:(NSArray<CPDFAnnotation *> *)annotations;
  211. - (CGRect)selectionMultipleBoundsWithEditArea:(NSArray<CPDFEditArea *> *)editAreas;
  212. @end
  213. @protocol CPDFListViewDelegate <NSObject>
  214. @optional
  215. - (void)PDFListViewChangedSelectionOrMagnification:(CPDFListView *)pdfListView;
  216. - (void)PDFListViewDidSelectionEnd:(CPDFListView *)pdfListView;
  217. - (void)PDFListViewChangedMagnification:(CPDFListView *)pdfListView;
  218. - (void)PDFListViewChangedToolMode:(CPDFListView *)pdfListView forToolMode:(CToolMode)toolMode;
  219. - (void)PDFListViewChangedAnnotationType:(CPDFListView *)pdfListView forAnnotationType:(CAnnotationType)annotationType;
  220. - (NSColor *)PDFListViewBackgroundColor;
  221. - (void)PDFListViewAddAnnotations:(CPDFListView *)pdfListView forAddAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  222. - (void)PDFListViewRemoveAnnotations:(CPDFListView *)pdfListView forRemoveAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  223. - (void)PDFListViewChangeatioActiveAnnotations:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations isRightMenu:(BOOL)isRightMenu;
  224. - (void)PDFListViewMenuForEvent:(CPDFListView *)pdfListView forEvent:(NSEvent *)theEvent clickMenu:(NSMenu **)menu isMoveSelectAnno:(BOOL)isMoveSelectAnno;
  225. - (BOOL)PDFListViewMenuValidate:(CPDFListView *)pdfListView menuItem:(NSMenuItem *)menuItem isTakesEffect:(BOOL *)isTakesEffect;
  226. - (void)PDFListViewEditAnnotation:(CPDFListView *)pdfListView forAnnotation:(CPDFAnnotation *)anotation;
  227. - (BOOL)PDFListViewKeyDownIsContinue:(CPDFListView *)pdfListView theEvent:(NSEvent *)theEvent;
  228. - (NSArray<NSMenuItem *> *)PDFListViewMenuItemsEditingAtPoint:(CGPoint)point forPage:(CPDFPage *)page menuItems:(NSArray <NSMenuItem *>*)menuItems;
  229. - (void)PDFListViewDidTextFontChanged:(CPDFListView *)pdfListView;
  230. - (void)PDFListViewDidTextColorChanged:(CPDFListView *)pdfListView withColor:(NSColor *)color;
  231. - (void)PDFListViewRedactErasure:(CPDFListView *)pdfListView;
  232. - (void)PDFListViewLinkDestinationStart:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  233. - (void)PDFListViewLinkDestinationEnd:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  234. - (void)PDFListViewKeyDowClosePanel:(CPDFViewSidebarSpeedMode)speedy event:(NSEvent *)theEvent;
  235. - (NSArray<NSColor *> *)PDFListViewEventMarkupColorWithAnnotation:(CPDFAnnotation *)annotation;
  236. - (BOOL)PDFListViewHaveDocumentAttribute;
  237. // 是否需要绘制注释 【文字、背景】
  238. - (BOOL)PDFListView:(CPDFListView *)pdfListView needDrawAnnotation:(CPDFAnnotation *)annotation;
  239. - (void)PDFListViewAnnotationAttributeHasChange:(CPDFListView *)pdfListView withAnnotation:(CPDFAnnotation *)annotation;
  240. - (void)PDFListView:(CPDFListView *)sender showSnapshotAtPageNumber:(NSInteger)pageNum forRect:(NSRect)rect scaleFactor:(CGFloat)scaleFactor autoFits:(BOOL)autoFits;
  241. - (void)PDFListView:(CPDFListView *)pdfView documentDataDidChanged:(id)docData withInfo:(NSDictionary *)info;
  242. - (void)PDFListViewAnnotationMeasureInfoChange:(CPDFListView *)pdfListView withAnnotation:(CPDFAnnotation *)annotation;
  243. - (void)PDFListViewMeasureCancel:(CPDFListView *)pdfListView;
  244. - (void)PDFListViewMobileAnnotationBegan:(CGPoint)point forPDFListView:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations;
  245. - (void)PDFListViewMobileAnnotationMove:(CGPoint)point forPDFListView:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations;
  246. - (void)PDFListViewMobileAnnotationEnd:(CGPoint)point forPDFListView:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations;
  247. @end