PDFMagnifierView.h 686 B

123456789101112131415161718192021222324252627
  1. //
  2. // PDFMagnifierView.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. typedef NS_ENUM(NSInteger, PDFMagnifierViewStyle) {
  12. PDFMagnifierViewStyleRect = 0,
  13. PDFMagnifierViewStyleCircle
  14. };
  15. @interface PDFMagnifierView : UIView
  16. @property (nonatomic,assign) CGFloat scale;
  17. @property (nonatomic,assign) UIView *viewToMagnify;
  18. @property (nonatomic,assign) CGPoint pointToMagnify;
  19. @property (nonatomic,assign) PDFMagnifierViewStyle style;
  20. @end