summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/cocoaint/src/webkit/DOMOverflowEvent.inc
blob: 614a8443c56fa43ed9b42fa5da330b1efa26f116 (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
{ Parsed from Webkit.framework DOMOverflowEvent.h }

{$ifdef TYPES}
{$ifndef DOMOVERFLOWEVENT_PAS_T}
{$define DOMOVERFLOWEVENT_PAS_T}

{ Constants }

const
  DOM_HORIZONTAL = 0;
  DOM_VERTICAL = 1;
  DOM_BOTH = 2;

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef DOMOVERFLOWEVENT_PAS_R}
{$define DOMOVERFLOWEVENT_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef DOMOVERFLOWEVENT_PAS_F}
{$define DOMOVERFLOWEVENT_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMOVERFLOWEVENT_PAS_S}
{$define DOMOVERFLOWEVENT_PAS_S}

{$endif}
{$endif}

{$ifdef FORWARD}
  DOMOverflowEvent = objcclass;
  DOMOverflowEventPointer = ^DOMOverflowEvent;
  DOMOverflowEventPtr = DOMOverflowEventPointer;

{$endif}

{$ifdef CLASSES}
{$ifndef DOMOVERFLOWEVENT_PAS_C}
{$define DOMOVERFLOWEVENT_PAS_C}

{ DOMOverflowEvent }
  DOMOverflowEvent = objcclass external (DOMEvent)
    
  public
    function orient: cuint; message 'orient';
    function horizontalOverflow: Boolean; message 'horizontalOverflow';
    function verticalOverflow: Boolean; message 'verticalOverflow';
    procedure initOverflowEvent_horizontalOverflow_verticalOverflow(orient_: cushort; horizontalOverflow_: Boolean; verticalOverflow_: Boolean); message 'initOverflowEvent:horizontalOverflow:verticalOverflow:';
  end;

{$endif}
{$endif}