CPDFHeaderFooterAddView.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // HeaderFooterAddView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CPDFDropDownView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CPDFHeaderFooterAddView : UIView
  11. @property (nonatomic,strong) UILabel *localLabel;
  12. @property (nonatomic,strong) UISegmentedControl *localSegment;
  13. @property (nonatomic,strong) UILabel *alignmentLabel;
  14. @property (nonatomic,strong) UISegmentedControl *aligbmentSegment;
  15. @property (nonatomic,strong) UILabel *colorLabel;
  16. @property (nonatomic,strong) UIImageView *colerImage;
  17. @property (nonatomic,strong) UISlider *colorSlider;
  18. @property (nonatomic,strong) UILabel *pageNumberLabel;
  19. @property (nonatomic,strong) UITextField *pageNumberText;
  20. @property (nonatomic,strong) CPDFDropDownView *dropdownView;
  21. @property (nonatomic,strong) UILabel *fontSizeLabel;
  22. @property (nonatomic,strong) UITextField *fontSizeText;
  23. @property (nonatomic,strong) UILabel *pageIndexLabel;
  24. @property (nonatomic,strong) UILabel *pageIndexNumberLabel;
  25. @property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
  26. - (void)stepperValueChanged:(UIStepper *)pageIndexNumberStepper;
  27. @end
  28. NS_ASSUME_NONNULL_END