summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc
blob: 35ddf2241f57549f40f118ebc880181d37b1de25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ Parsed from Webkit.framework DOMHTMLTableRowElement.h }
{ Version: 2.1.2 - Wed Dec 8 10:06:27 CET 2010 }


{$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;
  DOMHTMLTableRowElementPtr = DOMHTMLTableRowElementPointer;

{$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}