DOMRGBColor.inc 484 B

123456789101112131415161718192021
  1. { Parsed from WebKit.framework DOMRGBColor.h }
  2. {$ifdef TYPES}
  3. type
  4. DOMRGBColorPtr = ^DOMRGBColor;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. DOMRGBColor = objcclass external (DOMObject)
  9. public
  10. function red: DOMCSSPrimitiveValue; message 'red';
  11. function green: DOMCSSPrimitiveValue; message 'green';
  12. function blue: DOMCSSPrimitiveValue; message 'blue';
  13. function alpha: DOMCSSPrimitiveValue; message 'alpha';
  14. function color: NSColor; message 'color';
  15. end;
  16. {$endif}