PDFSettingFontView.h 805 B

123456789101112131415161718192021222324252627
  1. //
  2. // PDFSettingFontView.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. @protocol PDFKTSizeDelegate;
  12. @interface PDFSettingFontView : UIView<UITableViewDelegate,UITableViewDataSource>
  13. - (id)initWithFrame:(CGRect)frame
  14. minValue:(NSInteger)minValue
  15. maxValue:(NSInteger)maxValue;
  16. @property (nonatomic, assign) id<PDFKTSizeDelegate> fontNamedelegate;
  17. @property (nonatomic, assign) NSInteger curValue;
  18. @end
  19. @protocol PDFKTSizeDelegate <NSObject>
  20. - (void)fontNamesView:(PDFSettingFontView*)fontNamesView didSelectedTextsize:(CGFloat )size;
  21. @end