28 lines
510 B
Objective-C
28 lines
510 B
Objective-C
//
|
|
// IJSVGStyle.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 03/09/2014.
|
|
// Copyright (c) 2014 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "IJSVGColor.h"
|
|
|
|
@interface IJSVGStyle : NSObject {
|
|
|
|
@private
|
|
NSMutableDictionary * _dict;
|
|
|
|
}
|
|
|
|
+ (IJSVGStyle *)parseStyleString:(NSString *)string;
|
|
|
|
- (void)setPropertyValue:(id)value
|
|
forProperty:(NSString *)key;
|
|
- (id)property:(NSString *)key;
|
|
|
|
- (IJSVGStyle *)mergedStyle:(IJSVGStyle *)style;
|
|
|
|
@end
|