blob: 419f7b4d61d70f2667c45da2247199b82423c018 (
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
|
{ Parsed from WebKit.framework DOMUIEvent.h }
{$ifdef TYPES}
type
DOMUIEventPtr = ^DOMUIEvent;
{$endif}
{$ifdef CLASSES}
type
DOMUIEvent = objcclass external (DOMEvent)
public
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: ObjCBOOL; cancelable_: ObjCBOOL; view_: DOMAbstractView; detail_: cint); message 'initUIEvent:canBubble:cancelable:view:detail:'; { available in 10_5 }
end;
type
DOMUIEventDeprecated = objccategory external (DOMUIEvent)
procedure initUIEvent_canBubble_view (type_: NSString; cancelable_: ObjCBOOL; detail_: cint); message 'initUIEvent:canBubble:view:'; deprecated 'in 10_4, 10_5';
end;
{$endif}
|