Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / cocoaint / src / webkit / DOMMutationEvent.inc
Size: Mime:
{ Parsed from WebKit.framework DOMMutationEvent.h }


{$ifdef TYPES}
type
  DOMMutationEventPtr = ^DOMMutationEvent;
{$endif}

{$ifdef TYPES}
const
  DOM_MODIFICATION = 1;
  DOM_ADDITION = 2;
  DOM_REMOVAL = 3;
{$endif}

{$ifdef CLASSES}

type
  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: cushort; message 'attrChange';
    procedure initMutationEvent_canBubble_cancelable_relatedNode_prevValue_newValue_attrName_attrChange (type_: NSString; canBubble: ObjCBOOL; cancelable_: ObjCBOOL; relatedNode_: DOMNode; prevValue_: NSString; newValue_: NSString; attrName_: NSString; attrChange_: cushort); message 'initMutationEvent:canBubble:cancelable:relatedNode:prevValue:newValue:attrName:attrChange:'; { available in 10_5 }
  end;


type
  DOMMutationEventDeprecated = objccategory external (DOMMutationEvent)
    procedure initMutationEvent_canBubble_relatedNode_newValue (type_: NSString; cancelable_: ObjCBOOL; prevValue_: NSString; attrName_: NSString); message 'initMutationEvent:canBubble:relatedNode:newValue:'; deprecated 'in 10_4, 10_5';
  end;
{$endif}