diff options
| author | josef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-03 10:32:49 +0000 |
|---|---|---|
| committer | josef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-10-03 10:32:49 +0000 |
| commit | d074bef075383ff0bed53943e4aa499a03e06310 (patch) | |
| tree | a5e9f7ca5bb91876ffb30ee510ad166af59113ed /packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc | |
| parent | ebac4a8ffdd23add1d17f5fa92901779b3574f49 (diff) | |
| download | fpc-d074bef075383ff0bed53943e4aa499a03e06310.tar.gz | |
* NSRange is defined correctly
+ Added CoreData framework
+ Added WebKit framework
git-svn-id: http://svn.freepascal.org/svn/fpc/branches/objc@13796 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc')
| -rw-r--r-- | packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc b/packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc new file mode 100644 index 0000000000..aaa23dd06c --- /dev/null +++ b/packages/cocoaint/src/webkit/DOMCSSStyleDeclaration.inc @@ -0,0 +1,67 @@ +{ Parsed from Webkit.framework DOMCSSStyleDeclaration.h } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 3 15:33:51 ICT 2009 } + + +{$ifdef TYPES} +{$ifndef DOMCSSSTYLEDECLARATION_PAS_T} +{$define DOMCSSSTYLEDECLARATION_PAS_T} + +{$endif} +{$endif} + +{$ifdef RECORDS} +{$ifndef DOMCSSSTYLEDECLARATION_PAS_R} +{$define DOMCSSSTYLEDECLARATION_PAS_R} + +{$endif} +{$endif} + +{$ifdef FUNCTIONS} +{$ifndef DOMCSSSTYLEDECLARATION_PAS_F} +{$define DOMCSSSTYLEDECLARATION_PAS_F} + +{$endif} +{$endif} + +{$ifdef EXTERNAL_SYMBOLS} +{$ifndef DOMCSSSTYLEDECLARATION_PAS_S} +{$define DOMCSSSTYLEDECLARATION_PAS_S} + +{$endif} +{$endif} + +{$ifdef FORWARD} + DOMCSSStyleDeclaration = objcclass; + DOMCSSStyleDeclarationPointer = ^DOMCSSStyleDeclaration; + +{$endif} + +{$ifdef CLASSES} +{$ifndef DOMCSSSTYLEDECLARATION_PAS_C} +{$define DOMCSSSTYLEDECLARATION_PAS_C} + +{ DOMCSSStyleDeclaration } + DOMCSSStyleDeclaration = objcclass(DOMObject) + + public + class function alloc: DOMCSSStyleDeclaration; message 'alloc'; + + procedure setCssText (newValue: NSString); message 'setCssText:'; + function cssText: NSString; message 'cssText'; + function length: cuint; message 'length'; + function parentRule: DOMCSSRule; message 'parentRule'; + function getPropertyValue(propertyName: NSStringPointer): NSString; message 'getPropertyValue:'; + function getPropertyCSSValue(propertyName: NSStringPointer): DOMCSSValue; message 'getPropertyCSSValue:'; + function removeProperty(propertyName: NSStringPointer): NSString; message 'removeProperty:'; + function getPropertyPriority(propertyName: NSStringPointer): NSString; message 'getPropertyPriority:'; + procedure setProperty_value_priority(propertyName: NSStringPointer; value: NSStringPointer; priority: NSStringPointer); message 'setProperty:value:priority:'; + function item(index: cuint): NSString; message 'item:'; + function getPropertyShorthand(propertyName: NSStringPointer): NSString; message 'getPropertyShorthand:'; + function isPropertyImplicit(propertyName: NSStringPointer): Boolean; message 'isPropertyImplicit:'; + + { Category: DOMCSSStyleDeclarationDeprecated } + procedure setProperty(propertyName: NSStringPointer; value: NSStringPointer; priority: NSStringPointer); message 'setProperty:propertyName:value:'; + end; external; + +{$endif} +{$endif} |
