123456789101112131415161718192021222324252627282930 |
- //
- // SVGStyelCatcher.h
- // StyleTouch
- //
- // Created by Kevin Stich on 3/6/12.
- // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
- //
- #ifndef StyleTouch_SVGStyelCatcher_h
- #define StyleTouch_SVGStyelCatcher_h
- #if TARGET_OS_IOS
- #import <UIKit/UIKit.h>
- #endif
- @class SVGElement;
- @protocol SVGStyleCatcher <NSObject>
- //-(void)styleCatchElement:(SVGElement *)styledLayer forClass:(NSString *)colorIndex;
- //-(void)styleCatchNewStyle:(NSString *)className;
- -(void)styleCatchLayer:(CALayer *)styledLayer forClass:(NSString *)colorIndex;
- #if TARGET_OS_IOS
- -(UIColor *)styleCatchOverrideFill:(NSString *)fillClassName;
- #endif
- @end
- #endif
|