CPDFBackgroundSettingView.h 1008 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // CPDFBackgroundSettingView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2023/1/2.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CPDFBackgroundSettingView : UIView
  10. @property (nonatomic,strong) UILabel *titleLabel;
  11. @property (nonatomic,strong) UISlider *scaleSlider;
  12. @property (nonatomic,strong) UISlider *opacitySlider;
  13. @property (nonatomic,strong) UISlider *rotationSlider;
  14. @property (nonatomic,strong) UILabel *rotationlabel;
  15. @property (nonatomic,strong) UILabel *textLabel;
  16. @property (nonatomic,strong) UILabel *opacityLabel;
  17. @property (nonatomic,strong) UILabel *rangeLabel;
  18. @property (nonatomic,strong) UITextField *verticalField;
  19. @property (nonatomic,strong) UITextField *horizontalField;
  20. @property (nonatomic,strong) UILabel *verticalLabel;
  21. @property (nonatomic,strong) UILabel *horizontalLabel;
  22. @property (nonatomic,strong) UIButton *pageBtn;
  23. @property (nonatomic,strong) UIButton *doneBtn;
  24. @property (nonatomic,strong) UIButton *cancelBtn;
  25. @end
  26. NS_ASSUME_NONNULL_END