blob: d8d59220846fe842e8fb745e5c73b6a4428470ba (
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 DOMMutationEvent.h }
{$ifdef TYPES}
{$ifndef DOMMUTATIONEVENT_PAS_T}
{$define DOMMUTATIONEVENT_PAS_T}
{ Constants }
const
DOM_MODIFICATION = 1;
DOM_ADDITION = 2;
DOM_REMOVAL = 3;
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef DOMMUTATIONEVENT_PAS_R}
{$define DOMMUTATIONEVENT_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef DOMMUTATIONEVENT_PAS_F}
{$define DOMMUTATIONEVENT_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMMUTATIONEVENT_PAS_S}
{$define DOMMUTATIONEVENT_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
DOMMutationEvent = objcclass;
DOMMutationEventPointer = ^DOMMutationEvent;
DOMMutationEventPtr = DOMMutationEventPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef DOMMUTATIONEVENT_PAS_C}
{$define DOMMUTATIONEVENT_PAS_C}
{ DOMMutationEvent }
DOMMutationEvent = objcclass external (DOMEvent)
public
function relatedNode: DOMNode; message 'relatedNode';
function prevValue: NSString; message 'prevValue';
function newValue: NSString; message 'newValue';
function attrName: NSString; message 'attrName';
function attrChange: cuint; message 'attrChange';
procedure initMutationEvent_canBubble_cancelable_relatedNode_prevValue_newValue_attrName_attrChange(type__: NSString; canBubble: Boolean; cancelable_: Boolean; relatedNode_: DOMNode; prevValue_: NSString; newValue_: NSString; attrName_: NSString; attrChange_: cushort); message 'initMutationEvent:canBubble:cancelable:relatedNode:prevValue:newValue:attrName:attrChange:';
end;
{ DOMMutationEventDeprecatedCategory }
DOMMutationEventDeprecatedCategory = objccategory external (DOMMutationEvent)
procedure initMutationEvent(type__: NSString; canBubble: Boolean; cancelable_: Boolean; relatedNode_: DOMNode; prevValue_: NSString; newValue_: NSString; attrName_: NSString; attrChange_: cushort); message 'initMutationEvent:type:canBubble:cancelable:relatedNode:prevValue:newValue:attrName:'; deprecated 'in_webkit_version_3 and later';
end;
{$endif}
{$endif}
|