Files
IJSVG/source/IJSVGStyle.h
T
Curtis Hard 0845338e33 Added basic CSS support
Matches basic CSS such as ".test#test2 div.bacon {}" and so on.
2016-01-16 16:35:20 +00:00

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