SVGImageElement.h 685 B

123456789101112131415161718
  1. #import <Foundation/Foundation.h>
  2. #import "SVGElement.h"
  3. #import "SVGTransformable.h"
  4. #import "SVGFitToViewBox.h"
  5. #import "SVGElement_ForParser.h" // to resolve Xcode circular dependencies; in long term, parsing SHOULD NOT HAPPEN inside any class whose name starts "SVG" (because those are reserved classes for the SVG Spec)
  6. @interface SVGImageElement : SVGElement <SVGTransformable, SVGStylable, ConverterSVGToCALayer, SVGFitToViewBox>
  7. @property (nonatomic, readonly) CGFloat x;
  8. @property (nonatomic, readonly) CGFloat y;
  9. @property (nonatomic, readonly) CGFloat width;
  10. @property (nonatomic, readonly) CGFloat height;
  11. @property (nonatomic, strong, readonly) NSString *href;
  12. @end