KMAnnotationFontWindowController.h 651 B

1234567891011121314151617181920212223242526
  1. //
  2. // KMAnnotationFontWindowController.h
  3. // SignFlow
  4. //
  5. // Created by wanjun on 2021/6/22.
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. #import "CPDFListView.h"
  9. #import "CPDFAnnotationModel.h"
  10. @interface KMAnnotationFontWindowController : NSWindowController
  11. + (id)sharedAnnotationFont;
  12. @property (nonatomic,retain) CPDFAnnotationModel *annotationModel;
  13. @property (nonatomic,assign) CPDFListView *PDFListView;
  14. @property (nonatomic,assign) CPDFFreeTextAnnotation *annotationFreeText;
  15. @property (nonatomic,copy) void (^annotationAlignCallback) (NSInteger selectedCount);
  16. @property (nonatomic,copy) void (^annotationCallback) (CPDFAnnotation *annotation);
  17. @end