TPDFViewerModeViewController.h 888 B

1234567891011121314151617181920212223242526
  1. //
  2. // PDFViewerModeViewController.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. @interface PDFViewerModeViewController : UIViewController
  12. @property (nonatomic,assign) NSInteger themesType;
  13. @property (nonatomic,retain) UIColor *color;
  14. @property (nonatomic,assign) CGFloat brightness;
  15. @property (nonatomic,assign) NSInteger scrollType;
  16. @property (nonatomic,assign) BOOL isCropMode;
  17. @property (nonatomic,copy) void (^callback) (NSInteger index);
  18. - (void)showViewController:(UIViewController *)viewController inBarButtonItem:(UIBarButtonItem *)barButtonItem;
  19. - (void)showViewController:(UIViewController *)viewController inRect:(CGRect)rect;
  20. @end