summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMText.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cocoaint/src/webkit/DOMText.inc')
-rw-r--r--packages/cocoaint/src/webkit/DOMText.inc53
1 files changed, 53 insertions, 0 deletions
diff --git a/packages/cocoaint/src/webkit/DOMText.inc b/packages/cocoaint/src/webkit/DOMText.inc
new file mode 100644
index 0000000000..45d372131d
--- /dev/null
+++ b/packages/cocoaint/src/webkit/DOMText.inc
@@ -0,0 +1,53 @@
+{ Parsed from Webkit.framework DOMText.h }
+{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 3 15:33:51 ICT 2009 }
+
+
+{$ifdef TYPES}
+{$ifndef DOMTEXT_PAS_T}
+{$define DOMTEXT_PAS_T}
+
+{$endif}
+{$endif}
+
+{$ifdef RECORDS}
+{$ifndef DOMTEXT_PAS_R}
+{$define DOMTEXT_PAS_R}
+
+{$endif}
+{$endif}
+
+{$ifdef FUNCTIONS}
+{$ifndef DOMTEXT_PAS_F}
+{$define DOMTEXT_PAS_F}
+
+{$endif}
+{$endif}
+
+{$ifdef EXTERNAL_SYMBOLS}
+{$ifndef DOMTEXT_PAS_S}
+{$define DOMTEXT_PAS_S}
+
+{$endif}
+{$endif}
+
+{$ifdef FORWARD}
+ DOMText = objcclass;
+ DOMTextPointer = ^DOMText;
+
+{$endif}
+
+{$ifdef CLASSES}
+{$ifndef DOMTEXT_PAS_C}
+{$define DOMTEXT_PAS_C}
+
+{ DOMText }
+ DOMText = objcclass(DOMCharacterData)
+
+ public
+ class function alloc: DOMText; message 'alloc';
+
+ function splitText(offset: cuint): DOMText; message 'splitText:';
+ end; external;
+
+{$endif}
+{$endif}