FLEXResources.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // FLEXResources.h
  3. // FLEX
  4. //
  5. // Created by Ryan Olson on 6/8/14.
  6. // Copyright (c) 2014 Flipboard. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface FLEXResources : NSObject
  11. @property (readonly, class) UIImage *closeIcon;
  12. @property (readonly, class) UIImage *dragHandle;
  13. @property (readonly, class) UIImage *globeIcon;
  14. @property (readonly, class) UIImage *hierarchyIndentPattern;
  15. @property (readonly, class) UIImage *listIcon;
  16. @property (readonly, class) UIImage *moveIcon;
  17. @property (readonly, class) UIImage *selectIcon;
  18. @property (readonly, class) UIImage *checkerPattern;
  19. @property (readonly, class) UIImage *jsonIcon;
  20. @property (readonly, class) UIImage *textPlainIcon;
  21. @property (readonly, class) UIImage *htmlIcon;
  22. @property (readonly, class) UIImage *audioIcon;
  23. @property (readonly, class) UIImage *jsIcon;
  24. @property (readonly, class) UIImage *plistIcon;
  25. @property (readonly, class) UIImage *textIcon;
  26. @property (readonly, class) UIImage *videoIcon;
  27. @property (readonly, class) UIImage *xmlIcon;
  28. @property (readonly, class) UIImage *binaryIcon;
  29. @property (readonly, class) UIImage *rangeSliderLeftHandle;
  30. @property (readonly, class) UIImage *rangeSliderRightHandle;
  31. @property (readonly, class) UIImage *rangeSliderTrack;
  32. @property (readonly, class) UIImage *rangeSliderFill;
  33. @end