| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // FLEXResources.h
- // FLEX
- //
- // Created by Ryan Olson on 6/8/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface FLEXResources : NSObject
- @property (readonly, class) UIImage *closeIcon;
- @property (readonly, class) UIImage *dragHandle;
- @property (readonly, class) UIImage *globeIcon;
- @property (readonly, class) UIImage *hierarchyIndentPattern;
- @property (readonly, class) UIImage *listIcon;
- @property (readonly, class) UIImage *moveIcon;
- @property (readonly, class) UIImage *selectIcon;
- @property (readonly, class) UIImage *checkerPattern;
- @property (readonly, class) UIImage *jsonIcon;
- @property (readonly, class) UIImage *textPlainIcon;
- @property (readonly, class) UIImage *htmlIcon;
- @property (readonly, class) UIImage *audioIcon;
- @property (readonly, class) UIImage *jsIcon;
- @property (readonly, class) UIImage *plistIcon;
- @property (readonly, class) UIImage *textIcon;
- @property (readonly, class) UIImage *videoIcon;
- @property (readonly, class) UIImage *xmlIcon;
- @property (readonly, class) UIImage *binaryIcon;
- @property (readonly, class) UIImage *rangeSliderLeftHandle;
- @property (readonly, class) UIImage *rangeSliderRightHandle;
- @property (readonly, class) UIImage *rangeSliderTrack;
- @property (readonly, class) UIImage *rangeSliderFill;
- @end
|