summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMHTMLTableRowElement.inc
blob: efaf139aa49d65122ab1de775f66b68f3dfe7933 (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
{ 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}