SBWallpaperEffectView.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. typedef NS_ENUM(NSUInteger, SBWallpaperVariant) {
  2. SBWallpaperVariantStaticWallpaper
  3. };
  4. typedef NS_ENUM(NSUInteger, SBWallpaperStyle) {
  5. SBWallpaperStyleNormal,
  6. SBWallpaperStyleHidden,
  7. SBWallpaperStyleBlack,
  8. SBWallpaperStyleBlur,
  9. SBWallpaperStyleUltraLightBlurOnly,
  10. SBWallpaperStyleSemiLightBlurOnly,
  11. SBWallpaperStyleFlatSemiLightBlurOnly,
  12. SBWallpaperStyleLightBlurOnly,
  13. SBWallpaperStyleDarkBlurOnly,
  14. SBWallpaperStyleUltraLightTintedBlur,
  15. SBWallpaperStyleSemiLightTintedBlur,
  16. SBWallpaperStyleFlatSemiLightTintedBlur,
  17. SBWallpaperStyleLightTintedBlur,
  18. SBWallpaperStyleDarkTintedBlur,
  19. SBWallpaperStyleUltraLightTintOnly,
  20. SBWallpaperStyleSemiLightTintOnly,
  21. SBWallpaperStyleFlatSemiLightTintOnly,
  22. SBWallpaperStyleLightTintOnly,
  23. SBWallpaperStyleDarkTintOnly,
  24. SBWallpaperStyleBackgroundLightBlurOnly,
  25. SBWallpaperStyleBackgroundLightTintedBlur,
  26. SBWallpaperStyleBackgroundLightTintOnly,
  27. SBWallpaperStyleForegroundLightBlurOnly,
  28. SBWallpaperStyleForegroundLightTintedBlur,
  29. SBWallpaperStyleForegroundLightTintOnly,
  30. SBWallpaperStyleSwitcherBackgroundLightBlurOnlt,
  31. SBWallpaperStyleSwitcherBackgroundLightTintedBlur,
  32. SBWallpaperStyleSwitcherBackgroundLightTintOnly,
  33. SBWallpaperStyleSwitcherForegroundLightBlurOnly,
  34. SBWallpaperStyleSwitcherForegroundLightTintedBlur,
  35. SBWallpaperStyleSwitcherForegroundLightTintOnly,
  36. };
  37. @interface SBWallpaperEffectView : UIView
  38. - (instancetype)initWithWallpaperVariant:(SBWallpaperVariant)wallpaperVariant;
  39. @property SBWallpaperStyle wallpaperStyle;
  40. @end