summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMUIEvent.inc
blob: 69b97466b23a83c053176d450de9e326915d9867 (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 DOMUIEvent.h }
{ Version: 2.1.2 - Wed Dec 8 10:06:27 CET 2010 }


{$ifdef TYPES}
{$ifndef DOMUIEVENT_PAS_T}
{$define DOMUIEVENT_PAS_T}

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef DOMUIEVENT_PAS_R}
{$define DOMUIEVENT_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef DOMUIEVENT_PAS_F}
{$define DOMUIEVENT_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMUIEVENT_PAS_S}
{$define DOMUIEVENT_PAS_S}

{$endif}
{$endif}

{$ifdef FORWARD}
  DOMUIEvent = objcclass;
  DOMUIEventPointer = ^DOMUIEvent;
  DOMUIEventPtr = DOMUIEventPointer;

{$endif}

{$ifdef CLASSES}
{$ifndef DOMUIEVENT_PAS_C}
{$define DOMUIEVENT_PAS_C}

{ DOMUIEvent }
  DOMUIEvent = objcclass(DOMEvent)
    
  public
    class function alloc: DOMUIEvent; message 'alloc';

    function view: DOMAbstractView; message 'view';
    function detail: cint; message 'detail';
    function keyCode: cint; message 'keyCode';
    function charCode: cint; message 'charCode';
    function layerX: cint; message 'layerX';
    function layerY: cint; message 'layerY';
    function pageX: cint; message 'pageX';
    function pageY: cint; message 'pageY';
    function which: cint; message 'which';
    procedure initUIEvent_canBubble_cancelable_view_detail(type__: NSString; canBubble: Boolean; cancelable_: Boolean; view_: DOMAbstractView; detail_: cint); message 'initUIEvent:canBubble:cancelable:view:detail:';
  end; external;

{ DOMUIEventDeprecatedCategory }
  DOMUIEventDeprecatedCategory = objccategory(DOMUIEvent)
    procedure initUIEvent(type__: NSString; canBubble: Boolean; cancelable_: Boolean; view_: DOMAbstractView; detail_: cint); message 'initUIEvent:type:canBubble:cancelable:view:';
  end; external;

{$endif}
{$endif}