CPDFListView.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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. extern NSNotificationName const CPDFListViewSelectionChangedNotification;
  16. extern NSNotificationName const CPDFListViewToolModeChangeNotification;
  17. extern NSNotificationName const CPDFListViewAnnotationTypeChangeNotification;
  18. extern NSNotificationName const CPDFListViewMagnificationChangedNotification;
  19. extern NSNotificationName const CPDFListViewDidAddAnnotationNotification;
  20. extern NSNotificationName const CPDFListViewDidRemoveAnnotationNotification;
  21. extern NSNotificationName const CPDFListViewActiveAnnotationsChangeNotification;
  22. extern NSNotificationName const CPDFListViewAnnotationsAttributeHasChangeNotification;
  23. extern NSNotificationName const KMPDFViewTableAnnotationDidChangeNotification;
  24. typedef NS_ENUM(NSInteger, CPDFViewSidebarSpeedMode) {
  25. CPDFViewSidebarSpeedModeLeft = 0,
  26. CPDFViewSidebarSpeedModeRight
  27. };
  28. typedef NS_ENUM(NSInteger, CAnnotationType) {
  29. CAnnotationTypeUnkown = 0,
  30. CAnnotationTypeAnchored,
  31. CAnnotationTypeLink,
  32. CAnnotationTypeFreeText,
  33. CAnnotationTypeLine,
  34. CAnnotationTypeArrow,
  35. CAnnotationTypeSquare,
  36. CAnnotationTypeCircle,
  37. /*CAnnotationTypePolyGon,*/
  38. /*CAnnotationTypePolyLine,*/
  39. CAnnotationTypeHighlight,
  40. CAnnotationTypeUnderline,
  41. // CAnnotationTypeSquiggly,
  42. CAnnotationTypeStrikeOut,
  43. CAnnotationTypeStamp,
  44. CAnnotationTypeSignSignature,
  45. /*CAnnotationTypeCaret,*/
  46. CAnnotationTypeInk,
  47. /*CAnnotationTypePopUp,*/
  48. /*CAnnotationTypeFileattachment,*/
  49. /*CAnnotationTypeSound,*/
  50. /*CAnnotationTypeMovie,*/
  51. CAnnotationTypeRedact,
  52. CAnnotationTypeEraser,
  53. CAnnotationTypeEditTextImage,
  54. CAnnotationTypeAddText,
  55. CAnnotationTypeAddImage,
  56. CAnnotationTypeRadioButton = 100,
  57. CAnnotationTypeCheckBox,
  58. CAnnotationTypeTextField,
  59. CAnnotationTypeComboBox,
  60. CAnnotationTypeListMenu,
  61. CAnnotationTypeActionButton,
  62. CAnnotationTypeSignature,
  63. CAnnotationTypeSignText = 200,
  64. CAnnotationTypeSignFalse,
  65. CAnnotationTypeSignTure,
  66. CAnnotationTypeSignCircle,
  67. CAnnotationTypeSignLine,
  68. CAnnotationTypeSignDot,
  69. CAnnotationTypeSignConfig,
  70. CAnnotationTypeSignDate,
  71. CAnnotationTypeTable,
  72. };
  73. typedef NS_ENUM(NSInteger, CToolMode) {
  74. CTextToolMode = 0,
  75. CMoveToolMode,
  76. CMagnifyToolMode,
  77. CSelectToolMode,
  78. CNoteToolMode,
  79. CSelectZoomToolMode,
  80. CFormToolMode,
  81. CSelfSignMode,
  82. CRedactToolMode,
  83. CRedactErasureToolMode,
  84. CEditPDFToolMode,
  85. };
  86. typedef NS_ENUM(NSUInteger, KMPDFActiveFormsAlignType) {
  87. KMPDFActiveFormsAlignType_Left = 0,
  88. KMPDFActiveFormsAlignType_Vertical,
  89. KMPDFActiveFormsAlignType_Right,
  90. KMPDFActiveFormsAlignType_Top,
  91. KMPDFActiveFormsAlignType_Horizontally,
  92. KMPDFActiveFormsAlignType_Bottom,
  93. KMPDFActiveFormsAlignType_DisHorizontally,
  94. KMPDFActiveFormsAlignType_DisVertical
  95. };
  96. typedef NS_ENUM(NSUInteger, KMPDFViewActiveFormsType) {
  97. KMPDFViewActiveFormsType_NotAllform = -1,//注释类型不全为form类型
  98. KMPDFViewActiveFormsType_Mix = 0,//包含多种类型的form(全为form)
  99. KMPDFViewActiveFormsType_Pure,//单纯只有一种form(全为form)
  100. KMPDFViewActiveFormsType_PureSingle,//单纯只有一种form(全为form),个数为1
  101. KMPDFViewActiveFormsType_Text,//单纯只有一种form,并且是text(全为form)
  102. KMPDFViewActiveFormsType_TextSingle,//单纯只有一种form,并且是text(全为form),个数为1
  103. KMPDFViewActiveFormsType_None
  104. };
  105. typedef NS_ENUM(NSUInteger, KMPDFViewMode) {
  106. KMPDFViewModeNormal = 0,
  107. KMPDFViewModeSoft,
  108. KMPDFViewModeNight,
  109. KMPDFViewModeGreen,
  110. KMPDFViewModeThemes1,
  111. KMPDFViewModeThemes2,
  112. KMPDFViewModeThemes3,
  113. KMPDFViewModeThemes4,
  114. KMPDFViewModeOther
  115. };
  116. typedef NS_ENUM(NSInteger, KMPDFViewSplitMode) {
  117. KMPDFViewSplitModeDisable = 0,
  118. KMPDFViewSplitModeHorizontal,
  119. KMPDFViewSplitModeVertical
  120. };
  121. @protocol CPDFListViewDelegate;
  122. @class CStampSignatureObject,CPDFListStampAnnotation,CPDFListSignatureAnnotation, KMFormListMenuPopWindowController;
  123. @interface CPDFListView : CPDFView
  124. @property (nonatomic, weak) id<CPDFListViewDelegate>pdfListViewDelegate;
  125. // Methods for The currently selected Annotation.
  126. @property (nonatomic, readonly) NSMutableArray <CPDFAnnotation *>*activeAnnotations;
  127. // Methods for The currently selected Annotation.
  128. @property (nonatomic, readonly) CPDFAnnotation * activeAnnotation;
  129. // Methods for The annotation type currently selected.
  130. @property (nonatomic, assign) CAnnotationType annotationType;
  131. // Method of the currently selected annotation mode.
  132. @property (nonatomic, assign) CToolMode toolMode;
  133. // The magnification times when the current magnifying glass is in mode
  134. @property (nonatomic, readonly) CGFloat magnification;
  135. @property (nonatomic, assign) BOOL isSetLinkDestinationArea;
  136. // Show Annotation or not
  137. @property (nonatomic, assign) BOOL hideNotes;
  138. // Whether to display a Form comment hop number
  139. @property (nonatomic, assign) BOOL showHopnumber;
  140. // Whether to display the Form name
  141. @property (nonatomic, assign) BOOL showFormFieldName;
  142. // Auxiliary reference line
  143. @property (nonatomic, strong) CAShapeLayer *shapeLayerLeftV;
  144. @property (nonatomic, strong) CAShapeLayer *shapeLayerRightV;
  145. @property (nonatomic, strong) CAShapeLayer *shapeLayerTopH;
  146. @property (nonatomic, strong) CAShapeLayer *shapeLayerBottomH;
  147. @property (nonatomic,assign) NSPoint lastAddAnnotationPoint;
  148. @property (nonatomic, assign) BOOL isCreatAnnotation;
  149. @property (nonatomic, assign) NSInteger toolBarCreateAnnotationMenuItem;
  150. @property (nonatomic, assign) BOOL isTakeSnapeSelectConetent;
  151. @property (nonatomic,assign) KMPDFViewMode viewMode;
  152. @property (nonatomic,assign) KMPDFViewSplitMode viewSplitMode;
  153. @property (nonatomic,strong) KMFormListMenuPopWindowController *listWindowController;
  154. - (CPDFAnnotation *)addAnnotationWithType:(CAnnotationType)annotationType selection:(CPDFSelection *)selection page:(CPDFPage *)page bounds:(NSRect)bounds;
  155. - (void)addAnnotationWithAnnotation:(CPDFAnnotation *)annotation toPage:(CPDFPage *)page;
  156. // Add stamp Annotation, add directly after mouse click
  157. // a new parameter.
  158. // stampObject - stamp Object.
  159. // isToolModel - Whether it is a pattern
  160. - (void)setAddStampObject:(CStampSignatureObject *)stampObject keepToolModel:(BOOL)isToolModel;
  161. // Add an image Stamp note
  162. - (void)addAnnotationWithImage:(NSImage *)image page:(CPDFPage *)page point:(NSPoint)point;
  163. // Refresh the currently selected Annotation
  164. - (void)updateActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotation;
  165. // Edit Annotation
  166. - (void)editAnnotation:(CPDFAnnotation *)annotation;
  167. // Rotate Stamp notes, angle 0-360 degrees,Rotation is supported only by the current addition
  168. - (void)rotateStampAnnotation:(CPDFListStampAnnotation *)annotation rotateAngle:(NSInteger)angle;
  169. // Rotate Signature notes, angle 0-360 degrees,Rotation is supported only by the current addition
  170. - (void)rotateSignatureAnnotation:(CPDFListSignatureAnnotation *)annotation rotateAngle:(NSInteger)angle;
  171. // When selecting a region mode, the selected region is obtained
  172. - (NSRect)currentSelectionRect;
  173. // Scale the page to the specified range
  174. - (void)zoomToRect:(NSRect)rect onPage:(CPDFPage *)page;
  175. // Remove Auxiliary reference line
  176. - (void)removeShapeLayer;
  177. // Determines whether the current annotation is consistent with the selected annotation mode
  178. - (BOOL)consistentTypeWithAnnotation:(CPDFAnnotation *)annotation;
  179. - (void)formsAnnotationAlign:(KMPDFActiveFormsAlignType)type;
  180. - (void)addImageAnnotation:(NSImage *)image center:(NSPoint)center isRemoveBGColor:(BOOL)isRemoveBGColor;
  181. - (void)setPageBackgroundColorWithColor:(NSColor *)color viewMode:(KMPDFViewMode)viewMode;
  182. - (BOOL)writeSelectionToPasteboard:(NSPasteboard *)pboard types:(NSArray *)types;
  183. @end
  184. @protocol CPDFListViewDelegate <NSObject>
  185. @optional
  186. - (void)PDFListViewChangedSelectionOrMagnification:(CPDFListView *)pdfListView;
  187. - (void)PDFListViewDidSelectionEnd:(CPDFListView *)pdfListView;
  188. - (void)PDFListViewChangedMagnification:(CPDFListView *)pdfListView;
  189. - (void)PDFListViewChangedToolMode:(CPDFListView *)pdfListView forToolMode:(CToolMode)toolMode;
  190. - (void)PDFListViewChangedAnnotationType:(CPDFListView *)pdfListView forAnnotationType:(CAnnotationType)annotationType;
  191. - (NSColor *)PDFListViewBackgroundColor;
  192. - (void)PDFListViewAddAnnotations:(CPDFListView *)pdfListView forAddAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  193. - (void)PDFListViewRemoveAnnotations:(CPDFListView *)pdfListView forRemoveAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  194. - (void)PDFListViewDeleteAnnotations:(CPDFListView *)pdfListView forDeleteAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  195. - (void)PDFListViewChangeatioActiveAnnotations:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations isRightMenu:(BOOL)isRightMenu;
  196. - (void)PDFListViewMenuForEvent:(CPDFListView *)pdfListView forEvent:(NSEvent *)theEvent clickMenu:(NSMenu **)menu isMoveSelectAnno:(BOOL)isMoveSelectAnno;
  197. - (BOOL)PDFListViewMenuValidate:(CPDFListView *)pdfListView menuItem:(NSMenuItem *)menuItem isTakesEffect:(BOOL *)isTakesEffect;
  198. - (void)PDFListViewEditAnnotation:(CPDFListView *)pdfListView forAnnotation:(CPDFAnnotation *)anotation;
  199. - (BOOL)PDFListViewKeyDownIsContinue:(CPDFListView *)pdfListView theEvent:(NSEvent *)theEvent;
  200. - (NSArray<NSMenuItem *> *)PDFListViewMenuItemsEditingAtPoint:(CGPoint)point forPage:(CPDFPage *)page menuItems:(NSArray <NSMenuItem *>*)menuItems;
  201. - (void)PDFListViewRedactErasure:(CPDFListView *)pdfListView;
  202. - (void)PDFListViewLinkDestinationStart:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  203. - (void)PDFListViewLinkDestinationEnd:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  204. - (void)PDFListViewKeyDowClosePanel:(CPDFViewSidebarSpeedMode)speedy event:(NSEvent *)theEvent;
  205. - (NSArray<NSColor *> *)PDFListViewEventMarkupColorWithAnnotation:(CPDFAnnotation *)annotation;
  206. - (BOOL)PDFListViewHaveDocumentAttribute;
  207. // 是否需要绘制注释 【文字、背景】
  208. - (BOOL)PDFListView:(CPDFListView *)pdfListView needDrawAnnotation:(CPDFAnnotation *)annotation;
  209. - (void)PDFListViewAnnotationAttributeHasChange:(CPDFListView *)pdfListView withAnnotation:(CPDFAnnotation *)annotation;
  210. - (void)PDFListView:(CPDFListView *)sender showSnapshotAtPageNumber:(NSInteger)pageNum forRect:(NSRect)rect scaleFactor:(CGFloat)scaleFactor autoFits:(BOOL)autoFits;
  211. - (void)PDFListView:(CPDFListView *)pdfView documentDataDidChanged:(id)docData withInfo:(NSDictionary *)info;
  212. @end