forked from SVGKit/SVGKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSVGViewSpec.h
More file actions
28 lines (23 loc) · 893 Bytes
/
Copy pathSVGViewSpec.h
File metadata and controls
28 lines (23 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*!
SVGViewSpec
interface SVGViewSpec : SVGZoomAndPan,
SVGFitToViewBox {
readonly attribute SVGTransformList transform;
readonly attribute SVGElement viewTarget;
readonly attribute DOMString viewBoxString;
readonly attribute DOMString preserveAspectRatioString;
readonly attribute DOMString transformString;
readonly attribute DOMString viewTargetString;
};
*/
#import <Foundation/Foundation.h>
@class SVGElement;
#import "SVGElement.h"
@interface SVGViewSpec : NSObject
/* FIXME: SVGTransformList not implemented yet: @property(nonatomic,readonly) SVGTransformList transform; */
@property(nonatomic,readonly) SVGElement* viewTarget;
@property(nonatomic,readonly) NSString* viewBoxString;
@property(nonatomic,readonly) NSString* preserveAspectRatioString;
@property(nonatomic,readonly) NSString* transformString;
@property(nonatomic,readonly) NSString* viewTargetString;
@end