SVGGradientStop.h 593 B

123456789101112131415161718192021
  1. /*
  2. http://www.w3.org/TR/SVG/pservers.html#InterfaceSVGStopElement
  3. interface SVGStopElement : SVGElement,
  4. SVGStylable {
  5. readonly attribute SVGAnimatedNumber offset;
  6. */
  7. #import "SVGElement.h"
  8. #import "SVGUtils.h"
  9. @interface SVGGradientStop : SVGElement
  10. @property (nonatomic, readonly)CGFloat offset; /** FIXME: wrong units */
  11. @property (nonatomic, readonly)CGFloat stopOpacity; /** FIXME: not in SVG Spec */
  12. @property (nonatomic, readonly)SVGColor stopColor; /** FIXME: not in SVG Spec */
  13. //@property (nonatomic, readonly)NSDictionary *style; //misc unaccounted for properties
  14. @end