BGSettingBeautyView.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // BGSettingBeautyView.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/2/17.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BGNameSlider.h"
  10. typedef void(^OnBtnBlock)(id sender);
  11. @interface BGSettingBeautyView : UIView
  12. @property (nonatomic, strong) UIView *beautyBgView; // 美颜背景视图
  13. @property (nonatomic, strong) UIView *beautyBtnContrianerView; // 美颜按钮背景视图
  14. @property (nonatomic, readonly) GPUImageOutput<GPUImageInput> *curFilter; // 选择滤镜
  15. @property (nonatomic, readonly) UIPickerView *effectPicker; // 特效滤镜
  16. // 参数调节
  17. @property (nonatomic, readonly) BGNameSlider *filterParam1; // 参数1
  18. @property (nonatomic, readonly) BGNameSlider *filterParam2; // 参数2
  19. @property (nonatomic, readonly) BGNameSlider *filterParam3; // 参数3
  20. @property (nonatomic, readonly) BGNameSlider *filterParam4; // 参数4
  21. @property (nonatomic, copy) OnBtnBlock onBtnBlock;
  22. @end