CPDFListView.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. typedef NS_ENUM(NSInteger, CPDFViewSidebarSpeedMode) {
  24. CPDFViewSidebarSpeedModeLeft = 0,
  25. CPDFViewSidebarSpeedModeRight
  26. };
  27. typedef NS_ENUM(NSInteger, CAnnotationType) {
  28. CAnnotationTypeUnkown = 0,
  29. CAnnotationTypeAnchored,
  30. CAnnotationTypeLink,
  31. CAnnotationTypeFreeText,
  32. CAnnotationTypeLine,
  33. CAnnotationTypeArrow,
  34. CAnnotationTypeSquare,
  35. CAnnotationTypeCircle,
  36. /*CAnnotationTypePolyGon,*/
  37. /*CAnnotationTypePolyLine,*/
  38. CAnnotationTypeHighlight,
  39. CAnnotationTypeUnderline,
  40. // CAnnotationTypeSquiggly,
  41. CAnnotationTypeStrikeOut,
  42. CAnnotationTypeStamp,
  43. CAnnotationTypeSignSignature,
  44. /*CAnnotationTypeCaret,*/
  45. CAnnotationTypeInk,
  46. /*CAnnotationTypePopUp,*/
  47. /*CAnnotationTypeFileattachment,*/
  48. /*CAnnotationTypeSound,*/
  49. /*CAnnotationTypeMovie,*/
  50. CAnnotationTypeRedact,
  51. CAnnotationTypeEraser,
  52. CAnnotationTypeEditTextImage,
  53. CAnnotationTypeAddText,
  54. CAnnotationTypeAddImage,
  55. CAnnotationTypeRadioButton = 100,
  56. CAnnotationTypeCheckBox,
  57. CAnnotationTypeTextField,
  58. CAnnotationTypeComboBox,
  59. CAnnotationTypeListMenu,
  60. CAnnotationTypeActionButton,
  61. CAnnotationTypeSignature,
  62. CAnnotationTypeSignText = 200,
  63. CAnnotationTypeSignFalse,
  64. CAnnotationTypeSignTure,
  65. CAnnotationTypeSignCircle,
  66. CAnnotationTypeSignLine,
  67. CAnnotationTypeSignDot,
  68. CAnnotationTypeSignConfig,
  69. CAnnotationTypeSignDate,
  70. };
  71. typedef NS_ENUM(NSInteger, CToolMode) {
  72. CTextToolMode = 0,
  73. CMoveToolMode,
  74. CMagnifyToolMode,
  75. CSelectToolMode,
  76. CNoteToolMode,
  77. CSelectZoomToolMode,
  78. CFormToolMode,
  79. CSelfSignMode,
  80. CRedactToolMode,
  81. CRedactErasureToolMode,
  82. CEditPDFToolMode,
  83. };
  84. @protocol CPDFListViewDelegate;
  85. @class CStampSignatureObject,CPDFListStampAnnotation,CPDFListSignatureAnnotation;
  86. @interface CPDFListView : CPDFView
  87. @property (nonatomic, weak) id<CPDFListViewDelegate>pdfListViewDelegate;
  88. // Methods for The currently selected Annotation.
  89. @property (nonatomic, readonly) NSMutableArray <CPDFAnnotation *>*activeAnnotations;
  90. // Methods for The currently selected Annotation.
  91. @property (nonatomic, readonly) CPDFAnnotation * activeAnnotation;
  92. // Methods for The annotation type currently selected.
  93. @property (nonatomic, assign) CAnnotationType annotationType;
  94. // Method of the currently selected annotation mode.
  95. @property (nonatomic, assign) CToolMode toolMode;
  96. // The magnification times when the current magnifying glass is in mode
  97. @property (nonatomic, readonly) CGFloat magnification;
  98. @property (nonatomic, assign) BOOL isSetLinkDestinationArea;
  99. // Show Annotation or not
  100. @property (nonatomic, assign) BOOL hideNotes;
  101. // Whether to display a Form comment hop number
  102. @property (nonatomic, assign) BOOL showHopnumber;
  103. // Whether to display the Form name
  104. @property (nonatomic, assign) BOOL showFormFieldName;
  105. // Auxiliary reference line
  106. @property (nonatomic, strong) CAShapeLayer *shapeLayerLeftV;
  107. @property (nonatomic, strong) CAShapeLayer *shapeLayerRightV;
  108. @property (nonatomic, strong) CAShapeLayer *shapeLayerTopH;
  109. @property (nonatomic, strong) CAShapeLayer *shapeLayerBottomH;
  110. - (CPDFAnnotation *)addAnnotationWithType:(CAnnotationType)annotationType selection:(CPDFSelection *)selection page:(CPDFPage *)page bounds:(NSRect)bounds;
  111. // Add stamp Annotation, add directly after mouse click
  112. // a new parameter.
  113. // stampObject - stamp Object.
  114. // isToolModel - Whether it is a pattern
  115. - (void)setAddStampObject:(CStampSignatureObject *)stampObject keepToolModel:(BOOL)isToolModel;
  116. // Add an image Stamp note
  117. - (void)addAnnotationWithImage:(NSImage *)image page:(CPDFPage *)page point:(NSPoint)point;
  118. // Refresh the currently selected Annotation
  119. - (void)updateActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotation;
  120. // Edit Annotation
  121. - (void)editAnnotation:(CPDFAnnotation *)annotation;
  122. // Rotate Stamp notes, angle 0-360 degrees,Rotation is supported only by the current addition
  123. - (void)rotateStampAnnotation:(CPDFListStampAnnotation *)annotation rotateAngle:(NSInteger)angle;
  124. // Rotate Signature notes, angle 0-360 degrees,Rotation is supported only by the current addition
  125. - (void)rotateSignatureAnnotation:(CPDFListSignatureAnnotation *)annotation rotateAngle:(NSInteger)angle;
  126. // When selecting a region mode, the selected region is obtained
  127. - (NSRect)currentSelectionRect;
  128. // Scale the page to the specified range
  129. - (void)zoomToRect:(NSRect)rect onPage:(CPDFPage *)page;
  130. // Remove Auxiliary reference line
  131. - (void)removeShapeLayer;
  132. // Determines whether the current annotation is consistent with the selected annotation mode
  133. - (BOOL)consistentTypeWithAnnotation:(CPDFAnnotation *)annotation;
  134. @end
  135. @protocol CPDFListViewDelegate <NSObject>
  136. @optional
  137. - (void)PDFListViewChangedSelectionOrMagnification:(CPDFListView *)pdfListView;
  138. - (void)PDFListViewDidSelectionEnd:(CPDFListView *)pdfListView;
  139. - (void)PDFListViewChangedMagnification:(CPDFListView *)pdfListView;
  140. - (void)PDFListViewChangedToolMode:(CPDFListView *)pdfListView forToolMode:(CToolMode)toolMode;
  141. - (void)PDFListViewChangedAnnotationType:(CPDFListView *)pdfListView forAnnotationType:(CAnnotationType)annotationType;
  142. - (NSColor *)PDFListViewBackgroundColor;
  143. - (void)PDFListViewAddAnnotations:(CPDFListView *)pdfListView forAddAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  144. - (void)PDFListViewRemoveAnnotations:(CPDFListView *)pdfListView forRemoveAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  145. - (void)PDFListViewDeleteAnnotations:(CPDFListView *)pdfListView forDeleteAnnotations:(NSArray<CPDFAnnotation *> *)annotations inPage:(CPDFPage *)pdfPage;
  146. - (void)PDFListViewChangeatioActiveAnnotations:(CPDFListView *)pdfListView forActiveAnnotations:(NSArray<CPDFAnnotation *> *)annotations isRightMenu:(BOOL)isRightMenu;
  147. - (void)PDFListViewMenuForEvent:(CPDFListView *)pdfListView forEvent:(NSEvent *)theEvent clickMenu:(NSMenu **)menu;
  148. - (BOOL)PDFListViewMenuValidate:(CPDFListView *)pdfListView menuItem:(NSMenuItem *)menuItem isTakesEffect:(BOOL *)isTakesEffect;
  149. - (void)PDFListViewEditAnnotation:(CPDFListView *)pdfListView forAnnotation:(CPDFAnnotation *)anotation;
  150. - (BOOL)PDFListViewKeyDownIsContinue:(CPDFListView *)pdfListView theEvent:(NSEvent *)theEvent;
  151. - (NSArray<NSMenuItem *> *)PDFListViewMenuItemsEditingAtPoint:(CGPoint)point forPage:(CPDFPage *)page menuItems:(NSArray <NSMenuItem *>*)menuItems;
  152. - (void)PDFListViewRedactErasure:(CPDFListView *)pdfListView;
  153. - (void)PDFListViewLinkDestinationStart:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  154. - (void)PDFListViewLinkDestinationEnd:(CPDFListView *)pdfListView withActiveAnnotation:(CPDFAnnotation *)annotation;
  155. - (void)PDFListViewKeyDowClosePanel:(CPDFViewSidebarSpeedMode)speedy event:(NSEvent *)theEvent;
  156. - (NSArray<NSColor *> *)PDFListViewEventMarkupColorWithAnnotation:(CPDFAnnotation *)annotation;
  157. - (BOOL)PDFListViewHaveDocumentAttribute;
  158. // 是否需要绘制注释 【文字、背景】
  159. - (BOOL)PDFListView:(CPDFListView *)pdfListView needDrawAnnotation:(CPDFAnnotation *)annotation;
  160. - (void)PDFListViewAnnotationAttributeHasChange:(CPDFListView *)pdfListView withAnnotation:(CPDFAnnotation *)annotation;
  161. @end