SVGFitToViewBox.h 542 B

12345678910111213141516171819202122
  1. /**
  2. * http://www.w3.org/TR/SVG/types.html#InterfaceSVGFitToViewBox
  3. interface SVGFitToViewBox {
  4. readonly attribute SVGAnimatedRect viewBox;
  5. readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
  6. */
  7. #import <Foundation/Foundation.h>
  8. #import <QuartzCore/QuartzCore.h>
  9. #import "SVGRect.h"
  10. #import "SVGAnimatedPreserveAspectRatio.h"
  11. @protocol SVGFitToViewBox <NSObject>
  12. @property (nonatomic) /* SVGAnimatedRect */ SVGRect viewBox;
  13. @property(nonatomic,retain) SVGAnimatedPreserveAspectRatio* preserveAspectRatio;
  14. @end