CPDFFreeTextViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // CPDFFreeTextViewController.h
  3. // ComPDFKit_Tools
  4. //
  5. // Copyright © 2014-2024 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. #if __has_include(<ComPDFKit_Tools/ComPDFKit_Tools.h>)
  13. #import <ComPDFKit_Tools/ComPDFKit_Tools.h>
  14. #else
  15. #import "ComPDFKit_Tools.h"
  16. #endif
  17. NS_ASSUME_NONNULL_BEGIN
  18. @class CPDFFreeTextViewController;
  19. @class CAnnotStyle;
  20. @class CPDFListView;
  21. @protocol CPDFFreeTextViewControllerDelegate <NSObject>
  22. @optional
  23. - (void)freeTextViewController:(CPDFFreeTextViewController *)freeTextViewController annotStyle:(CAnnotStyle *)annotStyle;
  24. @end
  25. @interface CPDFFreeTextViewController : CPDFAnnotationBaseViewController
  26. @property (nonatomic, weak) id<CPDFFreeTextViewControllerDelegate> delegate;
  27. @property (nonatomic, strong) CPDFListView *pdfListView;
  28. @end
  29. NS_ASSUME_NONNULL_END