diff options
Diffstat (limited to 'packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc')
| -rw-r--r-- | packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc b/packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc new file mode 100644 index 0000000000..efaf139aa4 --- /dev/null +++ b/packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc @@ -0,0 +1,67 @@ +{ Parsed from Webkit.framework DOMHTMLTableRowElement.h } +{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 3 15:33:52 ICT 2009 } + + +{$ifdef TYPES} +{$ifndef DOMHTMLTABLEROWELEMENT_PAS_T} +{$define DOMHTMLTABLEROWELEMENT_PAS_T} + +{$endif} +{$endif} + +{$ifdef RECORDS} +{$ifndef DOMHTMLTABLEROWELEMENT_PAS_R} +{$define DOMHTMLTABLEROWELEMENT_PAS_R} + +{$endif} +{$endif} + +{$ifdef FUNCTIONS} +{$ifndef DOMHTMLTABLEROWELEMENT_PAS_F} +{$define DOMHTMLTABLEROWELEMENT_PAS_F} + +{$endif} +{$endif} + +{$ifdef EXTERNAL_SYMBOLS} +{$ifndef DOMHTMLTABLEROWELEMENT_PAS_S} +{$define DOMHTMLTABLEROWELEMENT_PAS_S} + +{$endif} +{$endif} + +{$ifdef FORWARD} + DOMHTMLTableRowElement = objcclass; + DOMHTMLTableRowElementPointer = ^DOMHTMLTableRowElement; + +{$endif} + +{$ifdef CLASSES} +{$ifndef DOMHTMLTABLEROWELEMENT_PAS_C} +{$define DOMHTMLTABLEROWELEMENT_PAS_C} + +{ DOMHTMLTableRowElement } + DOMHTMLTableRowElement = objcclass(DOMHTMLElement) + + public + class function alloc: DOMHTMLTableRowElement; message 'alloc'; + + function rowIndex: cint; message 'rowIndex'; + function sectionRowIndex: cint; message 'sectionRowIndex'; + function cells: DOMHTMLCollection; message 'cells'; + procedure setAlign (newValue: NSString); message 'setAlign:'; + function align: NSString; message 'align'; + procedure setBgColor (newValue: NSString); message 'setBgColor:'; + function bgColor: NSString; message 'bgColor'; + procedure setCh (newValue: NSString); message 'setCh:'; + function ch: NSString; message 'ch'; + procedure setChOff (newValue: NSString); message 'setChOff:'; + function chOff: NSString; message 'chOff'; + procedure setVAlign (newValue: NSString); message 'setVAlign:'; + function vAlign: NSString; message 'vAlign'; + function insertCell(index: cint): DOMHTMLElement; message 'insertCell:'; + procedure deleteCell(index: cint); message 'deleteCell:'; + end; external; + +{$endif} +{$endif} |
